ETH Price: $3,512.06 (+4.70%)

Token

Base Punks (BPUNKS)
 

Overview

Max Total Supply

146 BPUNKS

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BPUNKS
0x1576D7992762AE6c900Ba9a3f15F02ED79d057d1
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:
BasePunks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

// SPDX-License-Identifier: MIT



//   _                                        _        
//  | |                                      | |       
//  | |__   __ _ ___  ___   _ __  _   _ _ __ | | _____ 
//  | '_ \ / _` / __|/ _ \ | '_ \| | | | '_ \| |/ / __|
//  | |_) | (_| \__ \  __/ | |_) | |_| | | | |   <\__ \
//  |_.__/ \__,_|___/\___| | .__/ \__,_|_| |_|_|\_\___/
//                         | |                         
//                         |_|                         



// Supply: 5,000 NFTs
// Price: 0.005 ETH
// Max 5 per wallet 


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol                            

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

contract BasePunks is ERC721A, Ownable, ReentrancyGuard {
  uint public price = 0.04 ether;
  uint public maxPerTx = 5;
  uint public maxPerWallet = 5;
  uint public maxSupply = 4000;
  bool public mintEnabled;
  string public baseURI;


  constructor() ERC721A("Base Punks", "BPUNKS"){
  }

  function mint(uint256 amount) external payable
  {
    require(mintEnabled, "Minting is not live yet, hold on punk");
    require(numberMinted(msg.sender) + amount < maxPerWallet, "Max per Wallet reached" );
    require(totalSupply() + amount < maxSupply + 1,"No more punk");
    require(msg.value >= amount * price,"Please send the exact amount");
    require(amount < maxPerTx + 1, "Max per TX reached");
    

    _safeMint(msg.sender, amount);
  }

  function ownerBatchMint(uint256 amount) external onlyOwner
  {
    require(totalSupply() + amount < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amount);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }


  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":"toggleMinting","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"}]

6080604052668e1bc9bf0400006009556005600a556005600b55610fa0600c553480156200002c57600080fd5b50604080518082018252600a815269426173652050756e6b7360b01b6020808301918252835180850190945260068452654250554e4b5360d01b9084015281519192916200007d9160019162000111565b5080516200009390600290602084019062000111565b505050620000b0620000aa620000bb60201b60201c565b620000bf565b6001600855620001f4565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011f90620001b7565b90600052602060002090601f0160209004810192826200014357600085556200018e565b82601f106200015e57805160ff19168380011785556200018e565b828001600101855582156200018e579182015b828111156200018e57825182559160200191906001019062000171565b506200019c929150620001a0565b5090565b5b808211156200019c5760008155600101620001a1565b600181811c90821680620001cc57607f821691505b60208210811415620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b6121c280620002046000396000f3fe6080604052600436106101ee5760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610543578063dc33e68114610559578063e985e9c514610579578063f2fde38b146105c2578063f968adbe146105e257600080fd5b8063b88d4fde146104c9578063c6f6f216146104e9578063c87b56dd14610509578063d12397301461052957600080fd5b806395d89b41116100dc57806395d89b411461046b578063a035b1fe14610480578063a0712d6814610496578063a22cb465146104a957600080fd5b80637d55094d146103f85780638da5cb5b1461040d5780638db89f071461042b57806391b7f5ed1461044b57600080fd5b806342842e0e116101855780636352211e116101545780636352211e1461038e5780636c0360eb146103ae57806370a08231146103c3578063715018a6146103e357600080fd5b806342842e0e14610318578063453c2310146103385780634f6ccce71461034e57806355f804b31461036e57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c35780632f745c59146102e35780633ccfd60b1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c5c565b6105f8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610665565b60405161021f9190611cd1565b34801561025657600080fd5b5061026a610265366004611ce4565b6106f7565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611d19565b610787565b005b3480156102b057600080fd5b506000545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611d43565b61089f565b3480156102ef57600080fd5b506102b56102fe366004611d19565b6108aa565b34801561030f57600080fd5b506102a2610a07565b34801561032457600080fd5b506102a2610333366004611d43565b610b1c565b34801561034457600080fd5b506102b5600b5481565b34801561035a57600080fd5b506102b5610369366004611ce4565b610b37565b34801561037a57600080fd5b506102a2610389366004611d7f565b610b99565b34801561039a57600080fd5b5061026a6103a9366004611ce4565b610bcf565b3480156103ba57600080fd5b5061023d610be1565b3480156103cf57600080fd5b506102b56103de366004611df1565b610c6f565b3480156103ef57600080fd5b506102a2610d00565b34801561040457600080fd5b506102a2610d36565b34801561041957600080fd5b506007546001600160a01b031661026a565b34801561043757600080fd5b506102a2610446366004611ce4565b610d74565b34801561045757600080fd5b506102a2610466366004611ce4565b610e06565b34801561047757600080fd5b5061023d610e35565b34801561048c57600080fd5b506102b560095481565b6102a26104a4366004611ce4565b610e44565b3480156104b557600080fd5b506102a26104c4366004611e0c565b61100c565b3480156104d557600080fd5b506102a26104e4366004611e5e565b6110d1565b3480156104f557600080fd5b506102a2610504366004611ce4565b61110a565b34801561051557600080fd5b5061023d610524366004611ce4565b611139565b34801561053557600080fd5b50600d546102139060ff1681565b34801561054f57600080fd5b506102b5600c5481565b34801561056557600080fd5b506102b5610574366004611df1565b611207565b34801561058557600080fd5b50610213610594366004611f3a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ce57600080fd5b506102a26105dd366004611df1565b611212565b3480156105ee57600080fd5b506102b5600a5481565b60006001600160e01b031982166380ac58cd60e01b148061062957506001600160e01b03198216635b5e139f60e01b145b8061064457506001600160e01b0319821663780e9d6360e01b145b8061065f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461067490611f6d565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611f6d565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000610704826000541190565b61076b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079282610bcf565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610762565b336001600160a01b038216148061081d575061081d8133610594565b61088f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610762565b61089a8383836112aa565b505050565b61089a838383611306565b60006108b583610c6f565b821061090e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610762565b600080549080805b838110156109a7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561096957805192505b876001600160a01b0316836001600160a01b0316141561099e57868414156109975750935061065f92505050565b6001909301925b50600101610916565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610762565b6007546001600160a01b03163314610a315760405162461bcd60e51b815260040161076290611fa8565b60026008541415610a845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600855604051600090339047908381818185875af1925050503d8060008114610acb576040519150601f19603f3d011682016040523d82523d6000602084013e610ad0565b606091505b5050905080610b145760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610762565b506001600855565b61089a838383604051806020016040528060008152506110d1565b600080548210610b955760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610762565b5090565b6007546001600160a01b03163314610bc35760405162461bcd60e51b815260040161076290611fa8565b61089a600e8383611bb6565b6000610bda826115eb565b5192915050565b600e8054610bee90611f6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90611f6d565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b60006001600160a01b038216610cdb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610762565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161076290611fa8565b610d3460006116c2565b565b6007546001600160a01b03163314610d605760405162461bcd60e51b815260040161076290611fa8565b600d805460ff19811660ff90911615179055565b6007546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161076290611fa8565b600c54610dac906001611ff3565b81610db660005490565b610dc09190611ff3565b10610df95760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610762565b610e033382611714565b50565b6007546001600160a01b03163314610e305760405162461bcd60e51b815260040161076290611fa8565b600955565b60606002805461067490611f6d565b600d5460ff16610ea45760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152642070756e6b60d81b6064820152608401610762565b600b5481610eb133611207565b610ebb9190611ff3565b10610f015760405162461bcd60e51b815260206004820152601660248201527513585e081c195c8815d85b1b195d081c995858da195960521b6044820152606401610762565b600c54610f0f906001611ff3565b81610f1960005490565b610f239190611ff3565b10610f5f5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f72652070756e6b60a01b6044820152606401610762565b600954610f6c908261200b565b341015610fbb5760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e74000000006044820152606401610762565b600a54610fc9906001611ff3565b8110610df95760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b6044820152606401610762565b6001600160a01b0382163314156110655760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610762565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110dc848484611306565b6110e884848484611732565b6111045760405162461bcd60e51b81526004016107629061202a565b50505050565b6007546001600160a01b031633146111345760405162461bcd60e51b815260040161076290611fa8565b600a55565b6060611146826000541190565b6111aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610762565b60006111b4611840565b90508051600014156111d55760405180602001604052806000815250611200565b806111df8461184f565b6040516020016111f092919061207d565b6040516020818303038152906040525b9392505050565b600061065f8261194d565b6007546001600160a01b0316331461123c5760405162461bcd60e51b815260040161076290611fa8565b6001600160a01b0381166112a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610762565b610e03816116c2565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611311826115eb565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d846106f7565b6001600160a01b0316145b8061135a5750815161135a9033610594565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610762565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610762565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610762565b6114ac60008484600001516112aa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261160a826000541190565b6116695760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610762565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b8579392505050565b506000190161166b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61172e8282604051806020016040528060008152506119eb565b5050565b60006001600160a01b0384163b1561183457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117769033908990889088906004016120ac565b602060405180830381600087803b15801561179057600080fd5b505af19250505080156117c0575060408051601f3d908101601f191682019092526117bd918101906120e9565b60015b61181a573d8080156117ee576040519150601f19603f3d011682016040523d82523d6000602084013e6117f3565b606091505b5080516118125760405162461bcd60e51b81526004016107629061202a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611838565b5060015b949350505050565b6060600e805461067490611f6d565b6060816118735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189d578061188781612106565b91506118969050600a83612137565b9150611877565b60008167ffffffffffffffff8111156118b8576118b8611e48565b6040519080825280601f01601f1916602001820160405280156118e2576020820181803683370190505b5090505b8415611838576118f760018361214b565b9150611904600a86612162565b61190f906030611ff3565b60f81b81838151811061192457611924612176565b60200101906001600160f81b031916908160001a905350611946600a86612137565b94506118e6565b60006001600160a01b0382166119bf5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610762565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61089a83838360016000546001600160a01b038516611a565760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610762565b83611ab45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610762565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bad5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ba157611b856000888488611732565b611ba15760405162461bcd60e51b81526004016107629061202a565b60019182019101611b32565b506000556115e4565b828054611bc290611f6d565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd5782800160ff19823516178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578235825591602001919060010190611c0f565b50610b959291505b80821115610b955760008155600101611c32565b6001600160e01b031981168114610e0357600080fd5b600060208284031215611c6e57600080fd5b813561120081611c46565b60005b83811015611c94578181015183820152602001611c7c565b838111156111045750506000910152565b60008151808452611cbd816020860160208601611c79565b601f01601f19169290920160200192915050565b6020815260006112006020830184611ca5565b600060208284031215611cf657600080fd5b5035919050565b80356001600160a01b0381168114611d1457600080fd5b919050565b60008060408385031215611d2c57600080fd5b611d3583611cfd565b946020939093013593505050565b600080600060608486031215611d5857600080fd5b611d6184611cfd565b9250611d6f60208501611cfd565b9150604084013590509250925092565b60008060208385031215611d9257600080fd5b823567ffffffffffffffff80821115611daa57600080fd5b818501915085601f830112611dbe57600080fd5b813581811115611dcd57600080fd5b866020828501011115611ddf57600080fd5b60209290920196919550909350505050565b600060208284031215611e0357600080fd5b61120082611cfd565b60008060408385031215611e1f57600080fd5b611e2883611cfd565b915060208301358015158114611e3d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e7457600080fd5b611e7d85611cfd565b9350611e8b60208601611cfd565b925060408501359150606085013567ffffffffffffffff80821115611eaf57600080fd5b818701915087601f830112611ec357600080fd5b813581811115611ed557611ed5611e48565b604051601f8201601f19908116603f01168101908382118183101715611efd57611efd611e48565b816040528281528a6020848701011115611f1657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4d57600080fd5b611f5683611cfd565b9150611f6460208401611cfd565b90509250929050565b600181811c90821680611f8157607f821691505b60208210811415611fa257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b600081600019048311821515161561202557612025611fdd565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161208f818460208801611c79565b8351908301906120a3818360208801611c79565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120df90830184611ca5565b9695505050505050565b6000602082840312156120fb57600080fd5b815161120081611c46565b600060001982141561211a5761211a611fdd565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261214657612146612121565b500490565b60008282101561215d5761215d611fdd565b500390565b60008261217157612171612121565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204d1b11066fb6503bbe06f4d95649b9974aabaa7d2abd06d6f692d2d2277fa51964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610543578063dc33e68114610559578063e985e9c514610579578063f2fde38b146105c2578063f968adbe146105e257600080fd5b8063b88d4fde146104c9578063c6f6f216146104e9578063c87b56dd14610509578063d12397301461052957600080fd5b806395d89b41116100dc57806395d89b411461046b578063a035b1fe14610480578063a0712d6814610496578063a22cb465146104a957600080fd5b80637d55094d146103f85780638da5cb5b1461040d5780638db89f071461042b57806391b7f5ed1461044b57600080fd5b806342842e0e116101855780636352211e116101545780636352211e1461038e5780636c0360eb146103ae57806370a08231146103c3578063715018a6146103e357600080fd5b806342842e0e14610318578063453c2310146103385780634f6ccce71461034e57806355f804b31461036e57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c35780632f745c59146102e35780633ccfd60b1461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c5c565b6105f8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610665565b60405161021f9190611cd1565b34801561025657600080fd5b5061026a610265366004611ce4565b6106f7565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611d19565b610787565b005b3480156102b057600080fd5b506000545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611d43565b61089f565b3480156102ef57600080fd5b506102b56102fe366004611d19565b6108aa565b34801561030f57600080fd5b506102a2610a07565b34801561032457600080fd5b506102a2610333366004611d43565b610b1c565b34801561034457600080fd5b506102b5600b5481565b34801561035a57600080fd5b506102b5610369366004611ce4565b610b37565b34801561037a57600080fd5b506102a2610389366004611d7f565b610b99565b34801561039a57600080fd5b5061026a6103a9366004611ce4565b610bcf565b3480156103ba57600080fd5b5061023d610be1565b3480156103cf57600080fd5b506102b56103de366004611df1565b610c6f565b3480156103ef57600080fd5b506102a2610d00565b34801561040457600080fd5b506102a2610d36565b34801561041957600080fd5b506007546001600160a01b031661026a565b34801561043757600080fd5b506102a2610446366004611ce4565b610d74565b34801561045757600080fd5b506102a2610466366004611ce4565b610e06565b34801561047757600080fd5b5061023d610e35565b34801561048c57600080fd5b506102b560095481565b6102a26104a4366004611ce4565b610e44565b3480156104b557600080fd5b506102a26104c4366004611e0c565b61100c565b3480156104d557600080fd5b506102a26104e4366004611e5e565b6110d1565b3480156104f557600080fd5b506102a2610504366004611ce4565b61110a565b34801561051557600080fd5b5061023d610524366004611ce4565b611139565b34801561053557600080fd5b50600d546102139060ff1681565b34801561054f57600080fd5b506102b5600c5481565b34801561056557600080fd5b506102b5610574366004611df1565b611207565b34801561058557600080fd5b50610213610594366004611f3a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ce57600080fd5b506102a26105dd366004611df1565b611212565b3480156105ee57600080fd5b506102b5600a5481565b60006001600160e01b031982166380ac58cd60e01b148061062957506001600160e01b03198216635b5e139f60e01b145b8061064457506001600160e01b0319821663780e9d6360e01b145b8061065f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461067490611f6d565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611f6d565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000610704826000541190565b61076b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061079282610bcf565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610762565b336001600160a01b038216148061081d575061081d8133610594565b61088f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610762565b61089a8383836112aa565b505050565b61089a838383611306565b60006108b583610c6f565b821061090e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610762565b600080549080805b838110156109a7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561096957805192505b876001600160a01b0316836001600160a01b0316141561099e57868414156109975750935061065f92505050565b6001909301925b50600101610916565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610762565b6007546001600160a01b03163314610a315760405162461bcd60e51b815260040161076290611fa8565b60026008541415610a845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600855604051600090339047908381818185875af1925050503d8060008114610acb576040519150601f19603f3d011682016040523d82523d6000602084013e610ad0565b606091505b5050905080610b145760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610762565b506001600855565b61089a838383604051806020016040528060008152506110d1565b600080548210610b955760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610762565b5090565b6007546001600160a01b03163314610bc35760405162461bcd60e51b815260040161076290611fa8565b61089a600e8383611bb6565b6000610bda826115eb565b5192915050565b600e8054610bee90611f6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90611f6d565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b60006001600160a01b038216610cdb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610762565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161076290611fa8565b610d3460006116c2565b565b6007546001600160a01b03163314610d605760405162461bcd60e51b815260040161076290611fa8565b600d805460ff19811660ff90911615179055565b6007546001600160a01b03163314610d9e5760405162461bcd60e51b815260040161076290611fa8565b600c54610dac906001611ff3565b81610db660005490565b610dc09190611ff3565b10610df95760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610762565b610e033382611714565b50565b6007546001600160a01b03163314610e305760405162461bcd60e51b815260040161076290611fa8565b600955565b60606002805461067490611f6d565b600d5460ff16610ea45760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e6044820152642070756e6b60d81b6064820152608401610762565b600b5481610eb133611207565b610ebb9190611ff3565b10610f015760405162461bcd60e51b815260206004820152601660248201527513585e081c195c8815d85b1b195d081c995858da195960521b6044820152606401610762565b600c54610f0f906001611ff3565b81610f1960005490565b610f239190611ff3565b10610f5f5760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f72652070756e6b60a01b6044820152606401610762565b600954610f6c908261200b565b341015610fbb5760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e74000000006044820152606401610762565b600a54610fc9906001611ff3565b8110610df95760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b6044820152606401610762565b6001600160a01b0382163314156110655760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610762565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110dc848484611306565b6110e884848484611732565b6111045760405162461bcd60e51b81526004016107629061202a565b50505050565b6007546001600160a01b031633146111345760405162461bcd60e51b815260040161076290611fa8565b600a55565b6060611146826000541190565b6111aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610762565b60006111b4611840565b90508051600014156111d55760405180602001604052806000815250611200565b806111df8461184f565b6040516020016111f092919061207d565b6040516020818303038152906040525b9392505050565b600061065f8261194d565b6007546001600160a01b0316331461123c5760405162461bcd60e51b815260040161076290611fa8565b6001600160a01b0381166112a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610762565b610e03816116c2565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611311826115eb565b80519091506000906001600160a01b0316336001600160a01b0316148061134857503361133d846106f7565b6001600160a01b0316145b8061135a5750815161135a9033610594565b9050806113c45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610762565b846001600160a01b031682600001516001600160a01b0316146114385760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610762565b6001600160a01b03841661149c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610762565b6114ac60008484600001516112aa565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115a157611554816000541190565b156115a1578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261160a826000541190565b6116695760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610762565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116b8579392505050565b506000190161166b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61172e8282604051806020016040528060008152506119eb565b5050565b60006001600160a01b0384163b1561183457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117769033908990889088906004016120ac565b602060405180830381600087803b15801561179057600080fd5b505af19250505080156117c0575060408051601f3d908101601f191682019092526117bd918101906120e9565b60015b61181a573d8080156117ee576040519150601f19603f3d011682016040523d82523d6000602084013e6117f3565b606091505b5080516118125760405162461bcd60e51b81526004016107629061202a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611838565b5060015b949350505050565b6060600e805461067490611f6d565b6060816118735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189d578061188781612106565b91506118969050600a83612137565b9150611877565b60008167ffffffffffffffff8111156118b8576118b8611e48565b6040519080825280601f01601f1916602001820160405280156118e2576020820181803683370190505b5090505b8415611838576118f760018361214b565b9150611904600a86612162565b61190f906030611ff3565b60f81b81838151811061192457611924612176565b60200101906001600160f81b031916908160001a905350611946600a86612137565b94506118e6565b60006001600160a01b0382166119bf5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610762565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61089a83838360016000546001600160a01b038516611a565760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610762565b83611ab45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610762565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bad5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ba157611b856000888488611732565b611ba15760405162461bcd60e51b81526004016107629061202a565b60019182019101611b32565b506000556115e4565b828054611bc290611f6d565b90600052602060002090601f016020900481019282611be45760008555611c2a565b82601f10611bfd5782800160ff19823516178555611c2a565b82800160010185558215611c2a579182015b82811115611c2a578235825591602001919060010190611c0f565b50610b959291505b80821115610b955760008155600101611c32565b6001600160e01b031981168114610e0357600080fd5b600060208284031215611c6e57600080fd5b813561120081611c46565b60005b83811015611c94578181015183820152602001611c7c565b838111156111045750506000910152565b60008151808452611cbd816020860160208601611c79565b601f01601f19169290920160200192915050565b6020815260006112006020830184611ca5565b600060208284031215611cf657600080fd5b5035919050565b80356001600160a01b0381168114611d1457600080fd5b919050565b60008060408385031215611d2c57600080fd5b611d3583611cfd565b946020939093013593505050565b600080600060608486031215611d5857600080fd5b611d6184611cfd565b9250611d6f60208501611cfd565b9150604084013590509250925092565b60008060208385031215611d9257600080fd5b823567ffffffffffffffff80821115611daa57600080fd5b818501915085601f830112611dbe57600080fd5b813581811115611dcd57600080fd5b866020828501011115611ddf57600080fd5b60209290920196919550909350505050565b600060208284031215611e0357600080fd5b61120082611cfd565b60008060408385031215611e1f57600080fd5b611e2883611cfd565b915060208301358015158114611e3d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e7457600080fd5b611e7d85611cfd565b9350611e8b60208601611cfd565b925060408501359150606085013567ffffffffffffffff80821115611eaf57600080fd5b818701915087601f830112611ec357600080fd5b813581811115611ed557611ed5611e48565b604051601f8201601f19908116603f01168101908382118183101715611efd57611efd611e48565b816040528281528a6020848701011115611f1657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4d57600080fd5b611f5683611cfd565b9150611f6460208401611cfd565b90509250929050565b600181811c90821680611f8157607f821691505b60208210811415611fa257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b600081600019048311821515161561202557612025611fdd565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161208f818460208801611c79565b8351908301906120a3818360208801611c79565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120df90830184611ca5565b9695505050505050565b6000602082840312156120fb57600080fd5b815161120081611c46565b600060001982141561211a5761211a611fdd565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261214657612146612121565b500490565b60008282101561215d5761215d611fdd565b500390565b60008261217157612171612121565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204d1b11066fb6503bbe06f4d95649b9974aabaa7d2abd06d6f692d2d2277fa51964736f6c63430008090033

Deployed Bytecode Sourcemap

50713:1734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37573:372;;;;;;;;;;-1:-1:-1;37573:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37573:372:0;;;;;;;;39459:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41021:214::-;;;;;;;;;;-1:-1:-1;41021:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;41021:214:0;1528:203:1;40542:413:0;;;;;;;;;;-1:-1:-1;40542:413:0;;;;;:::i;:::-;;:::i;:::-;;35830:100;;;;;;;;;;-1:-1:-1;35883:7:0;35910:12;35830:100;;;2319:25:1;;;2307:2;2292:18;35830:100:0;2173:177:1;41897:170:0;;;;;;;;;;-1:-1:-1;41897:170:0;;;;;:::i;:::-;;:::i;36494:1007::-;;;;;;;;;;-1:-1:-1;36494:1007:0;;;;;:::i;:::-;;:::i;52268:176::-;;;;;;;;;;;;;:::i;42138:185::-;;;;;;;;;;-1:-1:-1;42138:185:0;;;;;:::i;:::-;;:::i;50838:28::-;;;;;;;;;;;;;;;;36007:187;;;;;;;;;;-1:-1:-1;36007:187:0;;;;;:::i;:::-;;:::i;51868:96::-;;;;;;;;;;-1:-1:-1;51868:96:0;;;;;:::i;:::-;;:::i;39268:124::-;;;;;;;;;;-1:-1:-1;39268:124:0;;;;;:::i;:::-;;:::i;50932:21::-;;;;;;;;;;;;;:::i;38009:221::-;;;;;;;;;;-1:-1:-1;38009:221:0;;;;;:::i;:::-;;:::i;10965:103::-;;;;;;;;;;;;;:::i;51664:85::-;;;;;;;;;;;;;:::i;10314:87::-;;;;;;;;;;-1:-1:-1;10387:6:0;;-1:-1:-1;;;;;10387:6:0;10314:87;;51486:172;;;;;;;;;;-1:-1:-1;51486:172:0;;;;;:::i;:::-;;:::i;51970:82::-;;;;;;;;;;-1:-1:-1;51970:82:0;;;;;:::i;:::-;;:::i;39628:104::-;;;;;;;;;;;;;:::i;50774:30::-;;;;;;;;;;;;;;;;51019:461;;;;;;:::i;:::-;;:::i;41307:288::-;;;;;;;;;;-1:-1:-1;41307:288:0;;;;;:::i;:::-;;:::i;42394:355::-;;;;;;;;;;-1:-1:-1;42394:355:0;;;;;:::i;:::-;;:::i;52060:94::-;;;;;;;;;;-1:-1:-1;52060:94:0;;;;;:::i;:::-;;:::i;39803:335::-;;;;;;;;;;-1:-1:-1;39803:335:0;;;;;:::i;:::-;;:::i;50904:23::-;;;;;;;;;;-1:-1:-1;50904:23:0;;;;;;;;50871:28;;;;;;;;;;;;;;;;51755:107;;;;;;;;;;-1:-1:-1;51755:107:0;;;;;:::i;:::-;;:::i;41666:164::-;;;;;;;;;;-1:-1:-1;41666:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41787:25:0;;;41763:4;41787:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41666:164;11223:201;;;;;;;;;;-1:-1:-1;11223:201:0;;;;;:::i;:::-;;:::i;50809:24::-;;;;;;;;;;;;;;;;37573:372;37675:4;-1:-1:-1;;;;;;37712:40:0;;-1:-1:-1;;;37712:40:0;;:105;;-1:-1:-1;;;;;;;37769:48:0;;-1:-1:-1;;;37769:48:0;37712:105;:172;;;-1:-1:-1;;;;;;;37834:50:0;;-1:-1:-1;;;37834:50:0;37712:172;:225;;;-1:-1:-1;;;;;;;;;;27202:40:0;;;37901:36;37692:245;37573:372;-1:-1:-1;;37573:372:0:o;39459:100::-;39513:13;39546:5;39539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39459:100;:::o;41021:214::-;41089:7;41117:16;41125:7;43061:4;43095:12;-1:-1:-1;43085:22:0;43004:111;41117:16;41109:74;;;;-1:-1:-1;;;41109:74:0;;5955:2:1;41109:74:0;;;5937:21:1;5994:2;5974:18;;;5967:30;6033:34;6013:18;;;6006:62;-1:-1:-1;;;6084:18:1;;;6077:43;6137:19;;41109:74:0;;;;;;;;;-1:-1:-1;41203:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41203:24:0;;41021:214::o;40542:413::-;40615:13;40631:24;40647:7;40631:15;:24::i;:::-;40615:40;;40680:5;-1:-1:-1;;;;;40674:11:0;:2;-1:-1:-1;;;;;40674:11:0;;;40666:58;;;;-1:-1:-1;;;40666:58:0;;6369:2:1;40666:58:0;;;6351:21:1;6408:2;6388:18;;;6381:30;6447:34;6427:18;;;6420:62;-1:-1:-1;;;6498:18:1;;;6491:32;6540:19;;40666:58:0;6167:398:1;40666:58:0;9118:10;-1:-1:-1;;;;;40759:21:0;;;;:62;;-1:-1:-1;40784:37:0;40801:5;9118:10;41666:164;:::i;40784:37::-;40737:169;;;;-1:-1:-1;;;40737:169:0;;6772:2:1;40737:169:0;;;6754:21:1;6811:2;6791:18;;;6784:30;6850:34;6830:18;;;6823:62;6921:27;6901:18;;;6894:55;6966:19;;40737:169:0;6570:421:1;40737:169:0;40919:28;40928:2;40932:7;40941:5;40919:8;:28::i;:::-;40604:351;40542:413;;:::o;41897:170::-;42031:28;42041:4;42047:2;42051:7;42031:9;:28::i;36494:1007::-;36583:7;36619:16;36629:5;36619:9;:16::i;:::-;36611:5;:24;36603:71;;;;-1:-1:-1;;;36603:71:0;;7198:2:1;36603:71:0;;;7180:21:1;7237:2;7217:18;;;7210:30;7276:34;7256:18;;;7249:62;-1:-1:-1;;;7327:18:1;;;7320:32;7369:19;;36603:71:0;6996:398:1;36603:71:0;36685:22;35910:12;;;36685:22;;36948:466;36968:14;36964:1;:18;36948:466;;;37008:31;37042:14;;;:11;:14;;;;;;;;;37008:48;;;;;;;;;-1:-1:-1;;;;;37008:48:0;;;;;-1:-1:-1;;;37008:48:0;;;;;;;;;;;;37079:28;37075:111;;37152:14;;;-1:-1:-1;37075:111:0;37229:5;-1:-1:-1;;;;;37208:26:0;:17;-1:-1:-1;;;;;37208:26:0;;37204:195;;;37278:5;37263:11;:20;37259:85;;;-1:-1:-1;37319:1:0;-1:-1:-1;37312:8:0;;-1:-1:-1;;;37312:8:0;37259:85;37366:13;;;;;37204:195;-1:-1:-1;36984:3:0;;36948:466;;;-1:-1:-1;37437:56:0;;-1:-1:-1;;;37437:56:0;;7601:2:1;37437:56:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:44;7784:19;;37437:56:0;7399:410:1;52268:176:0;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;5288:1:::1;5886:7;;:19;;5878:63;;;::::0;-1:-1:-1;;;5878:63:0;;8377:2:1;5878:63:0::1;::::0;::::1;8359:21:1::0;8416:2;8396:18;;;8389:30;8455:33;8435:18;;;8428:61;8506:18;;5878:63:0::1;8175:355:1::0;5878:63:0::1;5288:1;6019:7;:18:::0;52346:49:::2;::::0;52328:12:::2;::::0;52346:10:::2;::::0;52369:21:::2;::::0;52328:12;52346:49;52328:12;52346:49;52369:21;52346:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52327:68;;;52410:7;52402:36;;;::::0;-1:-1:-1;;;52402:36:0;;8947:2:1;52402:36:0::2;::::0;::::2;8929:21:1::0;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:46;9061:18;;52402:36:0::2;8745:340:1::0;52402:36:0::2;-1:-1:-1::0;5244:1:0::1;6198:7;:22:::0;52268:176::o;42138:185::-;42276:39;42293:4;42299:2;42303:7;42276:39;;;;;;;;;;;;:16;:39::i;36007:187::-;36074:7;35910:12;;36102:5;:21;36094:69;;;;-1:-1:-1;;;36094:69:0;;9292:2:1;36094:69:0;;;9274:21:1;9331:2;9311:18;;;9304:30;9370:34;9350:18;;;9343:62;-1:-1:-1;;;9421:18:1;;;9414:33;9464:19;;36094:69:0;9090:399:1;36094:69:0;-1:-1:-1;36181:5:0;36007:187::o;51868:96::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;51940:18:::1;:7;51950:8:::0;;51940:18:::1;:::i;39268:124::-:0;39332:7;39359:20;39371:7;39359:11;:20::i;:::-;:25;;39268:124;-1:-1:-1;;39268:124:0:o;50932:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38009:221::-;38073:7;-1:-1:-1;;;;;38101:19:0;;38093:75;;;;-1:-1:-1;;;38093:75:0;;9696:2:1;38093:75:0;;;9678:21:1;9735:2;9715:18;;;9708:30;9774:34;9754:18;;;9747:62;-1:-1:-1;;;9825:18:1;;;9818:41;9876:19;;38093:75:0;9494:407:1;38093:75:0;-1:-1:-1;;;;;;38194:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38194:27:0;;38009:221::o;10965:103::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;11030:30:::1;11057:1;11030:18;:30::i;:::-;10965:103::o:0;51664:85::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;51732:11:::1;::::0;;-1:-1:-1;;51717:26:0;::::1;51732:11;::::0;;::::1;51731:12;51717:26;::::0;;51664:85::o;51486:172::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;51588:9:::1;::::0;:13:::1;::::0;51600:1:::1;51588:13;:::i;:::-;51579:6;51563:13;35883:7:::0;35910:12;;35830:100;51563:13:::1;:22;;;;:::i;:::-;:38;51555:59;;;::::0;-1:-1:-1;;;51555:59:0;;10373:2:1;51555:59:0::1;::::0;::::1;10355:21:1::0;10412:1;10392:18;;;10385:29;-1:-1:-1;;;10430:18:1;;;10423:39;10479:18;;51555:59:0::1;10171:332:1::0;51555:59:0::1;51623:29;51633:10;51645:6;51623:9;:29::i;:::-;51486:172:::0;:::o;51970:82::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;52032:5:::1;:14:::0;51970:82::o;39628:104::-;39684:13;39717:7;39710:14;;;;;:::i;51019:461::-;51084:11;;;;51076:61;;;;-1:-1:-1;;;51076:61:0;;10710:2:1;51076:61:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:35;10884:19;;51076:61:0;10508:401:1;51076:61:0;51188:12;;51179:6;51152:24;51165:10;51152:12;:24::i;:::-;:33;;;;:::i;:::-;:48;51144:84;;;;-1:-1:-1;;;51144:84:0;;11116:2:1;51144:84:0;;;11098:21:1;11155:2;11135:18;;;11128:30;-1:-1:-1;;;11174:18:1;;;11167:52;11236:18;;51144:84:0;10914:346:1;51144:84:0;51268:9;;:13;;51280:1;51268:13;:::i;:::-;51259:6;51243:13;35883:7;35910:12;;35830:100;51243:13;:22;;;;:::i;:::-;:38;51235:62;;;;-1:-1:-1;;;51235:62:0;;11467:2:1;51235:62:0;;;11449:21:1;11506:2;11486:18;;;11479:30;-1:-1:-1;;;11525:18:1;;;11518:42;11577:18;;51235:62:0;11265:336:1;51235:62:0;51334:5;;51325:14;;:6;:14;:::i;:::-;51312:9;:27;;51304:67;;;;-1:-1:-1;;;51304:67:0;;11981:2:1;51304:67:0;;;11963:21:1;12020:2;12000:18;;;11993:30;12059;12039:18;;;12032:58;12107:18;;51304:67:0;11779:352:1;51304:67:0;51395:8;;:12;;51406:1;51395:12;:::i;:::-;51386:6;:21;51378:52;;;;-1:-1:-1;;;51378:52:0;;12338:2:1;51378:52:0;;;12320:21:1;12377:2;12357:18;;;12350:30;-1:-1:-1;;;12396:18:1;;;12389:48;12454:18;;51378:52:0;12136:342:1;41307:288:0;-1:-1:-1;;;;;41402:24:0;;9118:10;41402:24;;41394:63;;;;-1:-1:-1;;;41394:63:0;;12685:2:1;41394:63:0;;;12667:21:1;12724:2;12704:18;;;12697:30;12763:28;12743:18;;;12736:56;12809:18;;41394:63:0;12483:350:1;41394:63:0;9118:10;41470:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41470:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41470:53:0;;;;;;;;;;41539:48;;540:41:1;;;41470:42:0;;9118:10;41539:48;;513:18:1;41539:48:0;;;;;;;41307:288;;:::o;42394:355::-;42553:28;42563:4;42569:2;42573:7;42553:9;:28::i;:::-;42614:48;42637:4;42643:2;42647:7;42656:5;42614:22;:48::i;:::-;42592:149;;;;-1:-1:-1;;;42592:149:0;;;;;;;:::i;:::-;42394:355;;;;:::o;52060:94::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;52128:8:::1;:20:::0;52060:94::o;39803:335::-;39876:13;39910:16;39918:7;43061:4;43095:12;-1:-1:-1;43085:22:0;43004:111;39910:16;39902:76;;;;-1:-1:-1;;;39902:76:0;;13460:2:1;39902:76:0;;;13442:21:1;13499:2;13479:18;;;13472:30;13538:34;13518:18;;;13511:62;-1:-1:-1;;;13589:18:1;;;13582:45;13644:19;;39902:76:0;13258:411:1;39902:76:0;39991:21;40015:10;:8;:10::i;:::-;39991:34;;40049:7;40043:21;40068:1;40043:26;;:87;;;;;;;;;;;;;;;;;40096:7;40105:18;:7;:16;:18::i;:::-;40079:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40043:87;40036:94;39803:335;-1:-1:-1;;;39803:335:0:o;51755:107::-;51813:7;51836:20;51850:5;51836:13;:20::i;11223:201::-;10387:6;;-1:-1:-1;;;;;10387:6:0;9118:10;10534:23;10526:68;;;;-1:-1:-1;;;10526:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11312:22:0;::::1;11304:73;;;::::0;-1:-1:-1;;;11304:73:0;;14351:2:1;11304:73:0::1;::::0;::::1;14333:21:1::0;14390:2;14370:18;;;14363:30;14429:34;14409:18;;;14402:62;-1:-1:-1;;;14480:18:1;;;14473:36;14526:19;;11304:73:0::1;14149:402:1::0;11304:73:0::1;11388:28;11407:8;11388:18;:28::i;47924:196::-:0;48039:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48039:29:0;-1:-1:-1;;;;;48039:29:0;;;;;;;;;48084:28;;48039:24;;48084:28;;;;;;;47924:196;;;:::o;45804:2002::-;45919:35;45957:20;45969:7;45957:11;:20::i;:::-;46032:18;;45919:58;;-1:-1:-1;45990:22:0;;-1:-1:-1;;;;;46016:34:0;9118:10;-1:-1:-1;;;;;46016:34:0;;:87;;;-1:-1:-1;9118:10:0;46067:20;46079:7;46067:11;:20::i;:::-;-1:-1:-1;;;;;46067:36:0;;46016:87;:154;;;-1:-1:-1;46137:18:0;;46120:50;;9118:10;41666:164;:::i;46120:50::-;45990:181;;46192:17;46184:80;;;;-1:-1:-1;;;46184:80:0;;14758:2:1;46184:80:0;;;14740:21:1;14797:2;14777:18;;;14770:30;14836:34;14816:18;;;14809:62;-1:-1:-1;;;14887:18:1;;;14880:48;14945:19;;46184:80:0;14556:414:1;46184:80:0;46307:4;-1:-1:-1;;;;;46285:26:0;:13;:18;;;-1:-1:-1;;;;;46285:26:0;;46277:77;;;;-1:-1:-1;;;46277:77:0;;15177:2:1;46277:77:0;;;15159:21:1;15216:2;15196:18;;;15189:30;15255:34;15235:18;;;15228:62;-1:-1:-1;;;15306:18:1;;;15299:36;15352:19;;46277:77:0;14975:402:1;46277:77:0;-1:-1:-1;;;;;46373:16:0;;46365:66;;;;-1:-1:-1;;;46365:66:0;;15584:2:1;46365:66:0;;;15566:21:1;15623:2;15603:18;;;15596:30;15662:34;15642:18;;;15635:62;-1:-1:-1;;;15713:18:1;;;15706:35;15758:19;;46365:66:0;15382:401:1;46365:66:0;46552:49;46569:1;46573:7;46582:13;:18;;;46552:8;:49::i;:::-;-1:-1:-1;;;;;46897:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46897:31:0;;;-1:-1:-1;;;;;46897:31:0;;;-1:-1:-1;;46897:31:0;;;;;;;46943:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46943:29:0;;;;;;;;;;;;;46989:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47034:61:0;;;;-1:-1:-1;;;47079:15:0;47034:61;;;;;;47369:11;;;47399:24;;;;;:29;47369:11;;47399:29;47395:295;;47467:20;47475:11;43061:4;43095:12;-1:-1:-1;43085:22:0;43004:111;47467:20;47463:212;;;47544:18;;;47512:24;;;:11;:24;;;;;;;;:50;;47627:28;;;;47585:70;;-1:-1:-1;;;47585:70:0;-1:-1:-1;;;;;;47585:70:0;;;-1:-1:-1;;;;;47512:50:0;;;47585:70;;;;;;;47463:212;46872:829;47737:7;47733:2;-1:-1:-1;;;;;47718:27:0;47727:4;-1:-1:-1;;;;;47718:27:0;;;;;;;;;;;47756:42;45908:1898;;45804:2002;;;:::o;38669:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38772:16:0;38780:7;43061:4;43095:12;-1:-1:-1;43085:22:0;43004:111;38772:16;38764:71;;;;-1:-1:-1;;;38764:71:0;;15990:2:1;38764:71:0;;;15972:21:1;16029:2;16009:18;;;16002:30;16068:34;16048:18;;;16041:62;-1:-1:-1;;;16119:18:1;;;16112:40;16169:19;;38764:71:0;15788:406:1;38764:71:0;38893:7;38873:245;38940:31;38974:17;;;:11;:17;;;;;;;;;38940:51;;;;;;;;;-1:-1:-1;;;;;38940:51:0;;;;;-1:-1:-1;;;38940:51:0;;;;;;;;;;;;39014:28;39010:93;;39074:9;38669:537;-1:-1:-1;;;38669:537:0:o;39010:93::-;-1:-1:-1;;;38913:6:0;38873:245;;11584:191;11677:6;;;-1:-1:-1;;;;;11694:17:0;;;-1:-1:-1;;;;;;11694:17:0;;;;;;;11727:40;;11677:6;;;11694:17;11677:6;;11727:40;;11658:16;;11727:40;11647:128;11584:191;:::o;43123:104::-;43192:27;43202:2;43206:8;43192:27;;;;;;;;;;;;:9;:27::i;:::-;43123:104;;:::o;48685:804::-;48840:4;-1:-1:-1;;;;;48861:13:0;;13310:19;:23;48857:625;;48897:72;;-1:-1:-1;;;48897:72:0;;-1:-1:-1;;;;;48897:36:0;;;;;:72;;9118:10;;48948:4;;48954:7;;48963:5;;48897:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48897:72:0;;;;;;;;-1:-1:-1;;48897:72:0;;;;;;;;;;;;:::i;:::-;;;48893:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49143:13:0;;49139:273;;49186:61;;-1:-1:-1;;;49186:61:0;;;;;;;:::i;49139:273::-;49362:6;49356:13;49347:6;49343:2;49339:15;49332:38;48893:534;-1:-1:-1;;;;;;49020:55:0;-1:-1:-1;;;49020:55:0;;-1:-1:-1;49013:62:0;;48857:625;-1:-1:-1;49466:4:0;48857:625;48685:804;;;;;;:::o;52160:102::-;52220:13;52249:7;52242:14;;;;;:::i;6600:723::-;6656:13;6877:10;6873:53;;-1:-1:-1;;6904:10:0;;;;;;;;;;;;-1:-1:-1;;;6904:10:0;;;;;6600:723::o;6873:53::-;6951:5;6936:12;6992:78;6999:9;;6992:78;;7025:8;;;;:::i;:::-;;-1:-1:-1;7048:10:0;;-1:-1:-1;7056:2:0;7048:10;;:::i;:::-;;;6992:78;;;7080:19;7112:6;7102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7102:17:0;;7080:39;;7130:154;7137:10;;7130:154;;7164:11;7174:1;7164:11;;:::i;:::-;;-1:-1:-1;7233:10:0;7241:2;7233:5;:10;:::i;:::-;7220:24;;:2;:24;:::i;:::-;7207:39;;7190:6;7197;7190:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7190:56:0;;;;;;;;-1:-1:-1;7261:11:0;7270:2;7261:11;;:::i;:::-;;;7130:154;;38238:229;38299:7;-1:-1:-1;;;;;38327:19:0;;38319:81;;;;-1:-1:-1;;;38319:81:0;;18341:2:1;38319:81:0;;;18323:21:1;18380:2;18360:18;;;18353:30;18419:34;18399:18;;;18392:62;-1:-1:-1;;;18470:18:1;;;18463:47;18527:19;;38319:81:0;18139:413:1;38319:81:0;-1:-1:-1;;;;;;38426:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38426:32:0;;-1:-1:-1;;;;;38426:32:0;;38238:229::o;43590:163::-;43713:32;43719:2;43723:8;43733:5;43740:4;44151:20;44174:12;-1:-1:-1;;;;;44205:16:0;;44197:62;;;;-1:-1:-1;;;44197:62:0;;18759:2:1;44197:62:0;;;18741:21:1;18798:2;18778:18;;;18771:30;18837:34;18817:18;;;18810:62;-1:-1:-1;;;18888:18:1;;;18881:31;18929:19;;44197:62:0;18557:397:1;44197:62:0;44278:13;44270:66;;;;-1:-1:-1;;;44270:66:0;;19161:2:1;44270:66:0;;;19143:21:1;19200:2;19180:18;;;19173:30;19239:34;19219:18;;;19212:62;-1:-1:-1;;;19290:18:1;;;19283:38;19338:19;;44270:66:0;18959:404:1;44270:66:0;-1:-1:-1;;;;;44688:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44688:45:0;;-1:-1:-1;;;;;44688:45:0;;;;;;;;;;44748:50;;;;;;;;;;;;;;44815:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44865:66:0;;;;-1:-1:-1;;;44915:15:0;44865:66;;;;;;;44815:25;;45000:415;45020:8;45016:1;:12;45000:415;;;45059:38;;45084:12;;-1:-1:-1;;;;;45059:38:0;;;45076:1;;45059:38;;45076:1;;45059:38;45120:4;45116:249;;;45183:59;45214:1;45218:2;45222:12;45236:5;45183:22;:59::i;:::-;45149:196;;;;-1:-1:-1;;;45149:196:0;;;;;;;:::i;:::-;45385:14;;;;;45030:3;45000:415;;;-1:-1:-1;45431:12:0;:27;45482:60;42394:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;7814:356::-;8016:2;7998:21;;;8035:18;;;8028:30;8094:34;8089:2;8074:18;;8067:62;8161:2;8146:18;;7814:356::o;9906:127::-;9967:10;9962:3;9958:20;9955:1;9948:31;9998:4;9995:1;9988:15;10022:4;10019:1;10012:15;10038:128;10078:3;10109:1;10105:6;10102:1;10099:13;10096:39;;;10115:18;;:::i;:::-;-1:-1:-1;10151:9:1;;10038:128::o;11606:168::-;11646:7;11712:1;11708;11704:6;11700:14;11697:1;11694:21;11689:1;11682:9;11675:17;11671:45;11668:71;;;11719:18;;:::i;:::-;-1:-1:-1;11759:9:1;;11606:168::o;12838:415::-;13040:2;13022:21;;;13079:2;13059:18;;;13052:30;13118:34;13113:2;13098:18;;13091:62;-1:-1:-1;;;13184:2:1;13169:18;;13162:49;13243:3;13228:19;;12838:415::o;13674:470::-;13853:3;13891:6;13885:13;13907:53;13953:6;13948:3;13941:4;13933:6;13929:17;13907:53;:::i;:::-;14023:13;;13982:16;;;;14045:57;14023:13;13982:16;14079:4;14067:17;;14045:57;:::i;:::-;14118:20;;13674:470;-1:-1:-1;;;;13674:470:1:o;16615:489::-;-1:-1:-1;;;;;16884:15:1;;;16866:34;;16936:15;;16931:2;16916:18;;16909:43;16983:2;16968:18;;16961:34;;;17031:3;17026:2;17011:18;;17004:31;;;16809:4;;17052:46;;17078:19;;17070:6;17052:46;:::i;:::-;17044:54;16615:489;-1:-1:-1;;;;;;16615:489:1:o;17109:249::-;17178:6;17231:2;17219:9;17210:7;17206:23;17202:32;17199:52;;;17247:1;17244;17237:12;17199:52;17279:9;17273:16;17298:30;17322:5;17298:30;:::i;17363:135::-;17402:3;-1:-1:-1;;17423:17:1;;17420:43;;;17443:18;;:::i;:::-;-1:-1:-1;17490:1:1;17479:13;;17363:135::o;17503:127::-;17564:10;17559:3;17555:20;17552:1;17545:31;17595:4;17592:1;17585:15;17619:4;17616:1;17609:15;17635:120;17675:1;17701;17691:35;;17706:18;;:::i;:::-;-1:-1:-1;17740:9:1;;17635:120::o;17760:125::-;17800:4;17828:1;17825;17822:8;17819:34;;;17833:18;;:::i;:::-;-1:-1:-1;17870:9:1;;17760:125::o;17890:112::-;17922:1;17948;17938:35;;17953:18;;:::i;:::-;-1:-1:-1;17987:9:1;;17890:112::o;18007:127::-;18068:10;18063:3;18059:20;18056:1;18049:31;18099:4;18096:1;18089:15;18123:4;18120:1;18113:15

Swarm Source

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