ETH Price: $3,396.84 (+1.40%)
Gas: 8 Gwei

Token

Spooky Pumpkin Tavern (Pumpkin)
 

Overview

Max Total Supply

83 Pumpkin

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Pumpkin
0x2cd34e373f360f5f0ac7bac4a4b9636fabf1a45e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PumpkinTavern

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

// SPDX-License-Identifier: MIT

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: contracts/PumpkinTavern.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _burnSave(address owner, uint256 tokenId) internal virtual {

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, true);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;





interface IPumpkinPie {
    function bakePie(address owner) external returns (bool);
}

contract PumpkinTavern is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    string private _contractURI;
    string private _baseTokenURI;
    string private _tokenRevealedBaseURI;
    uint256 public constant NFT_PRICE = 40000000000000000; // 0.04 ETH
    uint256 public constant MAX_SUPPLY = 10001;
    uint256 public constant MAX_PER_MINT = 100;
    uint256 public constant MAX_RESERVED_PUMPKINS = 300;
    uint256 public reservedClaimed;
    uint256 public presaleMaxMint;
    bool public saleIsActive;
    bool public presaleIsActive;
    address public pieContract;
    mapping(address => bool) private _presaleEligible;
    mapping(address => uint256) private _totalClaimed;

    event PresaleMint(address minter, uint256 amountOfDads);
    event PublicSaleMint(address minter, uint256 amountOfDads);

    modifier isPresaleActive() {
        require(presaleIsActive, "Presale has not started");
        _;
    }

    modifier isPublicsaleActive() {
        require(saleIsActive, "Public sale has not started");
        _;
    }   

    constructor() ERC721("Spooky Pumpkin Tavern","Pumpkin") {
        presaleMaxMint = 20;
        reservedClaimed = 0;
        saleIsActive = false;
        presaleIsActive = false;
        _contractURI = 'ipfs://QmVzLJVgbmHDRk3AVDPaUBDDWa4SbKrfnoTFAHpgbG7XsX';
        _baseTokenURI = 'ipfs://QmSNx3KSNZ83H6C1K3D69GVqVG52CiZGW3USTMNtGbRKxe';
    }

    function setPieContractAddress(address contractAddress) public onlyOwner {
        pieContract = contractAddress;
    }

    function setPresaleMaxMint(uint256 maxMint) public onlyOwner {
        presaleMaxMint = maxMint;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function togglePresaleState() public onlyOwner {
        presaleIsActive = !presaleIsActive;
    }

    function togglePublicSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function amountClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Cannot add null address");
        return _totalClaimed[owner];
    }

    function claimReserved(address recipient, uint256 count) external onlyOwner {
        require(reservedClaimed.add(count) <= MAX_RESERVED_PUMPKINS, "Minting would exceed reserved number");
        require(recipient != address(0), "Cannot add null address");
        require(totalSupply().add(count) <= MAX_SUPPLY, "Minting would exceed max supply");

        for (uint256 i = 0; i < count; i++) {
            uint256 mintIndex = totalSupply();
            reservedClaimed += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(recipient, mintIndex);
        }
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");
            _presaleEligible[addresses[i]] = true;
        }
    }

    function checkPresaleEligiblity(address addr) external view returns (bool) {
        return _presaleEligible[addr];
    }

    function mintPresale(uint256 count) external payable isPresaleActive {
        require(_presaleEligible[msg.sender], "You are not eligible for the presale");
        require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
        require(count <= presaleMaxMint, "Cannot purchase this many tokens during presale");
        require(totalSupply().add(count) <= MAX_SUPPLY, "Minting would exceed max supply");
        require(_totalClaimed[msg.sender].add(count) <= presaleMaxMint, "Purchase exceeds max allowed");
        require(count > 0, "Must mint at least one");
        require(msg.value >= NFT_PRICE.mul(count), 'ETH amount to purchase is too low');

        for (uint256 i = 0; i < count; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_SUPPLY) {
                _totalClaimed[msg.sender] += 1;
                _safeMint(msg.sender, mintIndex);
            }
        }
        emit PresaleMint(msg.sender, count);
    }

    function mint(uint256 count) external payable isPublicsaleActive {
        require(totalSupply() < MAX_SUPPLY, "All tokens have been minted");
        require(count <= MAX_PER_MINT, "Cannot purchase this many tokens in a transaction");
        require(totalSupply().add(count) <= MAX_SUPPLY, "Minting would exceed max supply");
        require(count > 0, "Must mint at least one");
        require(msg.value >= NFT_PRICE.mul(count), 'ETH amount to purchase is too low');

        for (uint256 i = 0; i < count; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_SUPPLY) { 
                _totalClaimed[msg.sender] += 1;
                _safeMint(msg.sender, mintIndex);
            }
        }
        emit PublicSaleMint(msg.sender, count);
    }

    /* Burn Pumpkins! */
    function bake(uint256 useTokenId1, uint256 useTokenId2, uint256 useTokenId3) public {
        require(pieContract != address(0), "Pie contract address need be set");

        address from = msg.sender;
        require(ERC721.ownerOf(useTokenId1) == from, "ERC721: not your pumpkin token");
        require(ERC721.ownerOf(useTokenId2) == from, "ERC721: not your pumpkin token");
        require(ERC721.ownerOf(useTokenId3) == from, "ERC721: not your pumpkin token");

        _burnSave(from, useTokenId1);
        _burnSave(from, useTokenId2);
        _burnSave(from, useTokenId3);

        IPumpkinPie pie = IPumpkinPie(pieContract);
        bool result = pie.bakePie(from);
        require(result, "Pie failed");
    }

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

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

    function setBaseURIRevealed(string memory baseURI) external onlyOwner {
        _tokenRevealedBaseURI = baseURI;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'Token does not exist');

        string memory revealedBaseURI = _tokenRevealedBaseURI;
        return
            bytes(revealedBaseURI).length > 0
                ? string(abi.encodePacked(revealedBaseURI, tokenId.toString()))
                : _baseTokenURI;
    }

    // Opensea
    function contractURI() external view returns (string memory) {
        return _contractURI;
    }        

    function setContractURI(string memory contract_uri) external onlyOwner {
        _contractURI = contract_uri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfDads","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfDads","type":"uint256"}],"name":"PublicSaleMint","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_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_PUMPKINS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"useTokenId1","type":"uint256"},{"internalType":"uint256","name":"useTokenId2","type":"uint256"},{"internalType":"uint256","name":"useTokenId3","type":"uint256"}],"name":"bake","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":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPresale","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":"pieContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedClaimed","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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURIRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contract_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setPieContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPresaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleState","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601581527f53706f6f6b792050756d706b696e2054617665726e0000000000000000000000602080830191825283518085019094526007845266283ab6b835b4b760c91b90840152815191929162000076916000916200017b565b5080516200008c9060019060208401906200017b565b505050620000a9620000a36200012560201b60201c565b62000129565b6014600f556000600e556010805461ffff1916905560408051606081019091526035808252620031ea60208301398051620000ed91600b916020909101906200017b565b506040518060600160405280603581526020016200321f6035913980516200011e91600c916020909101906200017b565b506200025e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000221565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b600181811c908216806200023657607f821691505b602082108114156200025857634e487b7160e01b600052602260045260246000fd5b50919050565b612f7c806200026e6000396000f3fe6080604052600436106102675760003560e01c8063676dd56311610144578063b6e2ef7f116100b6578063e8a3d4851161007a578063e8a3d4851461070b578063e985e9c514610720578063eb8d244414610769578063f285e69e14610783578063f2fde38b14610798578063f759867a146107b857600080fd5b8063b6e2ef7f14610665578063b88d4fde1461068b578063c87b56dd146106ab578063df4305d2146106cb578063e81cdfe2146106eb57600080fd5b8063946ef42a11610108578063946ef42a146105d257806395d89b41146105e8578063a0712d68146105fd578063a22cb46514610610578063acde7f7014610630578063aef6ee1f1461064557600080fd5b8063676dd5631461054457806370a082311461055f578063715018a61461057f5780638da5cb5b14610594578063938e3d7b146105b257600080fd5b806323b872dd116101dd5780633ccfd60b116101a15780633ccfd60b1461048f57806342842e0e146104a45780634a933d0f146104c45780634f6ccce7146104e457806355f804b3146105045780636352211e1461052457600080fd5b806323b872dd1461040457806324510043146104245780632f745c591461043a57806330f72cd41461045a57806332cb6b0c1461047957600080fd5b806309d42b301161022f57806309d42b301461033d57806316e0bfca1461036057806318160ddd14610376578063191f65ac1461038b5780631978f469146103c45780631b5757f2146103e457600080fd5b806301ffc9a71461026c578063024dad6b146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612abe565b6107cb565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046128d3565b6107f6565b005b3480156102cf57600080fd5b506102d8610853565b6040516102989190612c17565b3480156102f157600080fd5b50610305610300366004612b3c565b6108e5565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004612a09565b61097a565b34801561034957600080fd5b50610352606481565b604051908152602001610298565b34801561036c57600080fd5b5061035261012c81565b34801561038257600080fd5b50600854610352565b34801561039757600080fd5b5061028c6103a63660046128d3565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156103d057600080fd5b506103526103df3660046128d3565b610a90565b3480156103f057600080fd5b506102c16103ff366004612a09565b610ad4565b34801561041057600080fd5b506102c161041f36600461291f565b610c36565b34801561043057600080fd5b50610352600e5481565b34801561044657600080fd5b50610352610455366004612a09565b610c67565b34801561046657600080fd5b5060105461028c90610100900460ff1681565b34801561048557600080fd5b5061035261271181565b34801561049b57600080fd5b506102c1610cfd565b3480156104b057600080fd5b506102c16104bf36600461291f565b610d5a565b3480156104d057600080fd5b506102c16104df366004612af6565b610d75565b3480156104f057600080fd5b506103526104ff366004612b3c565b610db2565b34801561051057600080fd5b506102c161051f366004612af6565b610e53565b34801561053057600080fd5b5061030561053f366004612b3c565b610e90565b34801561055057600080fd5b50610352668e1bc9bf04000081565b34801561056b57600080fd5b5061035261057a3660046128d3565b610f07565b34801561058b57600080fd5b506102c1610f8e565b3480156105a057600080fd5b50600a546001600160a01b0316610305565b3480156105be57600080fd5b506102c16105cd366004612af6565b610fc4565b3480156105de57600080fd5b50610352600f5481565b3480156105f457600080fd5b506102d8611001565b6102c161060b366004612b3c565b611010565b34801561061c57600080fd5b506102c161062b3660046129d3565b611278565b34801561063c57600080fd5b506102c161133d565b34801561065157600080fd5b506102c1610660366004612a32565b61137b565b34801561067157600080fd5b50601054610305906201000090046001600160a01b031681565b34801561069757600080fd5b506102c16106a636600461295a565b611483565b3480156106b757600080fd5b506102d86106c6366004612b3c565b6114bb565b3480156106d757600080fd5b506102c16106e6366004612b3c565b611673565b3480156106f757600080fd5b506102c1610706366004612b54565b6116a2565b34801561071757600080fd5b506102d8611890565b34801561072c57600080fd5b5061028c61073b3660046128ed565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077557600080fd5b5060105461028c9060ff1681565b34801561078f57600080fd5b506102c161189f565b3480156107a457600080fd5b506102c16107b33660046128d3565b6118e6565b6102c16107c6366004612b3c565b611981565b60006001600160e01b0319821663780e9d6360e01b14806107f057506107f082611cbc565b92915050565b600a546001600160a01b031633146108295760405162461bcd60e51b815260040161082090612cea565b60405180910390fd5b601080546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606000805461086290612e76565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612e76565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610820565b506000908152600460205260409020546001600160a01b031690565b600061098582610e90565b9050806001600160a01b0316836001600160a01b031614156109f35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610820565b336001600160a01b0382161480610a0f5750610a0f813361073b565b610a815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610820565b610a8b8383611d0c565b505050565b60006001600160a01b038216610ab85760405162461bcd60e51b815260040161082090612d1f565b506001600160a01b031660009081526012602052604090205490565b600a546001600160a01b03163314610afe5760405162461bcd60e51b815260040161082090612cea565b600e5461012c90610b0f9083611d7a565b1115610b695760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720776f756c6420657863656564207265736572766564206e7560448201526336b132b960e11b6064820152608401610820565b6001600160a01b038216610b8f5760405162461bcd60e51b815260040161082090612d1f565b612711610ba582610b9f60085490565b90611d7a565b1115610bc35760405162461bcd60e51b815260040161082090612cb3565b60005b81811015610a8b576000610bd960085490565b90506001600e6000828254610bee9190612de8565b9091555050336000908152601260205260408120805460019290610c13908490612de8565b90915550610c2390508482611d86565b5080610c2e81612eb1565b915050610bc6565b610c403382611da0565b610c5c5760405162461bcd60e51b815260040161082090612d97565b610a8b838383611e97565b6000610c7283610f07565b8210610cd45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610820565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d275760405162461bcd60e51b815260040161082090612cea565b6040514790339082156108fc029083906000818181858888f19350505050158015610d56573d6000803e3d6000fd5b5050565b610a8b83838360405180602001604052806000815250611483565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600d9060208401906127a8565b6000610dbd60085490565b8210610e205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610820565b60088281548110610e4157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600c9060208401906127a8565b6000818152600260205260408120546001600160a01b0316806107f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610820565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610820565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fb85760405162461bcd60e51b815260040161082090612cea565b610fc26000612044565b565b600a546001600160a01b03163314610fee5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600b9060208401906127a8565b60606001805461086290612e76565b60105460ff166110625760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610820565b61271161106e60085490565b106110bb5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610820565b60648111156111265760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152701034b71030903a3930b739b0b1ba34b7b760791b6064820152608401610820565b61271161113682610b9f60085490565b11156111545760405162461bcd60e51b815260040161082090612cb3565b6000811161119d5760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610820565b6111ae668e1bc9bf04000082612096565b3410156111cd5760405162461bcd60e51b815260040161082090612d56565b60005b8181101561123a5760006111e360085490565b90506127116111f160085490565b101561122757336000908152601260205260408120805460019290611217908490612de8565b9091555061122790503382611d86565b508061123281612eb1565b9150506111d0565b5060408051338152602081018390527f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b591015b60405180910390a150565b6001600160a01b0382163314156112d15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610820565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113675760405162461bcd60e51b815260040161082090612cea565b6010805460ff19811660ff90911615179055565b600a546001600160a01b031633146113a55760405162461bcd60e51b815260040161082090612cea565b60005b81811015610a8b5760008383838181106113d257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113e791906128d3565b6001600160a01b0316141561140e5760405162461bcd60e51b815260040161082090612d1f565b60016011600085858581811061143457634e487b7160e01b600052603260045260246000fd5b905060200201602081019061144991906128d3565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061147b81612eb1565b9150506113a8565b61148d3383611da0565b6114a95760405162461bcd60e51b815260040161082090612d97565b6114b5848484846120a2565b50505050565b6000818152600260205260409020546060906001600160a01b03166115195760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610820565b6000600d805461152890612e76565b80601f016020809104026020016040519081016040528092919081815260200182805461155490612e76565b80156115a15780601f10611576576101008083540402835291602001916115a1565b820191906000526020600020905b81548152906001019060200180831161158457829003601f168201915b50505050509050600081511161164157600c80546115be90612e76565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90612e76565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b505050505061166c565b8061164b846120d5565b60405160200161165c929190612bab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461169d5760405162461bcd60e51b815260040161082090612cea565b600f55565b6010546201000090046001600160a01b03166117005760405162461bcd60e51b815260206004820181905260248201527f50696520636f6e74726163742061646472657373206e656564206265207365746044820152606401610820565b338061170b85610e90565b6001600160a01b0316146117315760405162461bcd60e51b815260040161082090612c7c565b806001600160a01b031661174484610e90565b6001600160a01b03161461176a5760405162461bcd60e51b815260040161082090612c7c565b806001600160a01b031661177d83610e90565b6001600160a01b0316146117a35760405162461bcd60e51b815260040161082090612c7c565b6117ad81856121ef565b6117b781846121ef565b6117c181836121ef565b60105460405163450f29b160e01b81526001600160a01b0383811660048301526201000090920490911690600090829063450f29b190602401602060405180830381600087803b15801561181457600080fd5b505af1158015611828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184c9190612aa2565b9050806118885760405162461bcd60e51b815260206004820152600a602482015269141a594819985a5b195960b21b6044820152606401610820565b505050505050565b6060600b805461086290612e76565b600a546001600160a01b031633146118c95760405162461bcd60e51b815260040161082090612cea565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119105760405162461bcd60e51b815260040161082090612cea565b6001600160a01b0381166119755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61197e81612044565b50565b601054610100900460ff166119d85760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f7420737461727465640000000000000000006044820152606401610820565b3360009081526011602052604090205460ff16611a435760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b6064820152608401610820565b612711611a4f60085490565b10611a9c5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610820565b600f54811115611b065760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201526e20647572696e672070726573616c6560881b6064820152608401610820565b612711611b1682610b9f60085490565b1115611b345760405162461bcd60e51b815260040161082090612cb3565b600f5433600090815260126020526040902054611b519083611d7a565b1115611b9f5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610820565b60008111611be85760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610820565b611bf9668e1bc9bf04000082612096565b341015611c185760405162461bcd60e51b815260040161082090612d56565b60005b81811015611c85576000611c2e60085490565b9050612711611c3c60085490565b1015611c7257336000908152601260205260408120805460019290611c62908490612de8565b90915550611c7290503382611d86565b5080611c7d81612eb1565b915050611c1b565b5060408051338152602081018390527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910161126d565b60006001600160e01b031982166380ac58cd60e01b1480611ced57506001600160e01b03198216635b5e139f60e01b145b806107f057506301ffc9a760e01b6001600160e01b03198316146107f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d4182610e90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061166c8284612de8565b610d5682826040518060200160405280600081525061228b565b6000818152600260205260408120546001600160a01b0316611e195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610820565b6000611e2483610e90565b9050806001600160a01b0316846001600160a01b03161480611e5f5750836001600160a01b0316611e54846108e5565b6001600160a01b0316145b80611e8f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611eaa82610e90565b6001600160a01b031614611f125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610820565b6001600160a01b038216611f745760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b611f8183838360016122be565b611f8c600082611d0c565b6001600160a01b0383166000908152600360205260408120805460019290611fb5908490612e33565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe3908490612de8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061166c8284612e14565b6120ad848484611e97565b6120b984848484612391565b6114b55760405162461bcd60e51b815260040161082090612c2a565b6060816120f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612123578061210d81612eb1565b915061211c9050600a83612e00565b91506120fd565b60008167ffffffffffffffff81111561214c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612176576020820181803683370190505b5090505b8415611e8f5761218b600183612e33565b9150612198600a86612ecc565b6121a3906030612de8565b60f81b8183815181106121c657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506121e8600a86612e00565b945061217a565b6121fd8260008360006122be565b612208600082611d0c565b6001600160a01b0382166000908152600360205260408120805460019290612231908490612e33565b909155505060008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612295838361249e565b6122a26000848484612391565b610a8b5760405162461bcd60e51b815260040161082090612c2a565b6001600160a01b0384166123195761231482600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61233c565b826001600160a01b0316846001600160a01b03161461233c5761233c84836125ee565b6001600160a01b0383161580156123505750805b156123635761235e8261268b565b6114b5565b836001600160a01b0316836001600160a01b0316141580156123825750805b156114b5576114b58383612764565b60006001600160a01b0384163b1561249357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d5903390899088908890600401612bda565b602060405180830381600087803b1580156123ef57600080fd5b505af192505050801561241f575060408051601f3d908101601f1916820190925261241c91810190612ada565b60015b612479573d80801561244d576040519150601f19603f3d011682016040523d82523d6000602084013e612452565b606091505b5080516124715760405162461bcd60e51b815260040161082090612c2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e8f565b506001949350505050565b6001600160a01b0382166124f45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610820565b6000818152600260205260409020546001600160a01b0316156125595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610820565b6125676000838360016122be565b6001600160a01b0382166000908152600360205260408120805460019290612590908490612de8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016125fb84610f07565b6126059190612e33565b600083815260076020526040902054909150808214612658576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061269d90600190612e33565b600083815260096020526040812054600880549394509092849081106126d357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061270257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061276f83610f07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127b490612e76565b90600052602060002090601f0160209004810192826127d6576000855561281c565b82601f106127ef57805160ff191683800117855561281c565b8280016001018555821561281c579182015b8281111561281c578251825591602001919060010190612801565b5061282892915061282c565b5090565b5b80821115612828576000815560010161282d565b600067ffffffffffffffff8084111561285c5761285c612f0c565b604051601f8501601f19908116603f0116810190828211818310171561288457612884612f0c565b8160405280935085815286868601111561289d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128ce57600080fd5b919050565b6000602082840312156128e4578081fd5b61166c826128b7565b600080604083850312156128ff578081fd5b612908836128b7565b9150612916602084016128b7565b90509250929050565b600080600060608486031215612933578081fd5b61293c846128b7565b925061294a602085016128b7565b9150604084013590509250925092565b6000806000806080858703121561296f578081fd5b612978856128b7565b9350612986602086016128b7565b925060408501359150606085013567ffffffffffffffff8111156129a8578182fd5b8501601f810187136129b8578182fd5b6129c787823560208401612841565b91505092959194509250565b600080604083850312156129e5578182fd5b6129ee836128b7565b915060208301356129fe81612f22565b809150509250929050565b60008060408385031215612a1b578182fd5b612a24836128b7565b946020939093013593505050565b60008060208385031215612a44578182fd5b823567ffffffffffffffff80821115612a5b578384fd5b818501915085601f830112612a6e578384fd5b813581811115612a7c578485fd5b8660208260051b8501011115612a90578485fd5b60209290920196919550909350505050565b600060208284031215612ab3578081fd5b815161166c81612f22565b600060208284031215612acf578081fd5b813561166c81612f30565b600060208284031215612aeb578081fd5b815161166c81612f30565b600060208284031215612b07578081fd5b813567ffffffffffffffff811115612b1d578182fd5b8201601f81018413612b2d578182fd5b611e8f84823560208401612841565b600060208284031215612b4d578081fd5b5035919050565b600080600060608486031215612b68578283fd5b505081359360208301359350604090920135919050565b60008151808452612b97816020860160208601612e4a565b601f01601f19169290920160200192915050565b60008351612bbd818460208801612e4a565b835190830190612bd1818360208801612e4a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0d90830184612b7f565b9695505050505050565b60208152600061166c6020830184612b7f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601e908201527f4552433732313a206e6f7420796f75722070756d706b696e20746f6b656e0000604082015260600190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526021908201527f45544820616d6f756e7420746f20707572636861736520697320746f6f206c6f6040820152607760f81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612dfb57612dfb612ee0565b500190565b600082612e0f57612e0f612ef6565b500490565b6000816000190483118215151615612e2e57612e2e612ee0565b500290565b600082821015612e4557612e45612ee0565b500390565b60005b83811015612e65578181015183820152602001612e4d565b838111156114b55750506000910152565b600181811c90821680612e8a57607f821691505b60208210811415612eab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ec557612ec5612ee0565b5060010190565b600082612edb57612edb612ef6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461197e57600080fd5b6001600160e01b03198116811461197e57600080fdfea2646970667358221220679d85f2c8c973d43faebe3785689f2f10d6f27d3c81e483bbdb7c439f4ccb8764736f6c63430008040033697066733a2f2f516d567a4c4a5667626d4844526b3341564450615542444457613453624b72666e6f544641487067624737587358697066733a2f2f516d534e78334b534e5a3833483643314b334436394756715647353243695a4757335553544d4e744762524b7865

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063676dd56311610144578063b6e2ef7f116100b6578063e8a3d4851161007a578063e8a3d4851461070b578063e985e9c514610720578063eb8d244414610769578063f285e69e14610783578063f2fde38b14610798578063f759867a146107b857600080fd5b8063b6e2ef7f14610665578063b88d4fde1461068b578063c87b56dd146106ab578063df4305d2146106cb578063e81cdfe2146106eb57600080fd5b8063946ef42a11610108578063946ef42a146105d257806395d89b41146105e8578063a0712d68146105fd578063a22cb46514610610578063acde7f7014610630578063aef6ee1f1461064557600080fd5b8063676dd5631461054457806370a082311461055f578063715018a61461057f5780638da5cb5b14610594578063938e3d7b146105b257600080fd5b806323b872dd116101dd5780633ccfd60b116101a15780633ccfd60b1461048f57806342842e0e146104a45780634a933d0f146104c45780634f6ccce7146104e457806355f804b3146105045780636352211e1461052457600080fd5b806323b872dd1461040457806324510043146104245780632f745c591461043a57806330f72cd41461045a57806332cb6b0c1461047957600080fd5b806309d42b301161022f57806309d42b301461033d57806316e0bfca1461036057806318160ddd14610376578063191f65ac1461038b5780631978f469146103c45780631b5757f2146103e457600080fd5b806301ffc9a71461026c578063024dad6b146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612abe565b6107cb565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc3660046128d3565b6107f6565b005b3480156102cf57600080fd5b506102d8610853565b6040516102989190612c17565b3480156102f157600080fd5b50610305610300366004612b3c565b6108e5565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c1610338366004612a09565b61097a565b34801561034957600080fd5b50610352606481565b604051908152602001610298565b34801561036c57600080fd5b5061035261012c81565b34801561038257600080fd5b50600854610352565b34801561039757600080fd5b5061028c6103a63660046128d3565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156103d057600080fd5b506103526103df3660046128d3565b610a90565b3480156103f057600080fd5b506102c16103ff366004612a09565b610ad4565b34801561041057600080fd5b506102c161041f36600461291f565b610c36565b34801561043057600080fd5b50610352600e5481565b34801561044657600080fd5b50610352610455366004612a09565b610c67565b34801561046657600080fd5b5060105461028c90610100900460ff1681565b34801561048557600080fd5b5061035261271181565b34801561049b57600080fd5b506102c1610cfd565b3480156104b057600080fd5b506102c16104bf36600461291f565b610d5a565b3480156104d057600080fd5b506102c16104df366004612af6565b610d75565b3480156104f057600080fd5b506103526104ff366004612b3c565b610db2565b34801561051057600080fd5b506102c161051f366004612af6565b610e53565b34801561053057600080fd5b5061030561053f366004612b3c565b610e90565b34801561055057600080fd5b50610352668e1bc9bf04000081565b34801561056b57600080fd5b5061035261057a3660046128d3565b610f07565b34801561058b57600080fd5b506102c1610f8e565b3480156105a057600080fd5b50600a546001600160a01b0316610305565b3480156105be57600080fd5b506102c16105cd366004612af6565b610fc4565b3480156105de57600080fd5b50610352600f5481565b3480156105f457600080fd5b506102d8611001565b6102c161060b366004612b3c565b611010565b34801561061c57600080fd5b506102c161062b3660046129d3565b611278565b34801561063c57600080fd5b506102c161133d565b34801561065157600080fd5b506102c1610660366004612a32565b61137b565b34801561067157600080fd5b50601054610305906201000090046001600160a01b031681565b34801561069757600080fd5b506102c16106a636600461295a565b611483565b3480156106b757600080fd5b506102d86106c6366004612b3c565b6114bb565b3480156106d757600080fd5b506102c16106e6366004612b3c565b611673565b3480156106f757600080fd5b506102c1610706366004612b54565b6116a2565b34801561071757600080fd5b506102d8611890565b34801561072c57600080fd5b5061028c61073b3660046128ed565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077557600080fd5b5060105461028c9060ff1681565b34801561078f57600080fd5b506102c161189f565b3480156107a457600080fd5b506102c16107b33660046128d3565b6118e6565b6102c16107c6366004612b3c565b611981565b60006001600160e01b0319821663780e9d6360e01b14806107f057506107f082611cbc565b92915050565b600a546001600160a01b031633146108295760405162461bcd60e51b815260040161082090612cea565b60405180910390fd5b601080546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60606000805461086290612e76565b80601f016020809104026020016040519081016040528092919081815260200182805461088e90612e76565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610820565b506000908152600460205260409020546001600160a01b031690565b600061098582610e90565b9050806001600160a01b0316836001600160a01b031614156109f35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610820565b336001600160a01b0382161480610a0f5750610a0f813361073b565b610a815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610820565b610a8b8383611d0c565b505050565b60006001600160a01b038216610ab85760405162461bcd60e51b815260040161082090612d1f565b506001600160a01b031660009081526012602052604090205490565b600a546001600160a01b03163314610afe5760405162461bcd60e51b815260040161082090612cea565b600e5461012c90610b0f9083611d7a565b1115610b695760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720776f756c6420657863656564207265736572766564206e7560448201526336b132b960e11b6064820152608401610820565b6001600160a01b038216610b8f5760405162461bcd60e51b815260040161082090612d1f565b612711610ba582610b9f60085490565b90611d7a565b1115610bc35760405162461bcd60e51b815260040161082090612cb3565b60005b81811015610a8b576000610bd960085490565b90506001600e6000828254610bee9190612de8565b9091555050336000908152601260205260408120805460019290610c13908490612de8565b90915550610c2390508482611d86565b5080610c2e81612eb1565b915050610bc6565b610c403382611da0565b610c5c5760405162461bcd60e51b815260040161082090612d97565b610a8b838383611e97565b6000610c7283610f07565b8210610cd45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610820565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d275760405162461bcd60e51b815260040161082090612cea565b6040514790339082156108fc029083906000818181858888f19350505050158015610d56573d6000803e3d6000fd5b5050565b610a8b83838360405180602001604052806000815250611483565b600a546001600160a01b03163314610d9f5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600d9060208401906127a8565b6000610dbd60085490565b8210610e205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610820565b60088281548110610e4157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600c9060208401906127a8565b6000818152600260205260408120546001600160a01b0316806107f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610820565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610820565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fb85760405162461bcd60e51b815260040161082090612cea565b610fc26000612044565b565b600a546001600160a01b03163314610fee5760405162461bcd60e51b815260040161082090612cea565b8051610d5690600b9060208401906127a8565b60606001805461086290612e76565b60105460ff166110625760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632073616c6520686173206e6f74207374617274656400000000006044820152606401610820565b61271161106e60085490565b106110bb5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610820565b60648111156111265760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736044820152701034b71030903a3930b739b0b1ba34b7b760791b6064820152608401610820565b61271161113682610b9f60085490565b11156111545760405162461bcd60e51b815260040161082090612cb3565b6000811161119d5760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610820565b6111ae668e1bc9bf04000082612096565b3410156111cd5760405162461bcd60e51b815260040161082090612d56565b60005b8181101561123a5760006111e360085490565b90506127116111f160085490565b101561122757336000908152601260205260408120805460019290611217908490612de8565b9091555061122790503382611d86565b508061123281612eb1565b9150506111d0565b5060408051338152602081018390527f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b591015b60405180910390a150565b6001600160a01b0382163314156112d15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610820565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113675760405162461bcd60e51b815260040161082090612cea565b6010805460ff19811660ff90911615179055565b600a546001600160a01b031633146113a55760405162461bcd60e51b815260040161082090612cea565b60005b81811015610a8b5760008383838181106113d257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906113e791906128d3565b6001600160a01b0316141561140e5760405162461bcd60e51b815260040161082090612d1f565b60016011600085858581811061143457634e487b7160e01b600052603260045260246000fd5b905060200201602081019061144991906128d3565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061147b81612eb1565b9150506113a8565b61148d3383611da0565b6114a95760405162461bcd60e51b815260040161082090612d97565b6114b5848484846120a2565b50505050565b6000818152600260205260409020546060906001600160a01b03166115195760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610820565b6000600d805461152890612e76565b80601f016020809104026020016040519081016040528092919081815260200182805461155490612e76565b80156115a15780601f10611576576101008083540402835291602001916115a1565b820191906000526020600020905b81548152906001019060200180831161158457829003601f168201915b50505050509050600081511161164157600c80546115be90612e76565b80601f01602080910402602001604051908101604052809291908181526020018280546115ea90612e76565b80156116375780601f1061160c57610100808354040283529160200191611637565b820191906000526020600020905b81548152906001019060200180831161161a57829003601f168201915b505050505061166c565b8061164b846120d5565b60405160200161165c929190612bab565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461169d5760405162461bcd60e51b815260040161082090612cea565b600f55565b6010546201000090046001600160a01b03166117005760405162461bcd60e51b815260206004820181905260248201527f50696520636f6e74726163742061646472657373206e656564206265207365746044820152606401610820565b338061170b85610e90565b6001600160a01b0316146117315760405162461bcd60e51b815260040161082090612c7c565b806001600160a01b031661174484610e90565b6001600160a01b03161461176a5760405162461bcd60e51b815260040161082090612c7c565b806001600160a01b031661177d83610e90565b6001600160a01b0316146117a35760405162461bcd60e51b815260040161082090612c7c565b6117ad81856121ef565b6117b781846121ef565b6117c181836121ef565b60105460405163450f29b160e01b81526001600160a01b0383811660048301526201000090920490911690600090829063450f29b190602401602060405180830381600087803b15801561181457600080fd5b505af1158015611828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184c9190612aa2565b9050806118885760405162461bcd60e51b815260206004820152600a602482015269141a594819985a5b195960b21b6044820152606401610820565b505050505050565b6060600b805461086290612e76565b600a546001600160a01b031633146118c95760405162461bcd60e51b815260040161082090612cea565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119105760405162461bcd60e51b815260040161082090612cea565b6001600160a01b0381166119755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610820565b61197e81612044565b50565b601054610100900460ff166119d85760405162461bcd60e51b815260206004820152601760248201527f50726573616c6520686173206e6f7420737461727465640000000000000000006044820152606401610820565b3360009081526011602052604090205460ff16611a435760405162461bcd60e51b8152602060048201526024808201527f596f7520617265206e6f7420656c696769626c6520666f72207468652070726560448201526373616c6560e01b6064820152608401610820565b612711611a4f60085490565b10611a9c5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610820565b600f54811115611b065760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360448201526e20647572696e672070726573616c6560881b6064820152608401610820565b612711611b1682610b9f60085490565b1115611b345760405162461bcd60e51b815260040161082090612cb3565b600f5433600090815260126020526040902054611b519083611d7a565b1115611b9f5760405162461bcd60e51b815260206004820152601c60248201527f50757263686173652065786365656473206d617820616c6c6f776564000000006044820152606401610820565b60008111611be85760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610820565b611bf9668e1bc9bf04000082612096565b341015611c185760405162461bcd60e51b815260040161082090612d56565b60005b81811015611c85576000611c2e60085490565b9050612711611c3c60085490565b1015611c7257336000908152601260205260408120805460019290611c62908490612de8565b90915550611c7290503382611d86565b5080611c7d81612eb1565b915050611c1b565b5060408051338152602081018390527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910161126d565b60006001600160e01b031982166380ac58cd60e01b1480611ced57506001600160e01b03198216635b5e139f60e01b145b806107f057506301ffc9a760e01b6001600160e01b03198316146107f0565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d4182610e90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061166c8284612de8565b610d5682826040518060200160405280600081525061228b565b6000818152600260205260408120546001600160a01b0316611e195760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610820565b6000611e2483610e90565b9050806001600160a01b0316846001600160a01b03161480611e5f5750836001600160a01b0316611e54846108e5565b6001600160a01b0316145b80611e8f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611eaa82610e90565b6001600160a01b031614611f125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610820565b6001600160a01b038216611f745760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610820565b611f8183838360016122be565b611f8c600082611d0c565b6001600160a01b0383166000908152600360205260408120805460019290611fb5908490612e33565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe3908490612de8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061166c8284612e14565b6120ad848484611e97565b6120b984848484612391565b6114b55760405162461bcd60e51b815260040161082090612c2a565b6060816120f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612123578061210d81612eb1565b915061211c9050600a83612e00565b91506120fd565b60008167ffffffffffffffff81111561214c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612176576020820181803683370190505b5090505b8415611e8f5761218b600183612e33565b9150612198600a86612ecc565b6121a3906030612de8565b60f81b8183815181106121c657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506121e8600a86612e00565b945061217a565b6121fd8260008360006122be565b612208600082611d0c565b6001600160a01b0382166000908152600360205260408120805460019290612231908490612e33565b909155505060008181526002602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612295838361249e565b6122a26000848484612391565b610a8b5760405162461bcd60e51b815260040161082090612c2a565b6001600160a01b0384166123195761231482600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61233c565b826001600160a01b0316846001600160a01b03161461233c5761233c84836125ee565b6001600160a01b0383161580156123505750805b156123635761235e8261268b565b6114b5565b836001600160a01b0316836001600160a01b0316141580156123825750805b156114b5576114b58383612764565b60006001600160a01b0384163b1561249357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d5903390899088908890600401612bda565b602060405180830381600087803b1580156123ef57600080fd5b505af192505050801561241f575060408051601f3d908101601f1916820190925261241c91810190612ada565b60015b612479573d80801561244d576040519150601f19603f3d011682016040523d82523d6000602084013e612452565b606091505b5080516124715760405162461bcd60e51b815260040161082090612c2a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e8f565b506001949350505050565b6001600160a01b0382166124f45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610820565b6000818152600260205260409020546001600160a01b0316156125595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610820565b6125676000838360016122be565b6001600160a01b0382166000908152600360205260408120805460019290612590908490612de8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016125fb84610f07565b6126059190612e33565b600083815260076020526040902054909150808214612658576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061269d90600190612e33565b600083815260096020526040812054600880549394509092849081106126d357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061270257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061276f83610f07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546127b490612e76565b90600052602060002090601f0160209004810192826127d6576000855561281c565b82601f106127ef57805160ff191683800117855561281c565b8280016001018555821561281c579182015b8281111561281c578251825591602001919060010190612801565b5061282892915061282c565b5090565b5b80821115612828576000815560010161282d565b600067ffffffffffffffff8084111561285c5761285c612f0c565b604051601f8501601f19908116603f0116810190828211818310171561288457612884612f0c565b8160405280935085815286868601111561289d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128ce57600080fd5b919050565b6000602082840312156128e4578081fd5b61166c826128b7565b600080604083850312156128ff578081fd5b612908836128b7565b9150612916602084016128b7565b90509250929050565b600080600060608486031215612933578081fd5b61293c846128b7565b925061294a602085016128b7565b9150604084013590509250925092565b6000806000806080858703121561296f578081fd5b612978856128b7565b9350612986602086016128b7565b925060408501359150606085013567ffffffffffffffff8111156129a8578182fd5b8501601f810187136129b8578182fd5b6129c787823560208401612841565b91505092959194509250565b600080604083850312156129e5578182fd5b6129ee836128b7565b915060208301356129fe81612f22565b809150509250929050565b60008060408385031215612a1b578182fd5b612a24836128b7565b946020939093013593505050565b60008060208385031215612a44578182fd5b823567ffffffffffffffff80821115612a5b578384fd5b818501915085601f830112612a6e578384fd5b813581811115612a7c578485fd5b8660208260051b8501011115612a90578485fd5b60209290920196919550909350505050565b600060208284031215612ab3578081fd5b815161166c81612f22565b600060208284031215612acf578081fd5b813561166c81612f30565b600060208284031215612aeb578081fd5b815161166c81612f30565b600060208284031215612b07578081fd5b813567ffffffffffffffff811115612b1d578182fd5b8201601f81018413612b2d578182fd5b611e8f84823560208401612841565b600060208284031215612b4d578081fd5b5035919050565b600080600060608486031215612b68578283fd5b505081359360208301359350604090920135919050565b60008151808452612b97816020860160208601612e4a565b601f01601f19169290920160200192915050565b60008351612bbd818460208801612e4a565b835190830190612bd1818360208801612e4a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0d90830184612b7f565b9695505050505050565b60208152600061166c6020830184612b7f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601e908201527f4552433732313a206e6f7420796f75722070756d706b696e20746f6b656e0000604082015260600190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526021908201527f45544820616d6f756e7420746f20707572636861736520697320746f6f206c6f6040820152607760f81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612dfb57612dfb612ee0565b500190565b600082612e0f57612e0f612ef6565b500490565b6000816000190483118215151615612e2e57612e2e612ee0565b500290565b600082821015612e4557612e45612ee0565b500390565b60005b83811015612e65578181015183820152602001612e4d565b838111156114b55750506000910152565b600181811c90821680612e8a57607f821691505b60208210811415612eab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ec557612ec5612ee0565b5060010190565b600082612edb57612edb612ef6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461197e57600080fd5b6001600160e01b03198116811461197e57600080fdfea2646970667358221220679d85f2c8c973d43faebe3785689f2f10d6f27d3c81e483bbdb7c439f4ccb8764736f6c63430008040033

Deployed Bytecode Sourcemap

50189:6916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43890:233;;;;;;;;;;-1:-1:-1;43890:233:0;;;;;:::i;:::-;;:::i;:::-;;;7294:14:1;;7287:22;7269:41;;7257:2;7242:18;43890:233:0;;;;;;;;51702:121;;;;;;;;;;-1:-1:-1;51702:121:0;;;;;:::i;:::-;;:::i;:::-;;31810:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33262:221::-;;;;;;;;;;-1:-1:-1;33262:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6313:32:1;;;6295:51;;6283:2;6268:18;33262:221:0;6250:102:1;32799:397:0;;;;;;;;;;-1:-1:-1;32799:397:0;;;;;:::i;:::-;;:::i;50580:42::-;;;;;;;;;;;;50619:3;50580:42;;;;;20420:25:1;;;20408:2;20393:18;50580:42:0;20375:76:1;50629:51:0;;;;;;;;;;;;50677:3;50629:51;;44539:113;;;;;;;;;;-1:-1:-1;44627:10:0;:17;44539:113;;53381:123;;;;;;;;;;-1:-1:-1;53381:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;53474:22:0;53450:4;53474:22;;;:16;:22;;;;;;;;;53381:123;52304:184;;;;;;;;;;-1:-1:-1;52304:184:0;;;;;:::i;:::-;;:::i;52496:592::-;;;;;;;;;;-1:-1:-1;52496:592:0;;;;;:::i;:::-;;:::i;34152:305::-;;;;;;;;;;-1:-1:-1;34152:305:0;;;;;:::i;:::-;;:::i;50687:30::-;;;;;;;;;;;;;;;;44207:256;;;;;;;;;;-1:-1:-1;44207:256:0;;;;;:::i;:::-;;:::i;50791:27::-;;;;;;;;;;-1:-1:-1;50791:27:0;;;;;;;;;;;50531:42;;;;;;;;;;;;50568:5;50531:42;;51943:140;;;;;;;;;;;;;:::i;34528:151::-;;;;;;;;;;-1:-1:-1;34528:151:0;;;;;:::i;:::-;;:::i;56326:120::-;;;;;;;;;;-1:-1:-1;56326:120:0;;;;;:::i;:::-;;:::i;44729:233::-;;;;;;;;;;-1:-1:-1;44729:233:0;;;;;:::i;:::-;;:::i;56216:102::-;;;;;;;;;;-1:-1:-1;56216:102:0;;;;;:::i;:::-;;:::i;31504:239::-;;;;;;;;;;-1:-1:-1;31504:239:0;;;;;:::i;:::-;;:::i;50459:53::-;;;;;;;;;;;;50495:17;50459:53;;31234:208;;;;;;;;;;-1:-1:-1;31234:208:0;;;;;:::i;:::-;;:::i;2523:94::-;;;;;;;;;;;;;:::i;1872:87::-;;;;;;;;;;-1:-1:-1;1945:6:0;;-1:-1:-1;;;;;1945:6:0;1872:87;;56985:117;;;;;;;;;;-1:-1:-1;56985:117:0;;;;;:::i;:::-;;:::i;50724:29::-;;;;;;;;;;;;;;;;31979:104;;;;;;;;;;;;;:::i;54516:802::-;;;;;;:::i;:::-;;:::i;33555:295::-;;;;;;;;;;-1:-1:-1;33555:295:0;;;;;:::i;:::-;;:::i;52199:97::-;;;;;;;;;;;;;:::i;53096:277::-;;;;;;;;;;-1:-1:-1;53096:277:0;;;;;:::i;:::-;;:::i;50825:26::-;;;;;;;;;;-1:-1:-1;50825:26:0;;;;;;;-1:-1:-1;;;;;50825:26:0;;;34750:285;;;;;;;;;;-1:-1:-1;34750:285:0;;;;;:::i;:::-;;:::i;56454:392::-;;;;;;;;;;-1:-1:-1;56454:392:0;;;;;:::i;:::-;;:::i;51831:104::-;;;;;;;;;;-1:-1:-1;51831:104:0;;;;;:::i;:::-;;:::i;55352:734::-;;;;;;;;;;-1:-1:-1;55352:734:0;;;;;:::i;:::-;;:::i;56870:99::-;;;;;;;;;;;;;:::i;33921:164::-;;;;;;;;;;-1:-1:-1;33921:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34042:25:0;;;34018:4;34042:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33921:164;50760:24;;;;;;;;;;-1:-1:-1;50760:24:0;;;;;;;;52091:100;;;;;;;;;;;;;:::i;2772:192::-;;;;;;;;;;-1:-1:-1;2772:192:0;;;;;:::i;:::-;;:::i;53512:996::-;;;;;;:::i;:::-;;:::i;43890:233::-;43992:4;-1:-1:-1;;;;;;44016:50:0;;-1:-1:-1;;;44016:50:0;;:99;;;44079:36;44103:11;44079:23;:36::i;:::-;44009:106;43890:233;-1:-1:-1;;43890:233:0:o;51702:121::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;;;;;;;;;51786:11:::1;:29:::0;;-1:-1:-1;;;;;51786:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;51786:29:0;;::::1;::::0;;;::::1;::::0;;51702:121::o;31810:100::-;31864:13;31897:5;31890:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31810:100;:::o;33262:221::-;33338:7;36591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36591:16:0;33358:73;;;;-1:-1:-1;;;33358:73:0;;15880:2:1;33358:73:0;;;15862:21:1;15919:2;15899:18;;;15892:30;15958:34;15938:18;;;15931:62;-1:-1:-1;;;16009:18:1;;;16002:42;16061:19;;33358:73:0;15852:234:1;33358:73:0;-1:-1:-1;33451:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33451:24:0;;33262:221::o;32799:397::-;32880:13;32896:23;32911:7;32896:14;:23::i;:::-;32880:39;;32944:5;-1:-1:-1;;;;;32938:11:0;:2;-1:-1:-1;;;;;32938:11:0;;;32930:57;;;;-1:-1:-1;;;32930:57:0;;17064:2:1;32930:57:0;;;17046:21:1;17103:2;17083:18;;;17076:30;17142:34;17122:18;;;17115:62;-1:-1:-1;;;17193:18:1;;;17186:31;17234:19;;32930:57:0;17036:223:1;32930:57:0;740:10;-1:-1:-1;;;;;33008:21:0;;;;:62;;-1:-1:-1;33033:37:0;33050:5;740:10;33921:164;:::i;33033:37::-;33000:154;;;;-1:-1:-1;;;33000:154:0;;12751:2:1;33000:154:0;;;12733:21:1;12790:2;12770:18;;;12763:30;12829:34;12809:18;;;12802:62;12900:26;12880:18;;;12873:54;12944:19;;33000:154:0;12723:246:1;33000:154:0;33167:21;33176:2;33180:7;33167:8;:21::i;:::-;32799:397;;;:::o;52304:184::-;52367:7;-1:-1:-1;;;;;52395:19:0;;52387:55;;;;-1:-1:-1;;;52387:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52460:20:0;;;;;:13;:20;;;;;;;52304:184::o;52496:592::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;52591:15:::1;::::0;50677:3:::1;::::0;52591:26:::1;::::0;52611:5;52591:19:::1;:26::i;:::-;:51;;52583:100;;;::::0;-1:-1:-1;;;52583:100:0;;15114:2:1;52583:100:0::1;::::0;::::1;15096:21:1::0;15153:2;15133:18;;;15126:30;15192:34;15172:18;;;15165:62;-1:-1:-1;;;15243:18:1;;;15236:34;15287:19;;52583:100:0::1;15086:226:1::0;52583:100:0::1;-1:-1:-1::0;;;;;52702:23:0;::::1;52694:59;;;;-1:-1:-1::0;;;52694:59:0::1;;;;;;;:::i;:::-;50568:5;52772:24;52790:5;52772:13;44627:10:::0;:17;;44539:113;52772:13:::1;:17:::0;::::1;:24::i;:::-;:38;;52764:82;;;;-1:-1:-1::0;;;52764:82:0::1;;;;;;;:::i;:::-;52864:9;52859:222;52883:5;52879:1;:9;52859:222;;;52910:17;52930:13;44627:10:::0;:17;;44539:113;52930:13:::1;52910:33;;52977:1;52958:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;53007:10:0::1;52993:25;::::0;;;:13:::1;:25;::::0;;;;:30;;53022:1:::1;::::0;52993:25;:30:::1;::::0;53022:1;;52993:30:::1;:::i;:::-;::::0;;;-1:-1:-1;53038:31:0::1;::::0;-1:-1:-1;53048:9:0;53059;53038::::1;:31::i;:::-;-1:-1:-1::0;52890:3:0;::::1;::::0;::::1;:::i;:::-;;;;52859:222;;34152:305:::0;34313:41;740:10;34346:7;34313:18;:41::i;:::-;34305:103;;;;-1:-1:-1;;;34305:103:0;;;;;;;:::i;:::-;34421:28;34431:4;34437:2;34441:7;34421:9;:28::i;44207:256::-;44304:7;44340:23;44357:5;44340:16;:23::i;:::-;44332:5;:31;44324:87;;;;-1:-1:-1;;;44324:87:0;;8515:2:1;44324:87:0;;;8497:21:1;8554:2;8534:18;;;8527:30;8593:34;8573:18;;;8566:62;-1:-1:-1;;;8644:18:1;;;8637:41;8695:19;;44324:87:0;8487:233:1;44324:87:0;-1:-1:-1;;;;;;44429:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44207:256::o;51943:140::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;52038:37:::1;::::0;52006:21:::1;::::0;52046:10:::1;::::0;52038:37;::::1;;;::::0;52006:21;;51991:12:::1;52038:37:::0;51991:12;52038:37;52006:21;52046:10;52038:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2163:1;51943:140::o:0;34528:151::-;34632:39;34649:4;34655:2;34659:7;34632:39;;;;;;;;;;;;:16;:39::i;56326:120::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;56407:31;;::::1;::::0;:21:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;44729:233::-:0;44804:7;44840:30;44627:10;:17;;44539:113;44840:30;44832:5;:38;44824:95;;;;-1:-1:-1;;;44824:95:0;;18638:2:1;44824:95:0;;;18620:21:1;18677:2;18657:18;;;18650:30;18716:34;18696:18;;;18689:62;-1:-1:-1;;;18767:18:1;;;18760:42;18819:19;;44824:95:0;18610:234:1;44824:95:0;44937:10;44948:5;44937:17;;;;;;-1:-1:-1;;;44937:17:0;;;;;;;;;;;;;;;;;44930:24;;44729:233;;;:::o;56216:102::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;56287:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;31504:239::-:0;31576:7;31612:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31612:16:0;31647:19;31639:73;;;;-1:-1:-1;;;31639:73:0;;13926:2:1;31639:73:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:34;13984:18;;;13977:62;-1:-1:-1;;;14055:18:1;;;14048:39;14104:19;;31639:73:0;13898:231:1;31234:208:0;31306:7;-1:-1:-1;;;;;31334:19:0;;31326:74;;;;-1:-1:-1;;;31326:74:0;;13515:2:1;31326:74:0;;;13497:21:1;13554:2;13534:18;;;13527:30;13593:34;13573:18;;;13566:62;-1:-1:-1;;;13644:18:1;;;13637:40;13694:19;;31326:74:0;13487:232:1;31326:74:0;-1:-1:-1;;;;;;31418:16:0;;;;;:9;:16;;;;;;;31234:208::o;2523:94::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;2588:21:::1;2606:1;2588:9;:21::i;:::-;2523:94::o:0;56985:117::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;57067:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;31979:104::-:0;32035:13;32068:7;32061:14;;;;;:::i;54516:802::-;51267:12;;;;51259:52;;;;-1:-1:-1;;;51259:52:0;;10110:2:1;51259:52:0;;;10092:21:1;10149:2;10129:18;;;10122:30;10188:29;10168:18;;;10161:57;10235:18;;51259:52:0;10082:177:1;51259:52:0;50568:5:::1;54600:13;44627:10:::0;:17;;44539:113;54600:13:::1;:26;54592:66;;;::::0;-1:-1:-1;;;54592:66:0;;19759:2:1;54592:66:0::1;::::0;::::1;19741:21:1::0;19798:2;19778:18;;;19771:30;19837:29;19817:18;;;19810:57;19884:18;;54592:66:0::1;19731:177:1::0;54592:66:0::1;50619:3;54677:5;:21;;54669:83;;;::::0;-1:-1:-1;;;54669:83:0;;14696:2:1;54669:83:0::1;::::0;::::1;14678:21:1::0;14735:2;14715:18;;;14708:30;14774:34;14754:18;;;14747:62;-1:-1:-1;;;14825:18:1;;;14818:47;14882:19;;54669:83:0::1;14668:239:1::0;54669:83:0::1;50568:5;54771:24;54789:5;54771:13;44627:10:::0;:17;;44539:113;54771:24:::1;:38;;54763:82;;;;-1:-1:-1::0;;;54763:82:0::1;;;;;;;:::i;:::-;54872:1;54864:5;:9;54856:44;;;::::0;-1:-1:-1;;;54856:44:0;;19408:2:1;54856:44:0::1;::::0;::::1;19390:21:1::0;19447:2;19427:18;;;19420:30;-1:-1:-1;;;19466:18:1;;;19459:52;19528:18;;54856:44:0::1;19380:172:1::0;54856:44:0::1;54932:20;50495:17;54946:5:::0;54932:13:::1;:20::i;:::-;54919:9;:33;;54911:79;;;;-1:-1:-1::0;;;54911:79:0::1;;;;;;;:::i;:::-;55008:9;55003:259;55027:5;55023:1;:9;55003:259;;;55054:17;55074:13;44627:10:::0;:17;;44539:113;55074:13:::1;55054:33;;50568:5;55106:13;44627:10:::0;:17;;44539:113;55106:13:::1;:26;55102:149;;;55168:10;55154:25;::::0;;;:13:::1;:25;::::0;;;;:30;;55183:1:::1;::::0;55154:25;:30:::1;::::0;55183:1;;55154:30:::1;:::i;:::-;::::0;;;-1:-1:-1;55203:32:0::1;::::0;-1:-1:-1;55213:10:0::1;55225:9:::0;55203::::1;:32::i;:::-;-1:-1:-1::0;55034:3:0;::::1;::::0;::::1;:::i;:::-;;;;55003:259;;;-1:-1:-1::0;55277:33:0::1;::::0;;55292:10:::1;7024:51:1::0;;7106:2;7091:18;;7084:34;;;55277:33:0::1;::::0;6997:18:1;55277:33:0::1;;;;;;;;54516:802:::0;:::o;33555:295::-;-1:-1:-1;;;;;33658:24:0;;740:10;33658:24;;33650:62;;;;-1:-1:-1;;;33650:62:0;;10871:2:1;33650:62:0;;;10853:21:1;10910:2;10890:18;;;10883:30;10949:27;10929:18;;;10922:55;10994:18;;33650:62:0;10843:175:1;33650:62:0;740:10;33725:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33725:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33725:53:0;;;;;;;;;;33794:48;;7269:41:1;;;33725:42:0;;740:10;33794:48;;7242:18:1;33794:48:0;;;;;;;33555:295;;:::o;52199:97::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;52276:12:::1;::::0;;-1:-1:-1;;52260:28:0;::::1;52276:12;::::0;;::::1;52275:13;52260:28;::::0;;52199:97::o;53096:277::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;53183:9:::1;53178:188;53198:20:::0;;::::1;53178:188;;;53272:1;53248:9:::0;;53258:1;53248:12;;::::1;;;-1:-1:-1::0;;;53248:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53248:26:0::1;;;53240:62;;;;-1:-1:-1::0;;;53240:62:0::1;;;;;;;:::i;:::-;53350:4;53317:16;:30;53334:9;;53344:1;53334:12;;;;;-1:-1:-1::0;;;53334:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53317:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53317:30:0;:37;;-1:-1:-1;;53317:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53220:3;::::1;::::0;::::1;:::i;:::-;;;;53178:188;;34750:285:::0;34882:41;740:10;34915:7;34882:18;:41::i;:::-;34874:103;;;;-1:-1:-1;;;34874:103:0;;;;;;;:::i;:::-;34988:39;35002:4;35008:2;35012:7;35021:5;34988:13;:39::i;:::-;34750:285;;;;:::o;56454:392::-;36567:4;36591:16;;;:7;:16;;;;;;56519:13;;-1:-1:-1;;;;;36591:16:0;56545:49;;;;-1:-1:-1;;;56545:49:0;;11630:2:1;56545:49:0;;;11612:21:1;11669:2;11649:18;;;11642:30;-1:-1:-1;;;11688:18:1;;;11681:50;11748:18;;56545:49:0;11602:170:1;56545:49:0;56607:29;56639:21;56607:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56723:1;56697:15;56691:29;:33;:147;;56825:13;56691:147;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56768:15;56785:18;:7;:16;:18::i;:::-;56751:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56691:147;56671:167;56454:392;-1:-1:-1;;;56454:392:0:o;51831:104::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;51903:14:::1;:24:::0;51831:104::o;55352:734::-;55455:11;;;;;-1:-1:-1;;;;;55455:11:0;55447:70;;;;-1:-1:-1;;;55447:70:0;;20115:2:1;55447:70:0;;;20097:21:1;;;20134:18;;;20127:30;20193:34;20173:18;;;20166:62;20245:18;;55447:70:0;20087:182:1;55447:70:0;55545:10;;55574:27;55589:11;55574:14;:27::i;:::-;-1:-1:-1;;;;;55574:35:0;;55566:78;;;;-1:-1:-1;;;55566:78:0;;;;;;;:::i;:::-;55694:4;-1:-1:-1;;;;;55663:35:0;:27;55678:11;55663:14;:27::i;:::-;-1:-1:-1;;;;;55663:35:0;;55655:78;;;;-1:-1:-1;;;55655:78:0;;;;;;;:::i;:::-;55783:4;-1:-1:-1;;;;;55752:35:0;:27;55767:11;55752:14;:27::i;:::-;-1:-1:-1;;;;;55752:35:0;;55744:78;;;;-1:-1:-1;;;55744:78:0;;;;;;;:::i;:::-;55835:28;55845:4;55851:11;55835:9;:28::i;:::-;55874;55884:4;55890:11;55874:9;:28::i;:::-;55913;55923:4;55929:11;55913:9;:28::i;:::-;55984:11;;56021:17;;-1:-1:-1;;;56021:17:0;;-1:-1:-1;;;;;6313:32:1;;;56021:17:0;;;6295:51:1;55984:11:0;;;;;;;;55954:15;;55984:11;;56021;;6268:18:1;;56021:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56007:31;;56057:6;56049:29;;;;-1:-1:-1;;;56049:29:0;;13176:2:1;56049:29:0;;;13158:21:1;13215:2;13195:18;;;13188:30;-1:-1:-1;;;13234:18:1;;;13227:40;13284:18;;56049:29:0;13148:160:1;56049:29:0;55352:734;;;;;;:::o;56870:99::-;56916:13;56949:12;56942:19;;;;;:::i;52091:100::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;52168:15:::1;::::0;;-1:-1:-1;;52149:34:0;::::1;52168:15;::::0;;;::::1;;;52167:16;52149:34:::0;;::::1;;::::0;;52091:100::o;2772:192::-;1945:6;;-1:-1:-1;;;;;1945:6:0;740:10;2092:23;2084:68;;;;-1:-1:-1;;;2084:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2861:22:0;::::1;2853:73;;;::::0;-1:-1:-1;;;2853:73:0;;9346:2:1;2853:73:0::1;::::0;::::1;9328:21:1::0;9385:2;9365:18;;;9358:30;9424:34;9404:18;;;9397:62;-1:-1:-1;;;9475:18:1;;;9468:36;9521:19;;2853:73:0::1;9318:228:1::0;2853:73:0::1;2937:19;2947:8;2937:9;:19::i;:::-;2772:192:::0;:::o;53512:996::-;51147:15;;;;;;;51139:51;;;;-1:-1:-1;;;51139:51:0;;7747:2:1;51139:51:0;;;7729:21:1;7786:2;7766:18;;;7759:30;7825:25;7805:18;;;7798:53;7868:18;;51139:51:0;7719:173:1;51139:51:0;53617:10:::1;53600:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;53592:77;;;::::0;-1:-1:-1;;;53592:77:0;;11225:2:1;53592:77:0::1;::::0;::::1;11207:21:1::0;11264:2;11244:18;;;11237:30;11303:34;11283:18;;;11276:62;-1:-1:-1;;;11354:18:1;;;11347:34;11398:19;;53592:77:0::1;11197:226:1::0;53592:77:0::1;50568:5;53688:13;44627:10:::0;:17;;44539:113;53688:13:::1;:26;53680:66;;;::::0;-1:-1:-1;;;53680:66:0;;19759:2:1;53680:66:0::1;::::0;::::1;19741:21:1::0;19798:2;19778:18;;;19771:30;19837:29;19817:18;;;19810:57;19884:18;;53680:66:0::1;19731:177:1::0;53680:66:0::1;53774:14;;53765:5;:23;;53757:83;;;::::0;-1:-1:-1;;;53757:83:0;;8099:2:1;53757:83:0::1;::::0;::::1;8081:21:1::0;8138:2;8118:18;;;8111:30;8177:34;8157:18;;;8150:62;-1:-1:-1;;;8228:18:1;;;8221:45;8283:19;;53757:83:0::1;8071:237:1::0;53757:83:0::1;50568:5;53859:24;53877:5;53859:13;44627:10:::0;:17;;44539:113;53859:24:::1;:38;;53851:82;;;;-1:-1:-1::0;;;53851:82:0::1;;;;;;;:::i;:::-;53992:14;::::0;53966:10:::1;53952:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;53982:5;53952:29:::1;:36::i;:::-;:54;;53944:95;;;::::0;-1:-1:-1;;;53944:95:0;;19051:2:1;53944:95:0::1;::::0;::::1;19033:21:1::0;19090:2;19070:18;;;19063:30;19129;19109:18;;;19102:58;19177:18;;53944:95:0::1;19023:178:1::0;53944:95:0::1;54066:1;54058:5;:9;54050:44;;;::::0;-1:-1:-1;;;54050:44:0;;19408:2:1;54050:44:0::1;::::0;::::1;19390:21:1::0;19447:2;19427:18;;;19420:30;-1:-1:-1;;;19466:18:1;;;19459:52;19528:18;;54050:44:0::1;19380:172:1::0;54050:44:0::1;54126:20;50495:17;54140:5:::0;54126:13:::1;:20::i;:::-;54113:9;:33;;54105:79;;;;-1:-1:-1::0;;;54105:79:0::1;;;;;;;:::i;:::-;54202:9;54197:258;54221:5;54217:1;:9;54197:258;;;54248:17;54268:13;44627:10:::0;:17;;44539:113;54268:13:::1;54248:33;;50568:5;54300:13;44627:10:::0;:17;;44539:113;54300:13:::1;:26;54296:148;;;54361:10;54347:25;::::0;;;:13:::1;:25;::::0;;;;:30;;54376:1:::1;::::0;54347:25;:30:::1;::::0;54376:1;;54347:30:::1;:::i;:::-;::::0;;;-1:-1:-1;54396:32:0::1;::::0;-1:-1:-1;54406:10:0::1;54418:9:::0;54396::::1;:32::i;:::-;-1:-1:-1::0;54228:3:0;::::1;::::0;::::1;:::i;:::-;;;;54197:258;;;-1:-1:-1::0;54470:30:0::1;::::0;;54482:10:::1;7024:51:1::0;;7106:2;7091:18;;7084:34;;;54470:30:0::1;::::0;6997:18:1;54470:30:0::1;6979:145:1::0;30886:284:0;30988:4;-1:-1:-1;;;;;;31012:40:0;;-1:-1:-1;;;31012:40:0;;:101;;-1:-1:-1;;;;;;;31065:48:0;;-1:-1:-1;;;31065:48:0;31012:101;:150;;;-1:-1:-1;;;;;;;;;;22994:40:0;;;31126:36;22885:157;40741:174;40816:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40816:29:0;-1:-1:-1;;;;;40816:29:0;;;;;;;;:24;;40870:23;40816:24;40870:14;:23::i;:::-;-1:-1:-1;;;;;40861:46:0;;;;;;;;;;;40741:174;;:::o;16111:98::-;16169:7;16196:5;16200:1;16196;:5;:::i;37486:110::-;37562:26;37572:2;37576:7;37562:26;;;;;;;;;;;;:9;:26::i;36796:348::-;36889:4;36591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36591:16:0;36906:73;;;;-1:-1:-1;;;36906:73:0;;11979:2:1;36906:73:0;;;11961:21:1;12018:2;11998:18;;;11991:30;12057:34;12037:18;;;12030:62;-1:-1:-1;;;12108:18:1;;;12101:42;12160:19;;36906:73:0;11951:234:1;36906:73:0;36990:13;37006:23;37021:7;37006:14;:23::i;:::-;36990:39;;37059:5;-1:-1:-1;;;;;37048:16:0;:7;-1:-1:-1;;;;;37048:16:0;;:51;;;;37092:7;-1:-1:-1;;;;;37068:31:0;:20;37080:7;37068:11;:20::i;:::-;-1:-1:-1;;;;;37068:31:0;;37048:51;:87;;;-1:-1:-1;;;;;;34042:25:0;;;34018:4;34042:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37103:32;37040:96;36796:348;-1:-1:-1;;;;36796:348:0:o;40073:550::-;40198:4;-1:-1:-1;;;;;40171:31:0;:23;40186:7;40171:14;:23::i;:::-;-1:-1:-1;;;;;40171:31:0;;40163:85;;;;-1:-1:-1;;;40163:85:0;;16654:2:1;40163:85:0;;;16636:21:1;16693:2;16673:18;;;16666:30;16732:34;16712:18;;;16705:62;-1:-1:-1;;;16783:18:1;;;16776:39;16832:19;;40163:85:0;16626:231:1;40163:85:0;-1:-1:-1;;;;;40267:16:0;;40259:65;;;;-1:-1:-1;;;40259:65:0;;10466:2:1;40259:65:0;;;10448:21:1;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:34;10639:19;;40259:65:0;10438:226:1;40259:65:0;40337:45;40358:4;40364:2;40368:7;40377:4;40337:20;:45::i;:::-;40447:29;40464:1;40468:7;40447:8;:29::i;:::-;-1:-1:-1;;;;;40489:15:0;;;;;;:9;:15;;;;;:20;;40508:1;;40489:15;:20;;40508:1;;40489:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40520:13:0;;;;;;:9;:13;;;;;:18;;40537:1;;40520:13;:18;;40537:1;;40520:18;:::i;:::-;;;;-1:-1:-1;;40549:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40549:21:0;-1:-1:-1;;;;;40549:21:0;;;;;;;;;40588:27;;40549:16;;40588:27;;;;;;;40073:550;;;:::o;2972:173::-;3047:6;;;-1:-1:-1;;;;;3064:17:0;;;-1:-1:-1;;;;;;3064:17:0;;;;;;;3097:40;;3047:6;;;3064:17;3047:6;;3097:40;;3028:16;;3097:40;2972:173;;:::o;16849:98::-;16907:7;16934:5;16938:1;16934;:5;:::i;35917:272::-;36031:28;36041:4;36047:2;36051:7;36031:9;:28::i;:::-;36078:48;36101:4;36107:2;36111:7;36120:5;36078:22;:48::i;:::-;36070:111;;;;-1:-1:-1;;;36070:111:0;;;;;;;:::i;11560:723::-;11616:13;11837:10;11833:53;;-1:-1:-1;;11864:10:0;;;;;;;;;;;;-1:-1:-1;;;11864:10:0;;;;;11560:723::o;11833:53::-;11911:5;11896:12;11952:78;11959:9;;11952:78;;11985:8;;;;:::i;:::-;;-1:-1:-1;12008:10:0;;-1:-1:-1;12016:2:0;12008:10;;:::i;:::-;;;11952:78;;;12040:19;12072:6;12062:17;;;;;;-1:-1:-1;;;12062:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12062:17:0;;12040:39;;12090:154;12097:10;;12090:154;;12124:11;12134:1;12124:11;;:::i;:::-;;-1:-1:-1;12193:10:0;12201:2;12193:5;:10;:::i;:::-;12180:24;;:2;:24;:::i;:::-;12167:39;;12150:6;12157;12150:14;;;;;;-1:-1:-1;;;12150:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;12150:56:0;;;;;;;;-1:-1:-1;12221:11:0;12230:2;12221:11;;:::i;:::-;;;12090:154;;39400:336;39481:55;39502:5;39517:1;39521:7;39530:5;39481:20;:55::i;:::-;39577:29;39594:1;39598:7;39577:8;:29::i;:::-;-1:-1:-1;;;;;39619:16:0;;;;;;:9;:16;;;;;:21;;39639:1;;39619:16;:21;;39639:1;;39619:21;:::i;:::-;;;;-1:-1:-1;;39658:16:0;;;;:7;:16;;;;;;39651:23;;-1:-1:-1;;;;;;39651:23:0;;;39692:36;39666:7;;39658:16;-1:-1:-1;;;;;39692:36:0;;;;;39658:16;;39692:36;39400:336;;:::o;37823:250::-;37919:18;37925:2;37929:7;37919:5;:18::i;:::-;37956:54;37987:1;37991:2;37995:7;38004:5;37956:22;:54::i;:::-;37948:117;;;;-1:-1:-1;;;37948:117:0;;;;;;;:::i;45575:604::-;-1:-1:-1;;;;;45772:18:0;;45768:187;;45807:40;45839:7;47006:10;:17;;46979:24;;;;:15;:24;;;;;:44;;;47034:24;;;;;;;;;;;;46902:164;45807:40;45768:187;;;45877:2;-1:-1:-1;;;;;45869:10:0;:4;-1:-1:-1;;;;;45869:10:0;;45865:90;;45896:47;45929:4;45935:7;45896:32;:47::i;:::-;-1:-1:-1;;;;;45969:16:0;;;:28;;;;;45989:8;45969:28;45965:207;;;46014:45;46051:7;46014:36;:45::i;:::-;45965:207;;;46087:4;-1:-1:-1;;;;;46081:10:0;:2;-1:-1:-1;;;;;46081:10:0;;;:22;;;;;46095:8;46081:22;46077:95;;;46120:40;46148:2;46152:7;46120:27;:40::i;41480:839::-;41597:4;-1:-1:-1;;;;;41623:13:0;;4241:20;4289:8;41619:693;;41659:72;;-1:-1:-1;;;41659:72:0;;-1:-1:-1;;;;;41659:36:0;;;;;:72;;740:10;;41710:4;;41716:7;;41725:5;;41659:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41659:72:0;;;;;;;;-1:-1:-1;;41659:72:0;;;;;;;;;;;;:::i;:::-;;;41655:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41905:13:0;;41901:341;;41948:60;;-1:-1:-1;;;41948:60:0;;;;;;;:::i;41901:341::-;42192:6;42186:13;42177:6;42173:2;42169:15;42162:38;41655:602;-1:-1:-1;;;;;;41782:55:0;-1:-1:-1;;;41782:55:0;;-1:-1:-1;41775:62:0;;41619:693;-1:-1:-1;42296:4:0;41480:839;;;;;;:::o;38409:388::-;-1:-1:-1;;;;;38489:16:0;;38481:61;;;;-1:-1:-1;;;38481:61:0;;15519:2:1;38481:61:0;;;15501:21:1;;;15538:18;;;15531:30;15597:34;15577:18;;;15570:62;15649:18;;38481:61:0;15491:182:1;38481:61:0;36567:4;36591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36591:16:0;:30;38553:58;;;;-1:-1:-1;;;38553:58:0;;9753:2:1;38553:58:0;;;9735:21:1;9792:2;9772:18;;;9765:30;9831;9811:18;;;9804:58;9879:18;;38553:58:0;9725:178:1;38553:58:0;38624:51;38653:1;38657:2;38661:7;38670:4;38624:20;:51::i;:::-;-1:-1:-1;;;;;38688:13:0;;;;;;:9;:13;;;;;:18;;38705:1;;38688:13;:18;;38705:1;;38688:18;:::i;:::-;;;;-1:-1:-1;;38717:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38717:21:0;-1:-1:-1;;;;;38717:21:0;;;;;;;;38756:33;;38717:16;;;38756:33;;38717:16;;38756:33;38409:388;;:::o;47693:988::-;47959:22;48009:1;47984:22;48001:4;47984:16;:22::i;:::-;:26;;;;:::i;:::-;48021:18;48042:26;;;:17;:26;;;;;;47959:51;;-1:-1:-1;48175:28:0;;;48171:328;;-1:-1:-1;;;;;48242:18:0;;48220:19;48242:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48293:30;;;;;;:44;;;48410:30;;:17;:30;;;;;:43;;;48171:328;-1:-1:-1;48595:26:0;;;;:17;:26;;;;;;;;48588:33;;;-1:-1:-1;;;;;48639:18:0;;;;;:12;:18;;;;;:34;;;;;;;48632:41;47693:988::o;48976:1079::-;49254:10;:17;49229:22;;49254:21;;49274:1;;49254:21;:::i;:::-;49286:18;49307:24;;;:15;:24;;;;;;49680:10;:26;;49229:46;;-1:-1:-1;49307:24:0;;49229:46;;49680:26;;;;-1:-1:-1;;;49680:26:0;;;;;;;;;;;;;;;;;49658:48;;49744:11;49719:10;49730;49719:22;;;;;;-1:-1:-1;;;49719:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;49824:28;;;:15;:28;;;;;;;:41;;;49996:24;;;;;49989:31;50031:10;:16;;;;;-1:-1:-1;;;50031:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;48976:1079;;;;:::o;46480:221::-;46565:14;46582:20;46599:2;46582:16;:20::i;:::-;-1:-1:-1;;;;;46613:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46658:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46480:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:325::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2615:28;2637:5;2615:28;:::i;:::-;2662:5;2652:15;;;2432:241;;;;;:::o;2678:264::-;2746:6;2754;2807:2;2795:9;2786:7;2782:23;2778:32;2775:2;;;2828:6;2820;2813:22;2775:2;2856:29;2875:9;2856:29;:::i;:::-;2846:39;2932:2;2917:18;;;;2904:32;;-1:-1:-1;;;2765:177:1:o;2947:665::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:2;;;3115:6;3107;3100:22;3062:2;3160:9;3147:23;3189:18;3230:2;3222:6;3219:14;3216:2;;;3251:6;3243;3236:22;3216:2;3294:6;3283:9;3279:22;3269:32;;3339:7;3332:4;3328:2;3324:13;3320:27;3310:2;;3366:6;3358;3351:22;3310:2;3411;3398:16;3437:2;3429:6;3426:14;3423:2;;;3458:6;3450;3443:22;3423:2;3516:7;3511:2;3501:6;3498:1;3494:14;3490:2;3486:23;3482:32;3479:45;3476:2;;;3542:6;3534;3527:22;3476:2;3578;3570:11;;;;;3600:6;;-1:-1:-1;3052:560:1;;-1:-1:-1;;;;3052:560:1:o;3617:255::-;3684:6;3737:2;3725:9;3716:7;3712:23;3708:32;3705:2;;;3758:6;3750;3743:22;3705:2;3795:9;3789:16;3814:28;3836:5;3814:28;:::i;3877:255::-;3935:6;3988:2;3976:9;3967:7;3963:23;3959:32;3956:2;;;4009:6;4001;3994:22;3956:2;4053:9;4040:23;4072:30;4096:5;4072:30;:::i;4137:259::-;4206:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:2;;;4280:6;4272;4265:22;4227:2;4317:9;4311:16;4336:30;4360:5;4336:30;:::i;4401:480::-;4470:6;4523:2;4511:9;4502:7;4498:23;4494:32;4491:2;;;4544:6;4536;4529:22;4491:2;4589:9;4576:23;4622:18;4614:6;4611:30;4608:2;;;4659:6;4651;4644:22;4608:2;4687:22;;4740:4;4732:13;;4728:27;-1:-1:-1;4718:2:1;;4774:6;4766;4759:22;4718:2;4802:73;4867:7;4862:2;4849:16;4844:2;4840;4836:11;4802:73;:::i;4886:190::-;4945:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:2;;;5019:6;5011;5004:22;4966:2;-1:-1:-1;5047:23:1;;4956:120;-1:-1:-1;4956:120:1:o;5081:326::-;5158:6;5166;5174;5227:2;5215:9;5206:7;5202:23;5198:32;5195:2;;;5248:6;5240;5233:22;5195:2;-1:-1:-1;;5276:23:1;;;5346:2;5331:18;;5318:32;;-1:-1:-1;5397:2:1;5382:18;;;5369:32;;5185:222;-1:-1:-1;5185:222:1:o;5412:257::-;5453:3;5491:5;5485:12;5518:6;5513:3;5506:19;5534:63;5590:6;5583:4;5578:3;5574:14;5567:4;5560:5;5556:16;5534:63;:::i;:::-;5651:2;5630:15;-1:-1:-1;;5626:29:1;5617:39;;;;5658:4;5613:50;;5461:208;-1:-1:-1;;5461:208:1:o;5674:470::-;5853:3;5891:6;5885:13;5907:53;5953:6;5948:3;5941:4;5933:6;5929:17;5907:53;:::i;:::-;6023:13;;5982:16;;;;6045:57;6023:13;5982:16;6079:4;6067:17;;6045:57;:::i;:::-;6118:20;;5861:283;-1:-1:-1;;;;5861:283:1:o;6357:488::-;-1:-1:-1;;;;;6626:15:1;;;6608:34;;6678:15;;6673:2;6658:18;;6651:43;6725:2;6710:18;;6703:34;;;6773:3;6768:2;6753:18;;6746:31;;;6551:4;;6794:45;;6819:19;;6811:6;6794:45;:::i;:::-;6786:53;6560:285;-1:-1:-1;;;;;;6560:285:1:o;7321:219::-;7470:2;7459:9;7452:21;7433:4;7490:44;7530:2;7519:9;7515:18;7507:6;7490:44;:::i;8725:414::-;8927:2;8909:21;;;8966:2;8946:18;;;8939:30;9005:34;9000:2;8985:18;;8978:62;-1:-1:-1;;;9071:2:1;9056:18;;9049:48;9129:3;9114:19;;8899:240::o;12190:354::-;12392:2;12374:21;;;12431:2;12411:18;;;12404:30;12470:32;12465:2;12450:18;;12443:60;12535:2;12520:18;;12364:180::o;14134:355::-;14336:2;14318:21;;;14375:2;14355:18;;;14348:30;14414:33;14409:2;14394:18;;14387:61;14480:2;14465:18;;14308:181::o;16091:356::-;16293:2;16275:21;;;16312:18;;;16305:30;16371:34;16366:2;16351:18;;16344:62;16438:2;16423:18;;16265:182::o;17264:347::-;17466:2;17448:21;;;17505:2;17485:18;;;17478:30;17544:25;17539:2;17524:18;;17517:53;17602:2;17587:18;;17438:173::o;17616:397::-;17818:2;17800:21;;;17857:2;17837:18;;;17830:30;17896:34;17891:2;17876:18;;17869:62;-1:-1:-1;;;17962:2:1;17947:18;;17940:31;18003:3;17988:19;;17790:223::o;18018:413::-;18220:2;18202:21;;;18259:2;18239:18;;;18232:30;18298:34;18293:2;18278:18;;18271:62;-1:-1:-1;;;18364:2:1;18349:18;;18342:47;18421:3;18406:19;;18192:239::o;20456:128::-;20496:3;20527:1;20523:6;20520:1;20517:13;20514:2;;;20533:18;;:::i;:::-;-1:-1:-1;20569:9:1;;20504:80::o;20589:120::-;20629:1;20655;20645:2;;20660:18;;:::i;:::-;-1:-1:-1;20694:9:1;;20635:74::o;20714:168::-;20754:7;20820:1;20816;20812:6;20808:14;20805:1;20802:21;20797:1;20790:9;20783:17;20779:45;20776:2;;;20827:18;;:::i;:::-;-1:-1:-1;20867:9:1;;20766:116::o;20887:125::-;20927:4;20955:1;20952;20949:8;20946:2;;;20960:18;;:::i;:::-;-1:-1:-1;20997:9:1;;20936:76::o;21017:258::-;21089:1;21099:113;21113:6;21110:1;21107:13;21099:113;;;21189:11;;;21183:18;21170:11;;;21163:39;21135:2;21128:10;21099:113;;;21230:6;21227:1;21224:13;21221:2;;;-1:-1:-1;;21265:1:1;21247:16;;21240:27;21070:205::o;21280:380::-;21359:1;21355:12;;;;21402;;;21423:2;;21477:4;21469:6;21465:17;21455:27;;21423:2;21530;21522:6;21519:14;21499:18;21496:38;21493:2;;;21576:10;21571:3;21567:20;21564:1;21557:31;21611:4;21608:1;21601:15;21639:4;21636:1;21629:15;21493:2;;21335:325;;;:::o;21665:135::-;21704:3;-1:-1:-1;;21725:17:1;;21722:2;;;21745:18;;:::i;:::-;-1:-1:-1;21792:1:1;21781:13;;21712:88::o;21805:112::-;21837:1;21863;21853:2;;21868:18;;:::i;:::-;-1:-1:-1;21902:9:1;;21843:74::o;21922:127::-;21983:10;21978:3;21974:20;21971:1;21964:31;22014:4;22011:1;22004:15;22038:4;22035:1;22028:15;22054:127;22115:10;22110:3;22106:20;22103:1;22096:31;22146:4;22143:1;22136:15;22170:4;22167:1;22160:15;22186:127;22247:10;22242:3;22238:20;22235:1;22228:31;22278:4;22275:1;22268:15;22302:4;22299:1;22292:15;22318:118;22404:5;22397:13;22390:21;22383:5;22380:32;22370:2;;22426:1;22423;22416:12;22441:131;-1:-1:-1;;;;;;22515:32:1;;22505:43;;22495:2;;22562:1;22559;22552:12

Swarm Source

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