ETH Price: $2,604.44 (-0.84%)

Token

evilpablos (evilpablos)
 

Overview

Max Total Supply

6,666 evilpablos

Holders

501

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 evilpablos
0xff28d609533aa467ebbb0f607f9a44ab060cd4b9
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:
evilpablos

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


// File @openzeppelin/contracts/security/[email protected]


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol


// Creator: Chiru Labs

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

            updatedIndex++;
        }

        currentIndex = updatedIndex;
    }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;
contract evilpablos is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
   
    bool private _isActive = false;

    uint256 public constant MAX_SUPPLY = 6666;

    uint256 public maxCountPerAccount = 25; 
    
    uint256 public price = 0 ether;

    string private _tokenBaseURI = "ipfs://Qmd75U3aXUKLK3FFoeGy7kqHN41iLG8PbxS34EpLLbrr3B/";

    mapping(address => uint256) public minted;

    modifier onlyActive() {
        require(_isActive && totalSupply() < MAX_SUPPLY, 'not active');
        _;
    }

    constructor() ERC721A("evilpablos", "evilpablos") {
    }

    function mint(uint256 numberOfTokens) external payable onlyActive nonReentrant() {
        require(numberOfTokens > 0, "zero count");
        require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
        require(numberOfTokens.add(minted[msg.sender]) <= maxCountPerAccount, "already max minted");
        
        minted[msg.sender] = minted[msg.sender].add(numberOfTokens);

        _safeMint(msg.sender, numberOfTokens);
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    
    /////////////////////////////////////////////////////////////
    //////////////////   Admin Functions ////////////////////////
    /////////////////////////////////////////////////////////////
    function startSale() external onlyOwner {
        _isActive = true;
    }

    function endSale() external onlyOwner {
        _isActive = false;
    }

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

    function setMaxMintPerAddr(uint256 _count) external onlyOwner {
        maxCountPerAccount = _count;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_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":"endSale","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":"maxCountPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6009805460ff191690556019600a556000600b5560e06040526036608081815290620022cf60a03980516200003d91600c9160209091019062000139565b503480156200004b57600080fd5b506040518060400160405280600a8152602001696576696c7061626c6f7360b01b8152506040518060400160405280600a8152602001696576696c7061626c6f7360b01b815250620000ac620000a6620000e560201b60201c565b620000e9565b8151620000c190600290602085019062000139565b508051620000d790600390602084019062000139565b50506001600855506200021c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600281046001821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b6120a3806200022c6000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde14610480578063c87b56dd146104a0578063e985e9c5146104c0578063f2fde38b146104e0576101c2565b8063a22cb46514610436578063b0d1643d14610456578063b66a0e5d1461046b576101c2565b806391b7f5ed116100c657806391b7f5ed146103d957806395d89b41146103f9578063a035b1fe1461040e578063a0712d6814610423576101c2565b8063715018a61461038f5780638da5cb5b146103a45780638ef79e91146103b9576101c2565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461031a57806342842e0e1461032f5780636352211e1461034f57806370a082311461036f576101c2565b806323b872dd146102d057806332cb6b0c146102f0578063380d831b14610305576101c2565b8063095ea7b311610195578063095ea7b31461024c5780631300c0141461026e57806318160ddd1461028e5780631e7269c5146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e236600461182d565b610500565b6040516101f49190611972565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f4919061197d565b34801561022b57600080fd5b5061023f61023a3660046118ab565b6105da565b6040516101f49190611921565b34801561025857600080fd5b5061026c610267366004611804565b610626565b005b34801561027a57600080fd5b5061026c6102893660046118ab565b6106bf565b34801561029a57600080fd5b506102a3610703565b6040516101f49190611f33565b3480156102bc57600080fd5b506102a36102cb3660046116ca565b610709565b3480156102dc57600080fd5b5061026c6102eb366004611716565b61071b565b3480156102fc57600080fd5b506102a3610726565b34801561031157600080fd5b5061026c61072c565b34801561032657600080fd5b5061026c610777565b34801561033b57600080fd5b5061026c61034a366004611716565b6107f8565b34801561035b57600080fd5b5061023f61036a3660046118ab565b610813565b34801561037b57600080fd5b506102a361038a3660046116ca565b610825565b34801561039b57600080fd5b5061026c610872565b3480156103b057600080fd5b5061023f6108bd565b3480156103c557600080fd5b5061026c6103d4366004611865565b6108cc565b3480156103e557600080fd5b5061026c6103f43660046118ab565b610922565b34801561040557600080fd5b50610212610966565b34801561041a57600080fd5b506102a3610975565b61026c6104313660046118ab565b61097b565b34801561044257600080fd5b5061026c6104513660046117ca565b610a9c565b34801561046257600080fd5b506102a3610b6a565b34801561047757600080fd5b5061026c610b70565b34801561048c57600080fd5b5061026c61049b366004611751565b610bbe565b3480156104ac57600080fd5b506102126104bb3660046118ab565b610bf7565b3480156104cc57600080fd5b506101e76104db3660046116e4565b610c02565b3480156104ec57600080fd5b5061026c6104fb3660046116ca565b610c30565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610ca1565b90505b919050565b60606002805461055790611fab565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611fab565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610cba565b61060a5760405162461bcd60e51b815260040161060190611ee6565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063182610813565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d6d565b806001600160a01b0316610677610cc1565b6001600160a01b031614806106935750610693816104db610cc1565b6106af5760405162461bcd60e51b815260040161060190611b72565b6106ba838383610cc5565b505050565b6106c7610cc1565b6001600160a01b03166106d86108bd565b6001600160a01b0316146106fe5760405162461bcd60e51b815260040161060190611c60565b600a55565b60015490565b600d6020526000908152604090205481565b6106ba838383610d21565b611a0a81565b610734610cc1565b6001600160a01b03166107456108bd565b6001600160a01b03161461076b5760405162461bcd60e51b815260040161060190611c60565b6009805460ff19169055565b61077f610cc1565b6001600160a01b03166107906108bd565b6001600160a01b0316146107b65760405162461bcd60e51b815260040161060190611c60565b600260085414156107d95760405162461bcd60e51b815260040161060190611eaf565b6002600855476107f06107ea6108bd565b82610f8e565b506001600855565b6106ba83838360405180602001604052806000815250610bbe565b600061081e8261102a565b5192915050565b60006001600160a01b03821661084d5760405162461bcd60e51b815260040161060190611bcf565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61087a610cc1565b6001600160a01b031661088b6108bd565b6001600160a01b0316146108b15760405162461bcd60e51b815260040161060190611c60565b6108bb60006110b2565b565b6000546001600160a01b031690565b6108d4610cc1565b6001600160a01b03166108e56108bd565b6001600160a01b03161461090b5760405162461bcd60e51b815260040161060190611c60565b805161091e90600c90602084019061158d565b5050565b61092a610cc1565b6001600160a01b031661093b6108bd565b6001600160a01b0316146109615760405162461bcd60e51b815260040161060190611c60565b600b55565b60606003805461055790611fab565b600b5481565b60095460ff1680156109955750611a0a610993610703565b105b6109b15760405162461bcd60e51b815260040161060190611a20565b600260085414156109d45760405162461bcd60e51b815260040161060190611eaf565b6002600855806109f65760405162461bcd60e51b815260040161060190611e02565b610a0a610a01610703565b611a0a90611102565b811115610a295760405162461bcd60e51b815260040161060190611b49565b600a54336000908152600d6020526040902054610a47908390611115565b1115610a655760405162461bcd60e51b815260040161060190611a89565b336000908152600d6020526040902054610a7f9082611115565b336000818152600d60205260409020919091556107f09082611121565b610aa4610cc1565b6001600160a01b0316826001600160a01b03161415610ad55760405162461bcd60e51b815260040161060190611ce4565b8060076000610ae2610cc1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b26610cc1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b5e9190611972565b60405180910390a35050565b600a5481565b610b78610cc1565b6001600160a01b0316610b896108bd565b6001600160a01b031614610baf5760405162461bcd60e51b815260040161060190611c60565b6009805460ff19166001179055565b610bc9848484610d21565b610bd58484848461113b565b610bf15760405162461bcd60e51b815260040161060190611daf565b50505050565b606061054082611257565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c38610cc1565b6001600160a01b0316610c496108bd565b6001600160a01b031614610c6f5760405162461bcd60e51b815260040161060190611c60565b6001600160a01b038116610c955760405162461bcd60e51b815260040161060190611990565b610c9e816110b2565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2c8261102a565b9050600081600001516001600160a01b0316610d46610cc1565b6001600160a01b03161480610d7b5750610d5e610cc1565b6001600160a01b0316610d70846105da565b6001600160a01b0316145b80610d8f57508151610d8f906104db610cc1565b905080610dae5760405162461bcd60e51b815260040161060190611d1b565b846001600160a01b031682600001516001600160a01b031614610de35760405162461bcd60e51b815260040161060190611c1a565b6001600160a01b038416610e095760405162461bcd60e51b815260040161060190611a44565b610e168585856001610bf1565b610e266000848460000151610cc5565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116610f3857610eda81610cba565b15610f38578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f878585856001610bf1565b5050505050565b80471015610fae5760405162461bcd60e51b815260040161060190611b12565b6000826001600160a01b031682604051610fc79061191e565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b50509050806106ba5760405162461bcd60e51b815260040161060190611ab5565b611032611611565b61103b82610cba565b6110575760405162461bcd60e51b8152600401610601906119d6565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156110a85791506105439050565b5060001901611059565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061110e8284611f68565b9392505050565b600061110e8284611f3c565b61091e8282604051806020016040528060008152506112da565b600061114f846001600160a01b03166112e7565b1561124b57836001600160a01b031663150b7a0261116b610cc1565b8786866040518563ffffffff1660e01b815260040161118d9493929190611935565b602060405180830381600087803b1580156111a757600080fd5b505af19250505080156111d7575060408051601f3d908101601f191682019092526111d491810190611849565b60015b611231573d808015611205576040519150601f19603f3d011682016040523d82523d6000602084013e61120a565b606091505b5080516112295760405162461bcd60e51b815260040161060190611daf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061124f565b5060015b949350505050565b606061126282610cba565b61127e5760405162461bcd60e51b815260040161060190611c95565b60006112886112f6565b90508051600014156112a9576040518060200160405280600081525061110e565b806112b384611305565b6040516020016112c49291906118ef565b6040516020818303038152906040529392505050565b6106ba8383836001611420565b6001600160a01b03163b151590565b6060600c805461055790611fab565b60608161132a57506040805180820190915260018152600360fc1b6020820152610543565b8160005b8115611354578061133e81611fe6565b915061134d9050600a83611f54565b915061132e565b60008167ffffffffffffffff81111561137d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113a7576020820181803683370190505b5090505b841561124f576113bc600183611f68565b91506113c9600a86612001565b6113d4906030611f3c565b60f81b8183815181106113f757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611419600a86611f54565b94506113ab565b6001546001600160a01b0385166114495760405162461bcd60e51b815260040161060190611e26565b836114665760405162461bcd60e51b815260040161060190611e67565b6114736000868387610bf1565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b8581101561157c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561157057611554600088848861113b565b6115705760405162461bcd60e51b815260040161060190611daf565b60019182019101611501565b50600155610f876000868387610bf1565b82805461159990611fab565b90600052602060002090601f0160209004810192826115bb5760008555611601565b82601f106115d457805160ff1916838001178555611601565b82800160010185558215611601579182015b828111156116015782518255916020019190600101906115e6565b5061160d929150611628565b5090565b604080518082019091526000808252602082015290565b5b8082111561160d5760008155600101611629565b600067ffffffffffffffff8084111561165857611658612041565b604051601f8501601f19908116603f0116810190828211818310171561168057611680612041565b8160405280935085815286868601111561169957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461054357600080fd5b6000602082840312156116db578081fd5b61110e826116b3565b600080604083850312156116f6578081fd5b6116ff836116b3565b915061170d602084016116b3565b90509250929050565b60008060006060848603121561172a578081fd5b611733846116b3565b9250611741602085016116b3565b9150604084013590509250925092565b60008060008060808587031215611766578081fd5b61176f856116b3565b935061177d602086016116b3565b925060408501359150606085013567ffffffffffffffff81111561179f578182fd5b8501601f810187136117af578182fd5b6117be8782356020840161163d565b91505092959194509250565b600080604083850312156117dc578182fd5b6117e5836116b3565b9150602083013580151581146117f9578182fd5b809150509250929050565b60008060408385031215611816578182fd5b61181f836116b3565b946020939093013593505050565b60006020828403121561183e578081fd5b813561110e81612057565b60006020828403121561185a578081fd5b815161110e81612057565b600060208284031215611876578081fd5b813567ffffffffffffffff81111561188c578182fd5b8201601f8101841361189c578182fd5b61124f8482356020840161163d565b6000602082840312156118bc578081fd5b5035919050565b600081518084526118db816020860160208601611f7f565b601f01601f19169290920160200192915050565b60008351611901818460208801611f7f565b835190830190611915818360208801611f7f565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611968908301846118c3565b9695505050505050565b901515815260200190565b60006020825261110e60208301846118c3565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252600a90820152696e6f742061637469766560b01b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b602080825260129082015271185b1c9958591e481b585e081b5a5b9d195960721b604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252600f908201526e6e6f7420656e6f756768206e66747360881b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600a90820152691e995c9bc818dbdd5b9d60b21b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60008219821115611f4f57611f4f612015565b500190565b600082611f6357611f6361202b565b500490565b600082821015611f7a57611f7a612015565b500390565b60005b83811015611f9a578181015183820152602001611f82565b83811115610bf15750506000910152565b600281046001821680611fbf57607f821691505b60208210811415611fe057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ffa57611ffa612015565b5060010190565b6000826120105761201061202b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9e57600080fdfea26469706673582212207d06b5f7b4aa22534dad93f84d9c9db533264175fa133211e444e3d384c4a35564736f6c63430008010033697066733a2f2f516d64373555336158554b4c4b3346466f654779376b71484e3431694c473850627853333445704c4c62727233422f

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde14610480578063c87b56dd146104a0578063e985e9c5146104c0578063f2fde38b146104e0576101c2565b8063a22cb46514610436578063b0d1643d14610456578063b66a0e5d1461046b576101c2565b806391b7f5ed116100c657806391b7f5ed146103d957806395d89b41146103f9578063a035b1fe1461040e578063a0712d6814610423576101c2565b8063715018a61461038f5780638da5cb5b146103a45780638ef79e91146103b9576101c2565b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461031a57806342842e0e1461032f5780636352211e1461034f57806370a082311461036f576101c2565b806323b872dd146102d057806332cb6b0c146102f0578063380d831b14610305576101c2565b8063095ea7b311610195578063095ea7b31461024c5780631300c0141461026e57806318160ddd1461028e5780631e7269c5146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e236600461182d565b610500565b6040516101f49190611972565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f4919061197d565b34801561022b57600080fd5b5061023f61023a3660046118ab565b6105da565b6040516101f49190611921565b34801561025857600080fd5b5061026c610267366004611804565b610626565b005b34801561027a57600080fd5b5061026c6102893660046118ab565b6106bf565b34801561029a57600080fd5b506102a3610703565b6040516101f49190611f33565b3480156102bc57600080fd5b506102a36102cb3660046116ca565b610709565b3480156102dc57600080fd5b5061026c6102eb366004611716565b61071b565b3480156102fc57600080fd5b506102a3610726565b34801561031157600080fd5b5061026c61072c565b34801561032657600080fd5b5061026c610777565b34801561033b57600080fd5b5061026c61034a366004611716565b6107f8565b34801561035b57600080fd5b5061023f61036a3660046118ab565b610813565b34801561037b57600080fd5b506102a361038a3660046116ca565b610825565b34801561039b57600080fd5b5061026c610872565b3480156103b057600080fd5b5061023f6108bd565b3480156103c557600080fd5b5061026c6103d4366004611865565b6108cc565b3480156103e557600080fd5b5061026c6103f43660046118ab565b610922565b34801561040557600080fd5b50610212610966565b34801561041a57600080fd5b506102a3610975565b61026c6104313660046118ab565b61097b565b34801561044257600080fd5b5061026c6104513660046117ca565b610a9c565b34801561046257600080fd5b506102a3610b6a565b34801561047757600080fd5b5061026c610b70565b34801561048c57600080fd5b5061026c61049b366004611751565b610bbe565b3480156104ac57600080fd5b506102126104bb3660046118ab565b610bf7565b3480156104cc57600080fd5b506101e76104db3660046116e4565b610c02565b3480156104ec57600080fd5b5061026c6104fb3660046116ca565b610c30565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610ca1565b90505b919050565b60606002805461055790611fab565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611fab565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610cba565b61060a5760405162461bcd60e51b815260040161060190611ee6565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063182610813565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d6d565b806001600160a01b0316610677610cc1565b6001600160a01b031614806106935750610693816104db610cc1565b6106af5760405162461bcd60e51b815260040161060190611b72565b6106ba838383610cc5565b505050565b6106c7610cc1565b6001600160a01b03166106d86108bd565b6001600160a01b0316146106fe5760405162461bcd60e51b815260040161060190611c60565b600a55565b60015490565b600d6020526000908152604090205481565b6106ba838383610d21565b611a0a81565b610734610cc1565b6001600160a01b03166107456108bd565b6001600160a01b03161461076b5760405162461bcd60e51b815260040161060190611c60565b6009805460ff19169055565b61077f610cc1565b6001600160a01b03166107906108bd565b6001600160a01b0316146107b65760405162461bcd60e51b815260040161060190611c60565b600260085414156107d95760405162461bcd60e51b815260040161060190611eaf565b6002600855476107f06107ea6108bd565b82610f8e565b506001600855565b6106ba83838360405180602001604052806000815250610bbe565b600061081e8261102a565b5192915050565b60006001600160a01b03821661084d5760405162461bcd60e51b815260040161060190611bcf565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b61087a610cc1565b6001600160a01b031661088b6108bd565b6001600160a01b0316146108b15760405162461bcd60e51b815260040161060190611c60565b6108bb60006110b2565b565b6000546001600160a01b031690565b6108d4610cc1565b6001600160a01b03166108e56108bd565b6001600160a01b03161461090b5760405162461bcd60e51b815260040161060190611c60565b805161091e90600c90602084019061158d565b5050565b61092a610cc1565b6001600160a01b031661093b6108bd565b6001600160a01b0316146109615760405162461bcd60e51b815260040161060190611c60565b600b55565b60606003805461055790611fab565b600b5481565b60095460ff1680156109955750611a0a610993610703565b105b6109b15760405162461bcd60e51b815260040161060190611a20565b600260085414156109d45760405162461bcd60e51b815260040161060190611eaf565b6002600855806109f65760405162461bcd60e51b815260040161060190611e02565b610a0a610a01610703565b611a0a90611102565b811115610a295760405162461bcd60e51b815260040161060190611b49565b600a54336000908152600d6020526040902054610a47908390611115565b1115610a655760405162461bcd60e51b815260040161060190611a89565b336000908152600d6020526040902054610a7f9082611115565b336000818152600d60205260409020919091556107f09082611121565b610aa4610cc1565b6001600160a01b0316826001600160a01b03161415610ad55760405162461bcd60e51b815260040161060190611ce4565b8060076000610ae2610cc1565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b26610cc1565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b5e9190611972565b60405180910390a35050565b600a5481565b610b78610cc1565b6001600160a01b0316610b896108bd565b6001600160a01b031614610baf5760405162461bcd60e51b815260040161060190611c60565b6009805460ff19166001179055565b610bc9848484610d21565b610bd58484848461113b565b610bf15760405162461bcd60e51b815260040161060190611daf565b50505050565b606061054082611257565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610c38610cc1565b6001600160a01b0316610c496108bd565b6001600160a01b031614610c6f5760405162461bcd60e51b815260040161060190611c60565b6001600160a01b038116610c955760405162461bcd60e51b815260040161060190611990565b610c9e816110b2565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d2c8261102a565b9050600081600001516001600160a01b0316610d46610cc1565b6001600160a01b03161480610d7b5750610d5e610cc1565b6001600160a01b0316610d70846105da565b6001600160a01b0316145b80610d8f57508151610d8f906104db610cc1565b905080610dae5760405162461bcd60e51b815260040161060190611d1b565b846001600160a01b031682600001516001600160a01b031614610de35760405162461bcd60e51b815260040161060190611c1a565b6001600160a01b038416610e095760405162461bcd60e51b815260040161060190611a44565b610e168585856001610bf1565b610e266000848460000151610cc5565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116610f3857610eda81610cba565b15610f38578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f878585856001610bf1565b5050505050565b80471015610fae5760405162461bcd60e51b815260040161060190611b12565b6000826001600160a01b031682604051610fc79061191e565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b50509050806106ba5760405162461bcd60e51b815260040161060190611ab5565b611032611611565b61103b82610cba565b6110575760405162461bcd60e51b8152600401610601906119d6565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156110a85791506105439050565b5060001901611059565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061110e8284611f68565b9392505050565b600061110e8284611f3c565b61091e8282604051806020016040528060008152506112da565b600061114f846001600160a01b03166112e7565b1561124b57836001600160a01b031663150b7a0261116b610cc1565b8786866040518563ffffffff1660e01b815260040161118d9493929190611935565b602060405180830381600087803b1580156111a757600080fd5b505af19250505080156111d7575060408051601f3d908101601f191682019092526111d491810190611849565b60015b611231573d808015611205576040519150601f19603f3d011682016040523d82523d6000602084013e61120a565b606091505b5080516112295760405162461bcd60e51b815260040161060190611daf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061124f565b5060015b949350505050565b606061126282610cba565b61127e5760405162461bcd60e51b815260040161060190611c95565b60006112886112f6565b90508051600014156112a9576040518060200160405280600081525061110e565b806112b384611305565b6040516020016112c49291906118ef565b6040516020818303038152906040529392505050565b6106ba8383836001611420565b6001600160a01b03163b151590565b6060600c805461055790611fab565b60608161132a57506040805180820190915260018152600360fc1b6020820152610543565b8160005b8115611354578061133e81611fe6565b915061134d9050600a83611f54565b915061132e565b60008167ffffffffffffffff81111561137d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113a7576020820181803683370190505b5090505b841561124f576113bc600183611f68565b91506113c9600a86612001565b6113d4906030611f3c565b60f81b8183815181106113f757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611419600a86611f54565b94506113ab565b6001546001600160a01b0385166114495760405162461bcd60e51b815260040161060190611e26565b836114665760405162461bcd60e51b815260040161060190611e67565b6114736000868387610bf1565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b8581101561157c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561157057611554600088848861113b565b6115705760405162461bcd60e51b815260040161060190611daf565b60019182019101611501565b50600155610f876000868387610bf1565b82805461159990611fab565b90600052602060002090601f0160209004810192826115bb5760008555611601565b82601f106115d457805160ff1916838001178555611601565b82800160010185558215611601579182015b828111156116015782518255916020019190600101906115e6565b5061160d929150611628565b5090565b604080518082019091526000808252602082015290565b5b8082111561160d5760008155600101611629565b600067ffffffffffffffff8084111561165857611658612041565b604051601f8501601f19908116603f0116810190828211818310171561168057611680612041565b8160405280935085815286868601111561169957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461054357600080fd5b6000602082840312156116db578081fd5b61110e826116b3565b600080604083850312156116f6578081fd5b6116ff836116b3565b915061170d602084016116b3565b90509250929050565b60008060006060848603121561172a578081fd5b611733846116b3565b9250611741602085016116b3565b9150604084013590509250925092565b60008060008060808587031215611766578081fd5b61176f856116b3565b935061177d602086016116b3565b925060408501359150606085013567ffffffffffffffff81111561179f578182fd5b8501601f810187136117af578182fd5b6117be8782356020840161163d565b91505092959194509250565b600080604083850312156117dc578182fd5b6117e5836116b3565b9150602083013580151581146117f9578182fd5b809150509250929050565b60008060408385031215611816578182fd5b61181f836116b3565b946020939093013593505050565b60006020828403121561183e578081fd5b813561110e81612057565b60006020828403121561185a578081fd5b815161110e81612057565b600060208284031215611876578081fd5b813567ffffffffffffffff81111561188c578182fd5b8201601f8101841361189c578182fd5b61124f8482356020840161163d565b6000602082840312156118bc578081fd5b5035919050565b600081518084526118db816020860160208601611f7f565b601f01601f19169290920160200192915050565b60008351611901818460208801611f7f565b835190830190611915818360208801611f7f565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611968908301846118c3565b9695505050505050565b901515815260200190565b60006020825261110e60208301846118c3565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252600a90820152696e6f742061637469766560b01b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b602080825260129082015271185b1c9958591e481b585e081b5a5b9d195960721b604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252600f908201526e6e6f7420656e6f756768206e66747360881b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600a90820152691e995c9bc818dbdd5b9d60b21b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60008219821115611f4f57611f4f612015565b500190565b600082611f6357611f6361202b565b500490565b600082821015611f7a57611f7a612015565b500390565b60005b83811015611f9a578181015183820152602001611f82565b83811115610bf15750506000910152565b600281046001821680611fbf57607f821691505b60208210811415611fe057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ffa57611ffa612015565b5060010190565b6000826120105761201061202b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9e57600080fdfea26469706673582212207d06b5f7b4aa22534dad93f84d9c9db533264175fa133211e444e3d384c4a35564736f6c63430008010033

Deployed Bytecode Sourcemap

47415:2245:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34517:293;;;;;;;;;;-1:-1:-1;34517:293:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36292:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37854:214::-;;;;;;;;;;-1:-1:-1;37854:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37375:413::-;;;;;;;;;;-1:-1:-1;37375:413:0;;;;;:::i;:::-;;:::i;:::-;;49230:108;;;;;;;;;;-1:-1:-1;49230:108:0;;;;;:::i;:::-;;:::i;34354:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47793:41::-;;;;;;;;;;-1:-1:-1;47793:41:0;;;;;:::i;:::-;;:::i;38730:162::-;;;;;;;;;;-1:-1:-1;38730:162:0;;;;;:::i;:::-;;:::i;47556:41::-;;;;;;;;;;;;;:::i;49054:74::-;;;;;;;;;;;;;:::i;49455:165::-;;;;;;;;;;;;;:::i;38963:177::-;;;;;;;;;;-1:-1:-1;38963:177:0;;;;;:::i;:::-;;:::i;36101:124::-;;;;;;;;;;-1:-1:-1;36101:124:0;;;;;:::i;:::-;;:::i;34874:221::-;;;;;;;;;;-1:-1:-1;34874:221:0;;;;;:::i;:::-;;:::i;2660:103::-;;;;;;;;;;;;;:::i;2009:87::-;;;;;;;;;;;;;:::i;49346:101::-;;;;;;;;;;-1:-1:-1;49346:101:0;;;;;:::i;:::-;;:::i;49136:86::-;;;;;;;;;;-1:-1:-1;49136:86:0;;;;;:::i;:::-;;:::i;36461:104::-;;;;;;;;;;;;;:::i;47658:30::-;;;;;;;;;;;;;:::i;48032:459::-;;;;;;:::i;:::-;;:::i;38140:288::-;;;;;;;;;;-1:-1:-1;38140:288:0;;;;;:::i;:::-;;:::i;47606:38::-;;;;;;;;;;;;;:::i;48971:75::-;;;;;;;;;;;;;:::i;39211:355::-;;;;;;;;;;-1:-1:-1;39211:355:0;;;;;:::i;:::-;;:::i;48613:143::-;;;;;;;;;;-1:-1:-1;48613:143:0;;;;;:::i;:::-;;:::i;38499:164::-;;;;;;;;;;-1:-1:-1;38499:164:0;;;;;:::i;:::-;;:::i;2918:201::-;;;;;;;;;;-1:-1:-1;2918:201:0;;;;;:::i;:::-;;:::i;34517:293::-;34619:4;-1:-1:-1;;;;;;34652:40:0;;-1:-1:-1;;;34652:40:0;;:101;;-1:-1:-1;;;;;;;34705:48:0;;-1:-1:-1;;;34705:48:0;34652:101;:150;;;;34766:36;34790:11;34766:23;:36::i;:::-;34636:166;;34517:293;;;;:::o;36292:100::-;36346:13;36379:5;36372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36292:100;:::o;37854:214::-;37922:7;37950:16;37958:7;37950;:16::i;:::-;37942:74;;;;-1:-1:-1;;;37942:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;38036:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38036:24:0;;37854:214::o;37375:413::-;37448:13;37464:24;37480:7;37464:15;:24::i;:::-;37448:40;;37513:5;-1:-1:-1;;;;;37507:11:0;:2;-1:-1:-1;;;;;37507:11:0;;;37499:58;;;;-1:-1:-1;;;37499:58:0;;;;;;;:::i;:::-;37608:5;-1:-1:-1;;;;;37592:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;37592:21:0;;:62;;;;37617:37;37634:5;37641:12;:10;:12::i;37617:37::-;37570:169;;;;-1:-1:-1;;;37570:169:0;;;;;;;:::i;:::-;37752:28;37761:2;37765:7;37774:5;37752:8;:28::i;:::-;37375:413;;;:::o;49230:108::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;49303:18:::1;:27:::0;49230:108::o;34354:91::-;34425:12;;34354:91;:::o;47793:41::-;;;;;;;;;;;;;:::o;38730:162::-;38856:28;38866:4;38872:2;38876:7;38856:9;:28::i;47556:41::-;47593:4;47556:41;:::o;49054:74::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;49103:9:::1;:17:::0;;-1:-1:-1;;49103:17:0::1;::::0;;49054:74::o;49455:165::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;18154:1:::1;18752:7;;:19;;18744:63;;;;-1:-1:-1::0;;;18744:63:0::1;;;;;;;:::i;:::-;18154:1;18885:7;:18:::0;49536:21:::2;49568:44;49594:7;:5;:7::i;:::-;49604;49568:17;:44::i;:::-;-1:-1:-1::0;18110:1:0::1;19064:7;:22:::0;49455:165::o;38963:177::-;39093:39;39110:4;39116:2;39120:7;39093:39;;;;;;;;;;;;:16;:39::i;36101:124::-;36165:7;36192:20;36204:7;36192:11;:20::i;:::-;:25;;36101:124;-1:-1:-1;;36101:124:0:o;34874:221::-;34938:7;-1:-1:-1;;;;;34966:19:0;;34958:75;;;;-1:-1:-1;;;34958:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35059:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35059:27:0;;34874:221::o;2660:103::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;2725:30:::1;2752:1;2725:18;:30::i;:::-;2660:103::o:0;2009:87::-;2055:7;2082:6;-1:-1:-1;;;;;2082:6:0;2009:87;:::o;49346:101::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;49420:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49346:101:::0;:::o;49136:86::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;49200:5:::1;:14:::0;49136:86::o;36461:104::-;36517:13;36550:7;36543:14;;;;;:::i;47658:30::-;;;;:::o;48032:459::-;47884:9;;;;:39;;;;;47593:4;47897:13;:11;:13::i;:::-;:26;47884:39;47876:62;;;;-1:-1:-1;;;47876:62:0;;;;;;;:::i;:::-;18154:1:::1;18752:7;;:19;;18744:63;;;;-1:-1:-1::0;;;18744:63:0::1;;;;;;;:::i;:::-;18154:1;18885:7;:18:::0;48132;48124:41:::2;;;;-1:-1:-1::0;;;48124:41:0::2;;;;;;;:::i;:::-;48202:29;48217:13;:11;:13::i;:::-;47593:4;::::0;48202:14:::2;:29::i;:::-;48184:14;:47;;48176:75;;;;-1:-1:-1::0;;;48176:75:0::2;;;;;;;:::i;:::-;48312:18;::::0;48296:10:::2;48289:18;::::0;;;:6:::2;:18;::::0;;;;;48270:38:::2;::::0;:14;;:18:::2;:38::i;:::-;:60;;48262:91;;;;-1:-1:-1::0;;;48262:91:0::2;;;;;;;:::i;:::-;48402:10;48395:18;::::0;;;:6:::2;:18;::::0;;;;;:38:::2;::::0;48418:14;48395:22:::2;:38::i;:::-;48381:10;48374:18;::::0;;;:6:::2;:18;::::0;;;;:59;;;;48446:37:::2;::::0;48468:14;48446:9:::2;:37::i;38140:288::-:0;38247:12;:10;:12::i;:::-;-1:-1:-1;;;;;38235:24:0;:8;-1:-1:-1;;;;;38235:24:0;;;38227:63;;;;-1:-1:-1;;;38227:63:0;;;;;;;:::i;:::-;38348:8;38303:18;:32;38322:12;:10;:12::i;:::-;-1:-1:-1;;;;;38303:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;38303:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;38303:53:0;;;;;;;;;;;38387:12;:10;:12::i;:::-;-1:-1:-1;;;;;38372:48:0;;38411:8;38372:48;;;;;;:::i;:::-;;;;;;;;38140:288;;:::o;47606:38::-;;;;:::o;48971:75::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;49022:9:::1;:16:::0;;-1:-1:-1;;49022:16:0::1;49034:4;49022:16;::::0;;48971:75::o;39211:355::-;39370:28;39380:4;39386:2;39390:7;39370:9;:28::i;:::-;39431:48;39454:4;39460:2;39464:7;39473:5;39431:22;:48::i;:::-;39409:149;;;;-1:-1:-1;;;39409:149:0;;;;;;;:::i;:::-;39211:355;;;;:::o;48613:143::-;48687:13;48725:23;48740:7;48725:14;:23::i;38499:164::-;-1:-1:-1;;;;;38620:25:0;;;38596:4;38620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38499:164::o;2918:201::-;2240:12;:10;:12::i;:::-;-1:-1:-1;;;;;2229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2229:23:0;;2221:68;;;;-1:-1:-1;;;2221:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3007:22:0;::::1;2999:73;;;;-1:-1:-1::0;;;2999:73:0::1;;;;;;;:::i;:::-;3083:28;3102:8;3083:18;:28::i;:::-;2918:201:::0;:::o;32496:157::-;-1:-1:-1;;;;;;32605:40:0;;-1:-1:-1;;;32605:40:0;32496:157;;;:::o;39821:111::-;39912:12;;-1:-1:-1;39902:22:0;39821:111::o;727:98::-;807:10;727:98;:::o;44601:196::-;44716:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44716:29:0;-1:-1:-1;;;;;44716:29:0;;;;;;;;;44761:28;;44716:24;;44761:28;;;;;;;44601:196;;;:::o;42549:1934::-;42664:35;42702:20;42714:7;42702:11;:20::i;:::-;42664:58;;42735:22;42777:13;:18;;;-1:-1:-1;;;;;42761:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;42761:34:0;;:83;;;;42832:12;:10;:12::i;:::-;-1:-1:-1;;;;;42808:36:0;:20;42820:7;42808:11;:20::i;:::-;-1:-1:-1;;;;;42808:36:0;;42761:83;:146;;;-1:-1:-1;42874:18:0;;42857:50;;42894:12;:10;:12::i;42857:50::-;42735:173;;42929:17;42921:80;;;;-1:-1:-1;;;42921:80:0;;;;;;;:::i;:::-;43044:4;-1:-1:-1;;;;;43022:26:0;:13;:18;;;-1:-1:-1;;;;;43022:26:0;;43014:77;;;;-1:-1:-1;;;43014:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43110:16:0;;43102:66;;;;-1:-1:-1;;;43102:66:0;;;;;;;:::i;:::-;43181:43;43203:4;43209:2;43213:7;43222:1;43181:21;:43::i;:::-;43289:49;43306:1;43310:7;43319:13;:18;;;43289:8;:49::i;:::-;-1:-1:-1;;;;;43626:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;43626:31:0;;;-1:-1:-1;;;;;43626:31:0;;;-1:-1:-1;;43626:31:0;;;;;;;43668:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43668:29:0;;;;;;;;;;;;;43710:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43710:30:0;;;;-1:-1:-1;;;;43751:61:0;-1:-1:-1;;;43796:15:0;43751:61;;;;;;44074:11;;;44100:24;;;;;:29;44074:11;;44100:29;44096:275;;44164:20;44172:11;44164:7;:20::i;:::-;44160:200;;;44237:18;;;44205:24;;;:11;:24;;;;;;;;:50;;44316:28;;;;44274:70;;-1:-1:-1;;;44274:70:0;-1:-1:-1;;;;;;;;;44205:50:0;;;-1:-1:-1;;;;;;44205:50:0;;;;;;;44274:70;;;;;;;44160:200;42549:1934;44414:7;44410:2;-1:-1:-1;;;;;44395:27:0;44404:4;-1:-1:-1;;;;;44395:27:0;;;;;;;;;;;44433:42;44454:4;44460:2;44464:7;44473:1;44433:20;:42::i;:::-;42549:1934;;;;;:::o;23484:317::-;23599:6;23574:21;:31;;23566:73;;;;-1:-1:-1;;;23566:73:0;;;;;;;:::i;:::-;23653:12;23671:9;-1:-1:-1;;;;;23671:14:0;23693:6;23671:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23652:52;;;23723:7;23715:78;;;;-1:-1:-1;;;23715:78:0;;;;;;;:::i;35534:505::-;35595:21;;:::i;:::-;35637:16;35645:7;35637;:16::i;:::-;35629:71;;;;-1:-1:-1;;;35629:71:0;;;;;;;:::i;:::-;35750:7;35730:225;35793:31;35827:17;;;:11;:17;;;;;;;;;35793:51;;;;;;;;;-1:-1:-1;;;;;35793:51:0;;;;;-1:-1:-1;;;35793:51:0;;;;;;;;;;;;35863:28;35859:85;;35919:9;-1:-1:-1;35912:16:0;;-1:-1:-1;35912:16:0;35859:85;-1:-1:-1;;;35770:6:0;35730:225;;3279:191;3353:16;3372:6;;-1:-1:-1;;;;;3389:17:0;;;-1:-1:-1;;;;;;3389:17:0;;;;;;3422:40;;3372:6;;;;;;;3422:40;;3353:16;3422:40;3279:191;;:::o;6742:98::-;6800:7;6827:5;6831:1;6827;:5;:::i;:::-;6820:12;6742:98;-1:-1:-1;;;6742:98:0:o;6361:::-;6419:7;6446:5;6450:1;6446;:5;:::i;39940:104::-;40009:27;40019:2;40023:8;40009:27;;;;;;;;;;;;:9;:27::i;45362:804::-;45517:4;45538:15;:2;-1:-1:-1;;;;;45538:13:0;;:15::i;:::-;45534:625;;;45590:2;-1:-1:-1;;;;;45574:36:0;;45611:12;:10;:12::i;:::-;45625:4;45631:7;45640:5;45574:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45574:72:0;;;;;;;;-1:-1:-1;;45574:72:0;;;;;;;;;;;;:::i;:::-;;;45570:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45820:13:0;;45816:273;;45863:61;;-1:-1:-1;;;45863:61:0;;;;;;;:::i;45816:273::-;46039:6;46033:13;46024:6;46020:2;46016:15;46009:38;45570:534;-1:-1:-1;;;;;;45697:55:0;-1:-1:-1;;;45697:55:0;;-1:-1:-1;45690:62:0;;45534:625;-1:-1:-1;46143:4:0;45534:625;45362:804;;;;;;:::o;36636:335::-;36709:13;36743:16;36751:7;36743;:16::i;:::-;36735:76;;;;-1:-1:-1;;;36735:76:0;;;;;;;:::i;:::-;36824:21;36848:10;:8;:10::i;:::-;36824:34;;36882:7;36876:21;36901:1;36876:26;;:87;;;;;;;;;;;;;;;;;36929:7;36938:18;:7;:16;:18::i;:::-;36912:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36869:94;36636:335;-1:-1:-1;;;36636:335:0:o;40407:163::-;40530:32;40536:2;40540:8;40550:5;40557:4;40530:5;:32::i;22223:326::-;-1:-1:-1;;;;;22518:19:0;;:23;;;22223:326::o;48499:106::-;48551:13;48584;48577:20;;;;;:::i;29866:723::-;29922:13;30143:10;30139:53;;-1:-1:-1;30170:10:0;;;;;;;;;;;;-1:-1:-1;;;30170:10:0;;;;;;30139:53;30217:5;30202:12;30258:78;30265:9;;30258:78;;30291:8;;;;:::i;:::-;;-1:-1:-1;30314:10:0;;-1:-1:-1;30322:2:0;30314:10;;:::i;:::-;;;30258:78;;;30346:19;30378:6;30368:17;;;;;;-1:-1:-1;;;30368:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30368:17:0;;30346:39;;30396:154;30403:10;;30396:154;;30430:11;30440:1;30430:11;;:::i;:::-;;-1:-1:-1;30499:10:0;30507:2;30499:5;:10;:::i;:::-;30486:24;;:2;:24;:::i;:::-;30473:39;;30456:6;30463;30456:14;;;;;;-1:-1:-1;;;30456:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;30456:56:0;;;;;;;;-1:-1:-1;30527:11:0;30536:2;30527:11;;:::i;:::-;;;30396:154;;40829:1466;40991:12;;-1:-1:-1;;;;;41022:16:0;;41014:62;;;;-1:-1:-1;;;41014:62:0;;;;;;;:::i;:::-;41095:13;41087:66;;;;-1:-1:-1;;;41087:66:0;;;;;;;:::i;:::-;41166:61;41196:1;41200:2;41204:12;41218:8;41166:21;:61::i;:::-;-1:-1:-1;;;;;41497:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;41497:45:0;;-1:-1:-1;;;;;41497:45:0;;;;;;;;41553:50;;;-1:-1:-1;;;41553:50:0;;;;;;;;;;;;;;;41616:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41616:35:0;;;;-1:-1:-1;;;;41662:66:0;-1:-1:-1;;;41712:15:0;41662:66;;;;;;;41616:25;;41789:379;41809:8;41805:1;:12;41789:379;;;41844:38;;41869:12;;-1:-1:-1;;;;;41844:38:0;;;41861:1;;41844:38;;41861:1;;41844:38;41901:4;41897:229;;;41956:59;41987:1;41991:2;41995:12;42009:5;41956:22;:59::i;:::-;41926:184;;;;-1:-1:-1;;;41926:184:0;;;;;;;:::i;:::-;42142:14;;;;;41819:3;41789:379;;;-1:-1:-1;42180:12:0;:27;42227:60;42256:1;42260:2;42264:12;42278:8;42227:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:198;;944:2;932:9;923:7;919:23;915:32;912:2;;;965:6;957;950:22;912:2;993:31;1014:9;993:31;:::i;1035:274::-;;;1164:2;1152:9;1143:7;1139:23;1135:32;1132:2;;;1185:6;1177;1170:22;1132:2;1213:31;1234:9;1213:31;:::i;:::-;1203:41;;1263:40;1299:2;1288:9;1284:18;1263:40;:::i;:::-;1253:50;;1122:187;;;;;:::o;1314:342::-;;;;1460:2;1448:9;1439:7;1435:23;1431:32;1428:2;;;1481:6;1473;1466:22;1428:2;1509:31;1530:9;1509:31;:::i;:::-;1499:41;;1559:40;1595:2;1584:9;1580:18;1559:40;:::i;:::-;1549:50;;1646:2;1635:9;1631:18;1618:32;1608:42;;1418:238;;;;;:::o;1661:702::-;;;;;1833:3;1821:9;1812:7;1808:23;1804:33;1801:2;;;1855:6;1847;1840:22;1801:2;1883:31;1904:9;1883:31;:::i;:::-;1873:41;;1933:40;1969:2;1958:9;1954:18;1933:40;:::i;:::-;1923:50;;2020:2;2009:9;2005:18;1992:32;1982:42;;2075:2;2064:9;2060:18;2047:32;2102:18;2094:6;2091:30;2088:2;;;2139:6;2131;2124:22;2088:2;2167:22;;2220:4;2212:13;;2208:27;-1:-1:-1;2198:2:1;;2254:6;2246;2239:22;2198:2;2282:75;2349:7;2344:2;2331:16;2326:2;2322;2318:11;2282:75;:::i;:::-;2272:85;;;1791:572;;;;;;;:::o;2368:369::-;;;2494:2;2482:9;2473:7;2469:23;2465:32;2462:2;;;2515:6;2507;2500:22;2462:2;2543:31;2564:9;2543:31;:::i;:::-;2533:41;;2624:2;2613:9;2609:18;2596:32;2671:5;2664:13;2657:21;2650:5;2647:32;2637:2;;2698:6;2690;2683:22;2637:2;2726:5;2716:15;;;2452:285;;;;;:::o;2742:266::-;;;2871:2;2859:9;2850:7;2846:23;2842:32;2839:2;;;2892:6;2884;2877:22;2839:2;2920:31;2941:9;2920:31;:::i;:::-;2910:41;2998:2;2983:18;;;;2970:32;;-1:-1:-1;;;2829:179:1:o;3013:257::-;;3124:2;3112:9;3103:7;3099:23;3095:32;3092:2;;;3145:6;3137;3130:22;3092:2;3189:9;3176:23;3208:32;3234:5;3208:32;:::i;3275:261::-;;3397:2;3385:9;3376:7;3372:23;3368:32;3365:2;;;3418:6;3410;3403:22;3365:2;3455:9;3449:16;3474:32;3500:5;3474:32;:::i;3541:482::-;;3663:2;3651:9;3642:7;3638:23;3634:32;3631:2;;;3684:6;3676;3669:22;3631:2;3729:9;3716:23;3762:18;3754:6;3751:30;3748:2;;;3799:6;3791;3784:22;3748:2;3827:22;;3880:4;3872:13;;3868:27;-1:-1:-1;3858:2:1;;3914:6;3906;3899:22;3858:2;3942:75;4009:7;4004:2;3991:16;3986:2;3982;3978:11;3942:75;:::i;4028:190::-;;4140:2;4128:9;4119:7;4115:23;4111:32;4108:2;;;4161:6;4153;4146:22;4108:2;-1:-1:-1;4189:23:1;;4098:120;-1:-1:-1;4098:120:1:o;4223:259::-;;4304:5;4298:12;4331:6;4326:3;4319:19;4347:63;4403:6;4396:4;4391:3;4387:14;4380:4;4373:5;4369:16;4347:63;:::i;:::-;4464:2;4443:15;-1:-1:-1;;4439:29:1;4430:39;;;;4471:4;4426:50;;4274:208;-1:-1:-1;;4274:208:1:o;4487:470::-;;4704:6;4698:13;4720:53;4766:6;4761:3;4754:4;4746:6;4742:17;4720:53;:::i;:::-;4836:13;;4795:16;;;;4858:57;4836:13;4795:16;4892:4;4880:17;;4858:57;:::i;:::-;4931:20;;4674:283;-1:-1:-1;;;;4674:283:1:o;4962:205::-;5162:3;5153:14::o;5172:203::-;-1:-1:-1;;;;;5336:32:1;;;;5318:51;;5306:2;5291:18;;5273:102::o;5380:490::-;-1:-1:-1;;;;;5649:15:1;;;5631:34;;5701:15;;5696:2;5681:18;;5674:43;5748:2;5733:18;;5726:34;;;5796:3;5791:2;5776:18;;5769:31;;;5380:490;;5817:47;;5844:19;;5836:6;5817:47;:::i;:::-;5809:55;5583:287;-1:-1:-1;;;;;;5583:287:1:o;5875:187::-;6040:14;;6033:22;6015:41;;6003:2;5988:18;;5970:92::o;6067:221::-;;6216:2;6205:9;6198:21;6236:46;6278:2;6267:9;6263:18;6255:6;6236:46;:::i;6293:402::-;6495:2;6477:21;;;6534:2;6514:18;;;6507:30;6573:34;6568:2;6553:18;;6546:62;-1:-1:-1;;;6639:2:1;6624:18;;6617:36;6685:3;6670:19;;6467:228::o;6700:406::-;6902:2;6884:21;;;6941:2;6921:18;;;6914:30;6980:34;6975:2;6960:18;;6953:62;-1:-1:-1;;;7046:2:1;7031:18;;7024:40;7096:3;7081:19;;6874:232::o;7111:334::-;7313:2;7295:21;;;7352:2;7332:18;;;7325:30;-1:-1:-1;;;7386:2:1;7371:18;;7364:40;7436:2;7421:18;;7285:160::o;7450:401::-;7652:2;7634:21;;;7691:2;7671:18;;;7664:30;7730:34;7725:2;7710:18;;7703:62;-1:-1:-1;;;7796:2:1;7781:18;;7774:35;7841:3;7826:19;;7624:227::o;7856:342::-;8058:2;8040:21;;;8097:2;8077:18;;;8070:30;-1:-1:-1;;;8131:2:1;8116:18;;8109:48;8189:2;8174:18;;8030:168::o;8203:422::-;8405:2;8387:21;;;8444:2;8424:18;;;8417:30;8483:34;8478:2;8463:18;;8456:62;8554:28;8549:2;8534:18;;8527:56;8615:3;8600:19;;8377:248::o;8630:353::-;8832:2;8814:21;;;8871:2;8851:18;;;8844:30;8910:31;8905:2;8890:18;;8883:59;8974:2;8959:18;;8804:179::o;8988:339::-;9190:2;9172:21;;;9229:2;9209:18;;;9202:30;-1:-1:-1;;;9263:2:1;9248:18;;9241:45;9318:2;9303:18;;9162:165::o;9332:421::-;9534:2;9516:21;;;9573:2;9553:18;;;9546:30;9612:34;9607:2;9592:18;;9585:62;9683:27;9678:2;9663:18;;9656:55;9743:3;9728:19;;9506:247::o;9758:407::-;9960:2;9942:21;;;9999:2;9979:18;;;9972:30;10038:34;10033:2;10018:18;;10011:62;-1:-1:-1;;;10104:2:1;10089:18;;10082:41;10155:3;10140:19;;9932:233::o;10170:402::-;10372:2;10354:21;;;10411:2;10391:18;;;10384:30;10450:34;10445:2;10430:18;;10423:62;-1:-1:-1;;;10516:2:1;10501:18;;10494:36;10562:3;10547:19;;10344:228::o;10577:356::-;10779:2;10761:21;;;10798:18;;;10791:30;10857:34;10852:2;10837:18;;10830:62;10924:2;10909:18;;10751:182::o;10938:411::-;11140:2;11122:21;;;11179:2;11159:18;;;11152:30;11218:34;11213:2;11198:18;;11191:62;-1:-1:-1;;;11284:2:1;11269:18;;11262:45;11339:3;11324:19;;11112:237::o;11354:350::-;11556:2;11538:21;;;11595:2;11575:18;;;11568:30;11634:28;11629:2;11614:18;;11607:56;11695:2;11680:18;;11528:176::o;11709:414::-;11911:2;11893:21;;;11950:2;11930:18;;;11923:30;11989:34;11984:2;11969:18;;11962:62;-1:-1:-1;;;12055:2:1;12040:18;;12033:48;12113:3;12098:19;;11883:240::o;12128:398::-;12330:2;12312:21;;;12369:2;12349:18;;;12342:30;12408:34;12403:2;12388:18;;12381:62;-1:-1:-1;;;12474:2:1;12459:18;;12452:32;12516:3;12501:19;;12302:224::o;12531:415::-;12733:2;12715:21;;;12772:2;12752:18;;;12745:30;12811:34;12806:2;12791:18;;12784:62;-1:-1:-1;;;12877:2:1;12862:18;;12855:49;12936:3;12921:19;;12705:241::o;12951:334::-;13153:2;13135:21;;;13192:2;13172:18;;;13165:30;-1:-1:-1;;;13226:2:1;13211:18;;13204:40;13276:2;13261:18;;13125:160::o;13290:397::-;13492:2;13474:21;;;13531:2;13511:18;;;13504:30;13570:34;13565:2;13550:18;;13543:62;-1:-1:-1;;;13636:2:1;13621:18;;13614:31;13677:3;13662:19;;13464:223::o;13692:404::-;13894:2;13876:21;;;13933:2;13913:18;;;13906:30;13972:34;13967:2;13952:18;;13945:62;-1:-1:-1;;;14038:2:1;14023:18;;14016:38;14086:3;14071:19;;13866:230::o;14101:355::-;14303:2;14285:21;;;14342:2;14322:18;;;14315:30;14381:33;14376:2;14361:18;;14354:61;14447:2;14432:18;;14275:181::o;14877:409::-;15079:2;15061:21;;;15118:2;15098:18;;;15091:30;15157:34;15152:2;15137:18;;15130:62;-1:-1:-1;;;15223:2:1;15208:18;;15201:43;15276:3;15261:19;;15051:235::o;15291:177::-;15437:25;;;15425:2;15410:18;;15392:76::o;15473:128::-;;15544:1;15540:6;15537:1;15534:13;15531:2;;;15550:18;;:::i;:::-;-1:-1:-1;15586:9:1;;15521:80::o;15606:120::-;;15672:1;15662:2;;15677:18;;:::i;:::-;-1:-1:-1;15711:9:1;;15652:74::o;15731:125::-;;15799:1;15796;15793:8;15790:2;;;15804:18;;:::i;:::-;-1:-1:-1;15841:9:1;;15780:76::o;15861:258::-;15933:1;15943:113;15957:6;15954:1;15951:13;15943:113;;;16033:11;;;16027:18;16014:11;;;16007:39;15979:2;15972:10;15943:113;;;16074:6;16071:1;16068:13;16065:2;;;-1:-1:-1;;16109:1:1;16091:16;;16084:27;15914:205::o;16124:380::-;16209:1;16199:12;;16256:1;16246:12;;;16267:2;;16321:4;16313:6;16309:17;16299:27;;16267:2;16374;16366:6;16363:14;16343:18;16340:38;16337:2;;;16420:10;16415:3;16411:20;16408:1;16401:31;16455:4;16452:1;16445:15;16483:4;16480:1;16473:15;16337:2;;16179:325;;;:::o;16509:135::-;;-1:-1:-1;;16569:17:1;;16566:2;;;16589:18;;:::i;:::-;-1:-1:-1;16636:1:1;16625:13;;16556:88::o;16649:112::-;;16707:1;16697:2;;16712:18;;:::i;:::-;-1:-1:-1;16746:9:1;;16687:74::o;16766:127::-;16827:10;16822:3;16818:20;16815:1;16808:31;16858:4;16855:1;16848:15;16882:4;16879:1;16872:15;16898:127;16959:10;16954:3;16950:20;16947:1;16940:31;16990:4;16987:1;16980:15;17014:4;17011:1;17004:15;17030:127;17091:10;17086:3;17082:20;17079:1;17072:31;17122:4;17119:1;17112:15;17146:4;17143:1;17136:15;17162:133;-1:-1:-1;;;;;;17238:32:1;;17228:43;;17218:2;;17285:1;17282;17275:12

Swarm Source

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