ETH Price: $3,501.17 (+3.86%)
Gas: 4 Gwei

Token

TrippinAPE (TAPE)
 

Overview

Max Total Supply

512 TAPE

Holders

392

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAPE
0xd63a869444f5460eaaf1d91eb96f3410161f3885
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:
TrippinAPE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

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


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

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


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

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

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

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

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

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

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

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


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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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


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



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



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








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}




contract TrippinAPE is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public constant FREE_SUPPLY = 1616;
    Stage public stage = Stage.Start;
    string public baseURI;
    string internal baseExtension = ".json";
    uint256 freeSupply;
    enum Stage {
        Pause,
        Start
    }

    event StageChanged(Stage from, Stage to);

    constructor() ERC721A("TrippinAPE", "TAPE") {}

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "not exist");
        string memory currentBaseURI = _baseURI();
        return (
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : ""
        );
    }

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

    function setStage(Stage _stage) external onlyOwner {
        require(stage != _stage, "invalid stage.");
        Stage prevStage = stage;
        stage = _stage;
        emit StageChanged(prevStage, stage);
    }


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

    function freeMint() external {
        require(stage == Stage.Start, "mint is pause.");
        require(freeSupply < FREE_SUPPLY, "free mint complete.");
        freeSupply += 1;
        _safeMint(msg.sender, 1);
    }

    function setBaseExtension(string memory _extension) external onlyOwner {
        baseExtension = _extension;
    }

    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No money");
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum TrippinAPE.Stage","name":"from","type":"uint8"},{"indexed":false,"internalType":"enum TrippinAPE.Stage","name":"to","type":"uint8"}],"name":"StageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TrippinAPE.Stage","name":"_stage","type":"uint8"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"enum TrippinAPE.Stage","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805460ff60a01b1916600160a01b17905560c06040526005608081905264173539b7b760d91b60a09081526200003b91600a919062000118565b503480156200004957600080fd5b50604080518082018252600a8152695472697070696e41504560b01b6020808301918252835180850190945260048452635441504560e01b908401528151919291620000989160029162000118565b508051620000ae90600390602084019062000118565b50506000805550620000c033620000c6565b620001fb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b611a8f806200020b6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b88d4fde11610097578063ce3cd99711610071578063ce3cd99714610306578063da3ef23f14610319578063e985e9c51461032c578063f2fde38b1461033f57600080fd5b8063b88d4fde146102bf578063c040e6b8146102d2578063c87b56dd146102f357600080fd5b8063715018a61461027a578063853828b6146102825780638da5cb5b1461028a57806395d89b411461029b5780639858cf19146102a3578063a22cb465146102ac57600080fd5b806342842e0e1161013057806342842e0e1461021e57806355f804b3146102315780635b70ea9f146102445780636352211e1461024c5780636c0360eb1461025f57806370a082311461026757600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806323b872dd1461020b575b600080fd5b61018b61018636600461167f565b610352565b60405190151581526020015b60405180910390f35b6101a86103a4565b60405161019791906118b4565b6101c86101c3366004611723565b610436565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611655565b61047a565b005b600154600054035b604051908152602001610197565b6101f3610219366004611561565b610508565b6101f361022c366004611561565b610513565b6101f361023f3660046116da565b61052e565b6101f3610578565b6101c861025a366004611723565b610645565b6101a8610657565b6101fd610275366004611513565b6106e5565b6101f3610734565b6101f3610768565b6008546001600160a01b03166101c8565b6101a8610855565b6101fd61065081565b6101f36102ba366004611619565b610864565b6101f36102cd36600461159d565b6108fa565b6008546102e690600160a01b900460ff1681565b604051610197919061188b565b6101a8610301366004611723565b61094b565b6101f36103143660046116b9565b6109ed565b6101f36103273660046116da565b610b05565b61018b61033a36600461152e565b610b42565b6101f361034d366004611513565b610b70565b60006001600160e01b031982166380ac58cd60e01b148061038357506001600160e01b03198216635b5e139f60e01b145b8061039e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103b39061196b565b80601f01602080910402602001604051908101604052809291908181526020018280546103df9061196b565b801561042c5780601f106104015761010080835404028352916020019161042c565b820191906000526020600020905b81548152906001019060200180831161040f57829003601f168201915b5050505050905090565b600061044182610c0b565b61045e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048582610645565b9050806001600160a01b0316836001600160a01b031614156104ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104da57506104d88133610b42565b155b156104f8576040516367d9dca160e11b815260040160405180910390fd5b610503838383610c36565b505050565b610503838383610c92565b610503838383604051806020016040528060008152506108fa565b6008546001600160a01b031633146105615760405162461bcd60e51b8152600401610558906118c7565b60405180910390fd5b80516105749060099060208401906113e8565b5050565b6001600854600160a01b900460ff16600181111561059857610598611a01565b146105d65760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a1034b9903830bab9b29760911b6044820152606401610558565b610650600b541061061f5760405162461bcd60e51b8152602060048201526013602482015272333932b29036b4b73a1031b7b6b83632ba329760691b6044820152606401610558565b6001600b600082825461063291906118fc565b909155506106439050336001610e82565b565b600061065082610e9c565b5192915050565b600980546106649061196b565b80601f01602080910402602001604051908101604052809291908181526020018280546106909061196b565b80156106dd5780601f106106b2576101008083540402835291602001916106dd565b820191906000526020600020905b8154815290600101906020018083116106c057829003601f168201915b505050505081565b60006001600160a01b03821661070e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461075e5760405162461bcd60e51b8152600401610558906118c7565b6106436000610fb8565b6008546001600160a01b031633146107925760405162461bcd60e51b8152600401610558906118c7565b47806107cb5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610558565b604051600090339083908381818185875af1925050503d806000811461080d576040519150601f19603f3d011682016040523d82523d6000602084013e610812565b606091505b50509050806105745760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610558565b6060600380546103b39061196b565b6001600160a01b03821633141561088e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610905848484610c92565b6001600160a01b0383163b1515801561092757506109258484848461100a565b155b15610945576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095682610c0b565b61098e5760405162461bcd60e51b81526020600482015260096024820152681b9bdd08195e1a5cdd60ba1b6044820152606401610558565b6000610998611102565b905060008151116109b857604051806020016040528060008152506109e6565b806109c284611111565b600a6040516020016109d69392919061178a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a175760405162461bcd60e51b8152600401610558906118c7565b806001811115610a2957610a29611a01565b600854600160a01b900460ff166001811115610a4757610a47611a01565b1415610a865760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21039ba30b3b29760911b6044820152606401610558565b60088054600160a01b80820460ff16928492909160ff60a01b1990911690836001811115610ab657610ab6611a01565b02179055506008546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610af9918491600160a01b900460ff1690611899565b60405180910390a15050565b6008546001600160a01b03163314610b2f5760405162461bcd60e51b8152600401610558906118c7565b805161057490600a9060208401906113e8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610558906118c7565b6001600160a01b038116610bff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610558565b610c0881610fb8565b50565b600080548210801561039e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c9d82610e9c565b9050836001600160a01b031681600001516001600160a01b031614610cd45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cf25750610cf28533610b42565b80610d0d575033610d0284610436565b6001600160a01b0316145b905080610d2d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d5457604051633a954ecd60e21b815260040160405180910390fd5b610d6060008487610c36565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e36576000548214610e36578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61057482826040518060200160405280600081525061120f565b604080516060810182526000808252602082018190529181019190915281600054811015610f9f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610f9d5780516001600160a01b031615610f33579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610f98579392505050565b610f33565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061103f90339089908890889060040161184e565b602060405180830381600087803b15801561105957600080fd5b505af1925050508015611089575060408051601f3d908101601f191682019092526110869181019061169c565b60015b6110e4573d8080156110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b5080516110dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103b39061196b565b6060816111355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561115f5780611149816119a6565b91506111589050600a83611914565b9150611139565b60008167ffffffffffffffff81111561117a5761117a611a2d565b6040519080825280601f01601f1916602001820160405280156111a4576020820181803683370190505b5090505b84156110fa576111b9600183611928565b91506111c6600a866119c1565b6111d19060306118fc565b60f81b8183815181106111e6576111e6611a17565b60200101906001600160f81b031916908160001a905350611208600a86611914565b94506111a8565b61050383838360016000546001600160a01b03851661124057604051622e076360e81b815260040160405180910390fd5b8361125e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561131057506001600160a01b0387163b15155b15611399575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611361600088848060010195508861100a565b61137e576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561131657826000541461139457600080fd5b6113df565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561139a575b50600055610e7b565b8280546113f49061196b565b90600052602060002090601f016020900481019282611416576000855561145c565b82601f1061142f57805160ff191683800117855561145c565b8280016001018555821561145c579182015b8281111561145c578251825591602001919060010190611441565b5061146892915061146c565b5090565b5b80821115611468576000815560010161146d565b600067ffffffffffffffff8084111561149c5761149c611a2d565b604051601f8501601f19908116603f011681019082821181831017156114c4576114c4611a2d565b816040528093508581528686860111156114dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461150e57600080fd5b919050565b60006020828403121561152557600080fd5b6109e6826114f7565b6000806040838503121561154157600080fd5b61154a836114f7565b9150611558602084016114f7565b90509250929050565b60008060006060848603121561157657600080fd5b61157f846114f7565b925061158d602085016114f7565b9150604084013590509250925092565b600080600080608085870312156115b357600080fd5b6115bc856114f7565b93506115ca602086016114f7565b925060408501359150606085013567ffffffffffffffff8111156115ed57600080fd5b8501601f810187136115fe57600080fd5b61160d87823560208401611481565b91505092959194509250565b6000806040838503121561162c57600080fd5b611635836114f7565b91506020830135801515811461164a57600080fd5b809150509250929050565b6000806040838503121561166857600080fd5b611671836114f7565b946020939093013593505050565b60006020828403121561169157600080fd5b81356109e681611a43565b6000602082840312156116ae57600080fd5b81516109e681611a43565b6000602082840312156116cb57600080fd5b8135600281106109e657600080fd5b6000602082840312156116ec57600080fd5b813567ffffffffffffffff81111561170357600080fd5b8201601f8101841361171457600080fd5b6110fa84823560208401611481565b60006020828403121561173557600080fd5b5035919050565b6000815180845261175481602086016020860161193f565b601f01601f19169290920160200192915050565b6002811061178657634e487b7160e01b600052602160045260246000fd5b9052565b60008451602061179d8285838a0161193f565b8551918401916117b08184848a0161193f565b8554920191600090600181811c90808316806117cd57607f831692505b8583108114156117eb57634e487b7160e01b85526022600452602485fd5b8080156117ff57600181146118105761183d565b60ff1985168852838801955061183d565b60008b81526020902060005b858110156118355781548a82015290840190880161181c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118819083018461173c565b9695505050505050565b6020810161039e8284611768565b604081016118a78285611768565b6109e66020830184611768565b6020815260006109e6602083018461173c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561190f5761190f6119d5565b500190565b600082611923576119236119eb565b500490565b60008282101561193a5761193a6119d5565b500390565b60005b8381101561195a578181015183820152602001611942565b838111156109455750506000910152565b600181811c9082168061197f57607f821691505b602082108114156119a057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119ba576119ba6119d5565b5060010190565b6000826119d0576119d06119eb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0857600080fdfea2646970667358221220debcaf7dbfb14e0224d398328ddf1c418399a501d5fd4dfef6e6d0ce0120343964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b88d4fde11610097578063ce3cd99711610071578063ce3cd99714610306578063da3ef23f14610319578063e985e9c51461032c578063f2fde38b1461033f57600080fd5b8063b88d4fde146102bf578063c040e6b8146102d2578063c87b56dd146102f357600080fd5b8063715018a61461027a578063853828b6146102825780638da5cb5b1461028a57806395d89b411461029b5780639858cf19146102a3578063a22cb465146102ac57600080fd5b806342842e0e1161013057806342842e0e1461021e57806355f804b3146102315780635b70ea9f146102445780636352211e1461024c5780636c0360eb1461025f57806370a082311461026757600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f557806323b872dd1461020b575b600080fd5b61018b61018636600461167f565b610352565b60405190151581526020015b60405180910390f35b6101a86103a4565b60405161019791906118b4565b6101c86101c3366004611723565b610436565b6040516001600160a01b039091168152602001610197565b6101f36101ee366004611655565b61047a565b005b600154600054035b604051908152602001610197565b6101f3610219366004611561565b610508565b6101f361022c366004611561565b610513565b6101f361023f3660046116da565b61052e565b6101f3610578565b6101c861025a366004611723565b610645565b6101a8610657565b6101fd610275366004611513565b6106e5565b6101f3610734565b6101f3610768565b6008546001600160a01b03166101c8565b6101a8610855565b6101fd61065081565b6101f36102ba366004611619565b610864565b6101f36102cd36600461159d565b6108fa565b6008546102e690600160a01b900460ff1681565b604051610197919061188b565b6101a8610301366004611723565b61094b565b6101f36103143660046116b9565b6109ed565b6101f36103273660046116da565b610b05565b61018b61033a36600461152e565b610b42565b6101f361034d366004611513565b610b70565b60006001600160e01b031982166380ac58cd60e01b148061038357506001600160e01b03198216635b5e139f60e01b145b8061039e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103b39061196b565b80601f01602080910402602001604051908101604052809291908181526020018280546103df9061196b565b801561042c5780601f106104015761010080835404028352916020019161042c565b820191906000526020600020905b81548152906001019060200180831161040f57829003601f168201915b5050505050905090565b600061044182610c0b565b61045e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048582610645565b9050806001600160a01b0316836001600160a01b031614156104ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104da57506104d88133610b42565b155b156104f8576040516367d9dca160e11b815260040160405180910390fd5b610503838383610c36565b505050565b610503838383610c92565b610503838383604051806020016040528060008152506108fa565b6008546001600160a01b031633146105615760405162461bcd60e51b8152600401610558906118c7565b60405180910390fd5b80516105749060099060208401906113e8565b5050565b6001600854600160a01b900460ff16600181111561059857610598611a01565b146105d65760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a1034b9903830bab9b29760911b6044820152606401610558565b610650600b541061061f5760405162461bcd60e51b8152602060048201526013602482015272333932b29036b4b73a1031b7b6b83632ba329760691b6044820152606401610558565b6001600b600082825461063291906118fc565b909155506106439050336001610e82565b565b600061065082610e9c565b5192915050565b600980546106649061196b565b80601f01602080910402602001604051908101604052809291908181526020018280546106909061196b565b80156106dd5780601f106106b2576101008083540402835291602001916106dd565b820191906000526020600020905b8154815290600101906020018083116106c057829003601f168201915b505050505081565b60006001600160a01b03821661070e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461075e5760405162461bcd60e51b8152600401610558906118c7565b6106436000610fb8565b6008546001600160a01b031633146107925760405162461bcd60e51b8152600401610558906118c7565b47806107cb5760405162461bcd60e51b81526020600482015260086024820152674e6f206d6f6e657960c01b6044820152606401610558565b604051600090339083908381818185875af1925050503d806000811461080d576040519150601f19603f3d011682016040523d82523d6000602084013e610812565b606091505b50509050806105745760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610558565b6060600380546103b39061196b565b6001600160a01b03821633141561088e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610905848484610c92565b6001600160a01b0383163b1515801561092757506109258484848461100a565b155b15610945576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095682610c0b565b61098e5760405162461bcd60e51b81526020600482015260096024820152681b9bdd08195e1a5cdd60ba1b6044820152606401610558565b6000610998611102565b905060008151116109b857604051806020016040528060008152506109e6565b806109c284611111565b600a6040516020016109d69392919061178a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a175760405162461bcd60e51b8152600401610558906118c7565b806001811115610a2957610a29611a01565b600854600160a01b900460ff166001811115610a4757610a47611a01565b1415610a865760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21039ba30b3b29760911b6044820152606401610558565b60088054600160a01b80820460ff16928492909160ff60a01b1990911690836001811115610ab657610ab6611a01565b02179055506008546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610af9918491600160a01b900460ff1690611899565b60405180910390a15050565b6008546001600160a01b03163314610b2f5760405162461bcd60e51b8152600401610558906118c7565b805161057490600a9060208401906113e8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610558906118c7565b6001600160a01b038116610bff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610558565b610c0881610fb8565b50565b600080548210801561039e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c9d82610e9c565b9050836001600160a01b031681600001516001600160a01b031614610cd45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cf25750610cf28533610b42565b80610d0d575033610d0284610436565b6001600160a01b0316145b905080610d2d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d5457604051633a954ecd60e21b815260040160405180910390fd5b610d6060008487610c36565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e36576000548214610e36578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61057482826040518060200160405280600081525061120f565b604080516060810182526000808252602082018190529181019190915281600054811015610f9f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610f9d5780516001600160a01b031615610f33579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610f98579392505050565b610f33565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061103f90339089908890889060040161184e565b602060405180830381600087803b15801561105957600080fd5b505af1925050508015611089575060408051601f3d908101601f191682019092526110869181019061169c565b60015b6110e4573d8080156110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b5080516110dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103b39061196b565b6060816111355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561115f5780611149816119a6565b91506111589050600a83611914565b9150611139565b60008167ffffffffffffffff81111561117a5761117a611a2d565b6040519080825280601f01601f1916602001820160405280156111a4576020820181803683370190505b5090505b84156110fa576111b9600183611928565b91506111c6600a866119c1565b6111d19060306118fc565b60f81b8183815181106111e6576111e6611a17565b60200101906001600160f81b031916908160001a905350611208600a86611914565b94506111a8565b61050383838360016000546001600160a01b03851661124057604051622e076360e81b815260040160405180910390fd5b8361125e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561131057506001600160a01b0387163b15155b15611399575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611361600088848060010195508861100a565b61137e576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561131657826000541461139457600080fd5b6113df565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561139a575b50600055610e7b565b8280546113f49061196b565b90600052602060002090601f016020900481019282611416576000855561145c565b82601f1061142f57805160ff191683800117855561145c565b8280016001018555821561145c579182015b8281111561145c578251825591602001919060010190611441565b5061146892915061146c565b5090565b5b80821115611468576000815560010161146d565b600067ffffffffffffffff8084111561149c5761149c611a2d565b604051601f8501601f19908116603f011681019082821181831017156114c4576114c4611a2d565b816040528093508581528686860111156114dd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461150e57600080fd5b919050565b60006020828403121561152557600080fd5b6109e6826114f7565b6000806040838503121561154157600080fd5b61154a836114f7565b9150611558602084016114f7565b90509250929050565b60008060006060848603121561157657600080fd5b61157f846114f7565b925061158d602085016114f7565b9150604084013590509250925092565b600080600080608085870312156115b357600080fd5b6115bc856114f7565b93506115ca602086016114f7565b925060408501359150606085013567ffffffffffffffff8111156115ed57600080fd5b8501601f810187136115fe57600080fd5b61160d87823560208401611481565b91505092959194509250565b6000806040838503121561162c57600080fd5b611635836114f7565b91506020830135801515811461164a57600080fd5b809150509250929050565b6000806040838503121561166857600080fd5b611671836114f7565b946020939093013593505050565b60006020828403121561169157600080fd5b81356109e681611a43565b6000602082840312156116ae57600080fd5b81516109e681611a43565b6000602082840312156116cb57600080fd5b8135600281106109e657600080fd5b6000602082840312156116ec57600080fd5b813567ffffffffffffffff81111561170357600080fd5b8201601f8101841361171457600080fd5b6110fa84823560208401611481565b60006020828403121561173557600080fd5b5035919050565b6000815180845261175481602086016020860161193f565b601f01601f19169290920160200192915050565b6002811061178657634e487b7160e01b600052602160045260246000fd5b9052565b60008451602061179d8285838a0161193f565b8551918401916117b08184848a0161193f565b8554920191600090600181811c90808316806117cd57607f831692505b8583108114156117eb57634e487b7160e01b85526022600452602485fd5b8080156117ff57600181146118105761183d565b60ff1985168852838801955061183d565b60008b81526020902060005b858110156118355781548a82015290840190880161181c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118819083018461173c565b9695505050505050565b6020810161039e8284611768565b604081016118a78285611768565b6109e66020830184611768565b6020815260006109e6602083018461173c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561190f5761190f6119d5565b500190565b600082611923576119236119eb565b500490565b60008282101561193a5761193a6119d5565b500390565b60005b8381101561195a578181015183820152602001611942565b838111156109455750506000910152565b600181811c9082168061197f57607f821691505b602082108114156119a057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119ba576119ba6119d5565b5060010190565b6000826119d0576119d06119eb565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0857600080fdfea2646970667358221220debcaf7dbfb14e0224d398328ddf1c418399a501d5fd4dfef6e6d0ce0120343964736f6c63430008070033

Deployed Bytecode Sourcemap

45880:1903:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28129:305;;;;;;:::i;:::-;;:::i;:::-;;;7422:14:1;;7415:22;7397:41;;7385:2;7370:18;28129:305:0;;;;;;;;31242:100;;;:::i;:::-;;;;;;;:::i;32745:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6720:32:1;;;6702:51;;6690:2;6675:18;32745:204:0;6556:203:1;32308:371:0;;;;;;:::i;:::-;;:::i;:::-;;27378:303;27632:12;;27422:7;27616:13;:28;27378:303;;;11142:25:1;;;11130:2;11115:18;27378:303:0;10996:177:1;33610:170:0;;;;;;:::i;:::-;;:::i;33851:185::-;;;;;;:::i;:::-;;:::i;47048:106::-;;;;;;:::i;:::-;;:::i;47162:223::-;;;:::i;31050:125::-;;;;;;:::i;:::-;;:::i;46047:21::-;;;:::i;28498:206::-;;;;;;:::i;:::-;;:::i;4373:103::-;;;:::i;47517:263::-;;;:::i;3722:87::-;3795:6;;-1:-1:-1;;;;;3795:6:0;3722:87;;31411:104;;;:::i;45959:42::-;;45997:4;45959:42;;33021:287;;;;;;:::i;:::-;;:::i;34107:369::-;;;;;;:::i;:::-;;:::i;46008:32::-;;;;;-1:-1:-1;;;46008:32:0;;;;;;;;;;;;;:::i;46307:390::-;;;;;;:::i;:::-;;:::i;46821:217::-;;;;;;:::i;:::-;;:::i;47393:116::-;;;;;;:::i;:::-;;:::i;33379:164::-;;;;;;:::i;:::-;;:::i;4631:201::-;;;;;;:::i;:::-;;:::i;28129:305::-;28231:4;-1:-1:-1;;;;;;28268:40:0;;-1:-1:-1;;;28268:40:0;;:105;;-1:-1:-1;;;;;;;28325:48:0;;-1:-1:-1;;;28325:48:0;28268:105;:158;;;-1:-1:-1;;;;;;;;;;23901:40:0;;;28390:36;28248:178;28129:305;-1:-1:-1;;28129:305:0:o;31242:100::-;31296:13;31329:5;31322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31242:100;:::o;32745:204::-;32813:7;32838:16;32846:7;32838;:16::i;:::-;32833:64;;32863:34;;-1:-1:-1;;;32863:34:0;;;;;;;;;;;32833:64;-1:-1:-1;32917:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32917:24:0;;32745:204::o;32308:371::-;32381:13;32397:24;32413:7;32397:15;:24::i;:::-;32381:40;;32442:5;-1:-1:-1;;;;;32436:11:0;:2;-1:-1:-1;;;;;32436:11:0;;32432:48;;;32456:24;;-1:-1:-1;;;32456:24:0;;;;;;;;;;;32432:48;2667:10;-1:-1:-1;;;;;32497:21:0;;;;;;:63;;-1:-1:-1;32523:37:0;32540:5;2667:10;33379:164;:::i;32523:37::-;32522:38;32497:63;32493:138;;;32584:35;;-1:-1:-1;;;32584:35:0;;;;;;;;;;;32493:138;32643:28;32652:2;32656:7;32665:5;32643:8;:28::i;:::-;32370:309;32308:371;;:::o;33610:170::-;33744:28;33754:4;33760:2;33764:7;33744:9;:28::i;33851:185::-;33989:39;34006:4;34012:2;34016:7;33989:39;;;;;;;;;;;;:16;:39::i;47048:106::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;;;;;;;;;47125:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47048:106:::0;:::o;47162:223::-;47219:11;47210:5;;-1:-1:-1;;;47210:5:0;;;;:20;;;;;;;;:::i;:::-;;47202:47;;;;-1:-1:-1;;;47202:47:0;;10855:2:1;47202:47:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:44;10967:18;;47202:47:0;10653:338:1;47202:47:0;45997:4;47268:10;;:24;47260:56;;;;-1:-1:-1;;;47260:56:0;;9130:2:1;47260:56:0;;;9112:21:1;9169:2;9149:18;;;9142:30;-1:-1:-1;;;9188:18:1;;;9181:49;9247:18;;47260:56:0;8928:343:1;47260:56:0;47341:1;47327:10;;:15;;;;;;;:::i;:::-;;;;-1:-1:-1;47353:24:0;;-1:-1:-1;47363:10:0;47375:1;47353:9;:24::i;:::-;47162:223::o;31050:125::-;31114:7;31141:21;31154:7;31141:12;:21::i;:::-;:26;;31050:125;-1:-1:-1;;31050:125:0:o;46047:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28498:206::-;28562:7;-1:-1:-1;;;;;28586:19:0;;28582:60;;28614:28;;-1:-1:-1;;;28614:28:0;;;;;;;;;;;28582:60;-1:-1:-1;;;;;;28668:19:0;;;;;:12;:19;;;;;:27;;;;28498:206::o;4373:103::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;4438:30:::1;4465:1;4438:18;:30::i;47517:263::-:0;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;47588:21:::1;47628:11:::0;47620:32:::1;;;::::0;-1:-1:-1;;;47620:32:0;;9478:2:1;47620:32:0::1;::::0;::::1;9460:21:1::0;9517:1;9497:18;;;9490:29;-1:-1:-1;;;9535:18:1;;;9528:38;9583:18;;47620:32:0::1;9276:331:1::0;47620:32:0::1;47682:44;::::0;47664:12:::1;::::0;47690:10:::1;::::0;47714:7;;47664:12;47682:44;47664:12;47682:44;47714:7;47690:10;47682:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47663:63;;;47745:7;47737:35;;;::::0;-1:-1:-1;;;47737:35:0;;8786:2:1;47737:35:0::1;::::0;::::1;8768:21:1::0;8825:2;8805:18;;;8798:30;-1:-1:-1;;;8844:18:1;;;8837:45;8899:18;;47737:35:0::1;8584:339:1::0;31411:104:0;31467:13;31500:7;31493:14;;;;;:::i;33021:287::-;-1:-1:-1;;;;;33120:24:0;;2667:10;33120:24;33116:54;;;33153:17;;-1:-1:-1;;;33153:17:0;;;;;;;;;;;33116:54;2667:10;33183:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33183:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33183:53:0;;;;;;;;;;33252:48;;7397:41:1;;;33183:42:0;;2667:10;33252:48;;7370:18:1;33252:48:0;;;;;;;33021:287;;:::o;34107:369::-;34274:28;34284:4;34290:2;34294:7;34274:9;:28::i;:::-;-1:-1:-1;;;;;34317:13:0;;16115:19;:23;;34317:76;;;;;34337:56;34368:4;34374:2;34378:7;34387:5;34337:30;:56::i;:::-;34336:57;34317:76;34313:156;;;34417:40;;-1:-1:-1;;;34417:40:0;;;;;;;;;;;34313:156;34107:369;;;;:::o;46307:390::-;46380:13;46414:16;46422:7;46414;:16::i;:::-;46406:38;;;;-1:-1:-1;;;46406:38:0;;9814:2:1;46406:38:0;;;9796:21:1;9853:1;9833:18;;;9826:29;-1:-1:-1;;;9871:18:1;;;9864:39;9920:18;;46406:38:0;9612:332:1;46406:38:0;46455:28;46486:10;:8;:10::i;:::-;46455:41;;46560:1;46535:14;46529:28;:32;:149;;;;;;;;;;;;;;;;;46605:14;46621:18;:7;:16;:18::i;:::-;46641:13;46588:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46529:149;46507:182;46307:390;-1:-1:-1;;;46307:390:0:o;46821:217::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;46900:6:::1;46891:15;;;;;;;;:::i;:::-;:5;::::0;-1:-1:-1;;;46891:5:0;::::1;;;:15;::::0;::::1;;;;;;:::i;:::-;;;46883:42;;;::::0;-1:-1:-1;;;46883:42:0;;10151:2:1;46883:42:0::1;::::0;::::1;10133:21:1::0;10190:2;10170:18;;;10163:30;-1:-1:-1;;;10209:18:1;;;10202:44;10263:18;;46883:42:0::1;9949:338:1::0;46883:42:0::1;46954:5;::::0;;-1:-1:-1;;;46954:5:0;;::::1;;;::::0;46978:6;;46954:5;;-1:-1:-1;;;;46970:14:0;;::::1;::::0;46978:6;46970:14:::1;::::0;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;47024:5:0::1;::::0;47000:30:::1;::::0;::::1;::::0;::::1;::::0;47013:9;;-1:-1:-1;;;47024:5:0;::::1;;;::::0;47000:30:::1;:::i;:::-;;;;;;;;46872:166;46821:217:::0;:::o;47393:116::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;47475:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;33379:164::-:0;-1:-1:-1;;;;;33500:25:0;;;33476:4;33500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33379:164::o;4631:201::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4720:22:0;::::1;4712:73;;;::::0;-1:-1:-1;;;4712:73:0;;8379:2:1;4712:73:0::1;::::0;::::1;8361:21:1::0;8418:2;8398:18;;;8391:30;8457:34;8437:18;;;8430:62;-1:-1:-1;;;8508:18:1;;;8501:36;8554:19;;4712:73:0::1;8177:402:1::0;4712:73:0::1;4796:28;4815:8;4796:18;:28::i;:::-;4631:201:::0;:::o;34731:174::-;34788:4;34852:13;;34842:7;:23;34812:85;;;;-1:-1:-1;;34870:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34870:27:0;;;;34869:28;;34731:174::o;42888:196::-;43003:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43003:29:0;-1:-1:-1;;;;;43003:29:0;;;;;;;;;43048:28;;43003:24;;43048:28;;;;;;;42888:196;;;:::o;37831:2130::-;37946:35;37984:21;37997:7;37984:12;:21::i;:::-;37946:59;;38044:4;-1:-1:-1;;;;;38022:26:0;:13;:18;;;-1:-1:-1;;;;;38022:26:0;;38018:67;;38057:28;;-1:-1:-1;;;38057:28:0;;;;;;;;;;;38018:67;38098:22;2667:10;-1:-1:-1;;;;;38124:20:0;;;;:73;;-1:-1:-1;38161:36:0;38178:4;2667:10;33379:164;:::i;38161:36::-;38124:126;;;-1:-1:-1;2667:10:0;38214:20;38226:7;38214:11;:20::i;:::-;-1:-1:-1;;;;;38214:36:0;;38124:126;38098:153;;38269:17;38264:66;;38295:35;;-1:-1:-1;;;38295:35:0;;;;;;;;;;;38264:66;-1:-1:-1;;;;;38345:16:0;;38341:52;;38370:23;;-1:-1:-1;;;38370:23:0;;;;;;;;;;;38341:52;38514:35;38531:1;38535:7;38544:4;38514:8;:35::i;:::-;-1:-1:-1;;;;;38845:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38845:31:0;;;;;;;-1:-1:-1;;38845:31:0;;;;;;;38891:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38891:29:0;;;;;;;;;;;38971:20;;;:11;:20;;;;;;39006:18;;-1:-1:-1;;;;;;39039:49:0;;;;-1:-1:-1;;;39072:15:0;39039:49;;;;;;;;;;39362:11;;39422:24;;;;;39465:13;;38971:20;;39422:24;;39465:13;39461:384;;39675:13;;39660:11;:28;39656:174;;39713:20;;39782:28;;;;39756:54;;-1:-1:-1;;;39756:54:0;-1:-1:-1;;;;;;39756:54:0;;;-1:-1:-1;;;;;39713:20:0;;39756:54;;;;39656:174;38820:1036;;;39892:7;39888:2;-1:-1:-1;;;;;39873:27:0;39882:4;-1:-1:-1;;;;;39873:27:0;;;;;;;;;;;39911:42;37935:2026;;37831:2130;;;:::o;34913:104::-;34982:27;34992:2;34996:8;34982:27;;;;;;;;;;;;:9;:27::i;29879:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29990:7:0;30073:13;;30066:4;:20;30035:886;;;30107:31;30141:17;;;:11;:17;;;;;;;;;30107:51;;;;;;;;;-1:-1:-1;;;;;30107:51:0;;;;-1:-1:-1;;;30107:51:0;;;;;;;;;;;-1:-1:-1;;;30107:51:0;;;;;;;;;;;;;;30177:729;;30227:14;;-1:-1:-1;;;;;30227:28:0;;30223:101;;30291:9;29879:1109;-1:-1:-1;;;29879:1109:0:o;30223:101::-;-1:-1:-1;;;30666:6:0;30711:17;;;;:11;:17;;;;;;;;;30699:29;;;;;;;;;-1:-1:-1;;;;;30699:29:0;;;;;-1:-1:-1;;;30699:29:0;;;;;;;;;;;-1:-1:-1;;;30699:29:0;;;;;;;;;;;;;30759:28;30755:109;;30827:9;29879:1109;-1:-1:-1;;;29879:1109:0:o;30755:109::-;30626:261;;;30088:833;30035:886;30949:31;;-1:-1:-1;;;30949:31:0;;;;;;;;;;;4992:191;5085:6;;;-1:-1:-1;;;;;5102:17:0;;;-1:-1:-1;;;;;;5102:17:0;;;;;;;5135:40;;5085:6;;;5102:17;5085:6;;5135:40;;5066:16;;5135:40;5055:128;4992:191;:::o;43576:667::-;43760:72;;-1:-1:-1;;;43760:72:0;;43739:4;;-1:-1:-1;;;;;43760:36:0;;;;;:72;;2667:10;;43811:4;;43817:7;;43826:5;;43760:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43760:72:0;;;;;;;;-1:-1:-1;;43760:72:0;;;;;;;;;;;;:::i;:::-;;;43756:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43994:13:0;;43990:235;;44040:40;;-1:-1:-1;;;44040:40:0;;;;;;;;;;;43990:235;44183:6;44177:13;44168:6;44164:2;44160:15;44153:38;43756:480;-1:-1:-1;;;;;;43879:55:0;-1:-1:-1;;;43879:55:0;;-1:-1:-1;43756:480:0;43576:667;;;;;;:::o;46705:108::-;46765:13;46798:7;46791:14;;;;;:::i;286:723::-;342:13;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;-1:-1:-1;;;590:10:0;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;876:56:0;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;35380:163;35503:32;35509:2;35513:8;35523:5;35530:4;35941:20;35964:13;-1:-1:-1;;;;;35992:16:0;;35988:48;;36017:19;;-1:-1:-1;;;36017:19:0;;;;;;;;;;;35988:48;36051:13;36047:44;;36073:18;;-1:-1:-1;;;36073:18:0;;;;;;;;;;;36047:44;-1:-1:-1;;;;;36442:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36501:49:0;;36442:44;;;;;;;;36501:49;;;;-1:-1:-1;;36442:44:0;;;;;;36501:49;;;;;;;;;;;;;;;;36567:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36617:66:0;;;;-1:-1:-1;;;36667:15:0;36617:66;;;;;;;;;;36567:25;36764:23;;;36808:4;:23;;;;-1:-1:-1;;;;;;36816:13:0;;16115:19;:23;;36816:15;36804:641;;;36852:314;36883:38;;36908:12;;-1:-1:-1;;;;;36883:38:0;;;36900:1;;36883:38;;36900:1;;36883:38;36949:69;36988:1;36992:2;36996:14;;;;;;37012:5;36949:30;:69::i;:::-;36944:174;;37054:40;;-1:-1:-1;;;37054:40:0;;;;;;;;;;;36944:174;37161:3;37145:12;:19;;36852:314;;37247:12;37230:13;;:29;37226:43;;37261:8;;;37226:43;36804:641;;;37310:120;37341:40;;37366:14;;;;;-1:-1:-1;;;;;37341:40:0;;;37358:1;;37341:40;;37358:1;;37341:40;37425:3;37409:12;:19;;37310:120;;36804:641;-1:-1:-1;37459:13:0;:28;37509:60;34107:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:266::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3580:9;3567:23;3619:1;3612:5;3609:12;3599:40;;3635:1;3632;3625:12;3674:450;3743:6;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;3852:9;3839:23;3885:18;3877:6;3874:30;3871:50;;;3917:1;3914;3907:12;3871:50;3940:22;;3993:4;3985:13;;3981:27;-1:-1:-1;3971:55:1;;4022:1;4019;4012:12;3971:55;4045:73;4110:7;4105:2;4092:16;4087:2;4083;4079:11;4045:73;:::i;4129:180::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;-1:-1:-1;4280:23:1;;4129:180;-1:-1:-1;4129:180:1:o;4314:257::-;4355:3;4393:5;4387:12;4420:6;4415:3;4408:19;4436:63;4492:6;4485:4;4480:3;4476:14;4469:4;4462:5;4458:16;4436:63;:::i;:::-;4553:2;4532:15;-1:-1:-1;;4528:29:1;4519:39;;;;4560:4;4515:50;;4314:257;-1:-1:-1;;4314:257:1:o;4576:233::-;4653:1;4646:5;4643:12;4633:143;;4698:10;4693:3;4689:20;4686:1;4679:31;4733:4;4730:1;4723:15;4761:4;4758:1;4751:15;4633:143;4785:18;;4576:233::o;4814:1527::-;5038:3;5076:6;5070:13;5102:4;5115:51;5159:6;5154:3;5149:2;5141:6;5137:15;5115:51;:::i;:::-;5229:13;;5188:16;;;;5251:55;5229:13;5188:16;5273:15;;;5251:55;:::i;:::-;5395:13;;5328:20;;;5368:1;;5455;5477:18;;;;5530;;;;5557:93;;5635:4;5625:8;5621:19;5609:31;;5557:93;5698:2;5688:8;5685:16;5665:18;5662:40;5659:167;;;-1:-1:-1;;;5725:33:1;;5781:4;5778:1;5771:15;5811:4;5732:3;5799:17;5659:167;5842:18;5869:110;;;;5993:1;5988:328;;;;5835:481;;5869:110;-1:-1:-1;;5904:24:1;;5890:39;;5949:20;;;;-1:-1:-1;5869:110:1;;5988:328;11251:1;11244:14;;;11288:4;11275:18;;6083:1;6097:169;6111:8;6108:1;6105:15;6097:169;;;6193:14;;6178:13;;;6171:37;6236:16;;;;6128:10;;6097:169;;;6101:3;;6297:8;6290:5;6286:20;6279:27;;5835:481;-1:-1:-1;6332:3:1;;4814:1527;-1:-1:-1;;;;;;;;;;;4814:1527:1:o;6764:488::-;-1:-1:-1;;;;;7033:15:1;;;7015:34;;7085:15;;7080:2;7065:18;;7058:43;7132:2;7117:18;;7110:34;;;7180:3;7175:2;7160:18;;7153:31;;;6958:4;;7201:45;;7226:19;;7218:6;7201:45;:::i;:::-;7193:53;6764:488;-1:-1:-1;;;;;;6764:488:1:o;7449:200::-;7591:2;7576:18;;7603:40;7580:9;7625:6;7603:40;:::i;7654:294::-;7832:2;7817:18;;7844:40;7821:9;7866:6;7844:40;:::i;:::-;7893:49;7938:2;7927:9;7923:18;7915:6;7893:49;:::i;7953:219::-;8102:2;8091:9;8084:21;8065:4;8122:44;8162:2;8151:9;8147:18;8139:6;8122:44;:::i;10292:356::-;10494:2;10476:21;;;10513:18;;;10506:30;10572:34;10567:2;10552:18;;10545:62;10639:2;10624:18;;10292:356::o;11304:128::-;11344:3;11375:1;11371:6;11368:1;11365:13;11362:39;;;11381:18;;:::i;:::-;-1:-1:-1;11417:9:1;;11304:128::o;11437:120::-;11477:1;11503;11493:35;;11508:18;;:::i;:::-;-1:-1:-1;11542:9:1;;11437:120::o;11562:125::-;11602:4;11630:1;11627;11624:8;11621:34;;;11635:18;;:::i;:::-;-1:-1:-1;11672:9:1;;11562:125::o;11692:258::-;11764:1;11774:113;11788:6;11785:1;11782:13;11774:113;;;11864:11;;;11858:18;11845:11;;;11838:39;11810:2;11803:10;11774:113;;;11905:6;11902:1;11899:13;11896:48;;;-1:-1:-1;;11940:1:1;11922:16;;11915:27;11692:258::o;11955:380::-;12034:1;12030:12;;;;12077;;;12098:61;;12152:4;12144:6;12140:17;12130:27;;12098:61;12205:2;12197:6;12194:14;12174:18;12171:38;12168:161;;;12251:10;12246:3;12242:20;12239:1;12232:31;12286:4;12283:1;12276:15;12314:4;12311:1;12304:15;12168:161;;11955:380;;;:::o;12340:135::-;12379:3;-1:-1:-1;;12400:17:1;;12397:43;;;12420:18;;:::i;:::-;-1:-1:-1;12467:1:1;12456:13;;12340:135::o;12480:112::-;12512:1;12538;12528:35;;12543:18;;:::i;:::-;-1:-1:-1;12577:9:1;;12480:112::o;12597:127::-;12658:10;12653:3;12649:20;12646:1;12639:31;12689:4;12686:1;12679:15;12713:4;12710:1;12703:15;12729:127;12790:10;12785:3;12781:20;12778:1;12771:31;12821:4;12818:1;12811:15;12845:4;12842:1;12835:15;12861:127;12922:10;12917:3;12913:20;12910:1;12903:31;12953:4;12950:1;12943:15;12977:4;12974:1;12967:15;12993:127;13054:10;13049:3;13045:20;13042:1;13035:31;13085:4;13082:1;13075:15;13109:4;13106:1;13099:15;13125:127;13186:10;13181:3;13177:20;13174:1;13167:31;13217:4;13214:1;13207:15;13241:4;13238:1;13231:15;13257:131;-1:-1:-1;;;;;;13331:32:1;;13321:43;;13311:71;;13378:1;13375;13368:12

Swarm Source

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