ETH Price: $3,005.08 (+4.31%)
Gas: 2 Gwei

Token

Dark Victorian Genesis (DVG)
 

Overview

Max Total Supply

355 DVG

Holders

354

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DVG
0x9f8549b579c6e441147444e8a75266cf150d1cdc
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:
DarkVictorianGenesis

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : darkvictoriangenesis.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    function toString(uint256 value) internal pure returns (string memory) {

        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);
    }
    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);
    }
    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);
    }
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ERC721A.sol
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 = 1;

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

    /**
     * @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 override {
        _transfer(from, to, tokenId);
    }

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

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

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

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

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


    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 DarkVictorianGenesis is ERC721A, Ownable {
    
    uint256 MAX_SUPPLY = 6000;
    uint256 Allremain = 6000;
    uint256 public price = 0.005 ether;
    uint256 MintForWallet = 6000;
    string public base_URI = "";
    string public baseExtension = ".json";
    string public prerevealURL = "ipfs://QmWPznrBXoXjL4kwPMFgevwDxceZUctSK1vo26WGKH99SU/hidden.json/";
    bool public start = true;
 
    mapping (address => uint256) private MintedBalance;

    constructor() ERC721A("Dark Victorian Genesis", "DVG") {}

    function reveal(string memory url) external onlyOwner {
		base_URI = url;
	}

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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


    function pauseStartSwitch() public onlyOwner {
        start = !start;
    }

    function RemainingItem() public view returns (uint256) {
        return Allremain;
    }   
    
    function mint(uint256 quantity) public payable {
        require(start, "Sorry, Minting is paused.");
        require(quantity<=10 , "Sorry, there are only 10 items allowed for each minting.");
        require((totalSupply() + quantity) <= MAX_SUPPLY, "Sorry, There is no more items.");
        
        uint payforNum = quantity;

        if(MintedBalance[msg.sender] == 0){
            payforNum = payforNum - 1;
        }

        require(msg.value >= payforNum * price, "Ether is not enough.");


        _safeMint(msg.sender, quantity);
        MintedBalance[msg.sender] = MintedBalance[msg.sender] + quantity;
        Allremain -= quantity;
    }

    function setprice(uint256 newRate) external onlyOwner {
        price = newRate;
    }
    
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
        _exists(tokenId),
        "ERC721AMetadata: URI query for nonexistent token"
        );
        

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension))
            : prerevealURL;
    }

}

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":[],"name":"RemainingItem","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseStartSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"setprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260016000556117706008556117706009556611c37937e08000600a55611770600b5560405180602001604052806000815250600c9081620000469190620004e2565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200008d9190620004e2565b5060405180608001604052806042815260200162004c3d60429139600e9081620000b89190620004e2565b506001600f60006101000a81548160ff021916908315150217905550348015620000e157600080fd5b506040518060400160405280601681526020017f4461726b20566963746f7269616e2047656e65736973000000000000000000008152506040518060400160405280600381526020017f445647000000000000000000000000000000000000000000000000000000000081525081600190816200015f9190620004e2565b508060029081620001719190620004e2565b50505062000194620001886200019a60201b60201c565b620001a260201b60201c565b620005c9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ea57607f821691505b6020821081036200030057620002ff620002a2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200036a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200032b565b6200037686836200032b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003c3620003bd620003b7846200038e565b62000398565b6200038e565b9050919050565b6000819050919050565b620003df83620003a2565b620003f7620003ee82620003ca565b84845462000338565b825550505050565b600090565b6200040e620003ff565b6200041b818484620003d4565b505050565b5b8181101562000443576200043760008262000404565b60018101905062000421565b5050565b601f82111562000492576200045c8162000306565b62000467846200031b565b8101602085101562000477578190505b6200048f62000486856200031b565b83018262000420565b50505b505050565b600082821c905092915050565b6000620004b76000198460080262000497565b1980831691505092915050565b6000620004d28383620004a4565b9150826002028217905092915050565b620004ed8262000268565b67ffffffffffffffff81111562000509576200050862000273565b5b620005158254620002d1565b6200052282828562000447565b600060209050601f8311600181146200055a576000841562000545578287015190505b620005518582620004c4565b865550620005c1565b601f1984166200056a8662000306565b60005b8281101562000594578489015182556001820191506020850194506020810190506200056d565b86831015620005b45784890151620005b0601f891682620004a4565b8355505b6001600288020188555050505b505050505050565b61466480620005d96000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063d49f0fa511610064578063d49f0fa514610692578063d8210482146106bb578063e985e9c5146106e6578063f2fde38b14610723576101d8565b8063b88d4fde146105d6578063be9a6555146105ff578063c66828621461062a578063c87b56dd14610655576101d8565b8063a035b1fe116100d1578063a035b1fe1461053b578063a0712d6814610566578063a22cb46514610582578063a95a91e1146105ab576101d8565b8063715018a6146104a35780638da5cb5b146104ba57806395d89b41146104e55780639e89033514610510576101d8565b80632f745c591161017a5780634c261247116101495780634c261247146103c35780634f6ccce7146103ec5780636352211e1461042957806370a0823114610466576101d8565b80632f745c59146103165780633ccfd60b1461035357806342842e0e1461035d578063438b630014610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632e84d90e146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c24565b61074c565b6040516102119190612c6c565b60405180910390f35b34801561022657600080fd5b5061022f610896565b60405161023c9190612d17565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d6f565b610928565b6040516102799190612ddd565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e24565b6109ad565b005b3480156102b757600080fd5b506102c0610ac5565b6040516102cd9190612e73565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612e8e565b610adb565b005b34801561030b57600080fd5b50610314610aeb565b005b34801561032257600080fd5b5061033d60048036038101906103389190612e24565b610b93565b60405161034a9190612e73565b60405180910390f35b61035b610d83565b005b34801561036957600080fd5b50610384600480360381019061037f9190612e8e565b610e4f565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612ee1565b610e6f565b6040516103ba9190612fcc565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613123565b610f1d565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612d6f565b610fac565b6040516104209190612e73565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612d6f565b610fff565b60405161045d9190612ddd565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612ee1565b611015565b60405161049a9190612e73565b60405180910390f35b3480156104af57600080fd5b506104b86110fd565b005b3480156104c657600080fd5b506104cf611185565b6040516104dc9190612ddd565b60405180910390f35b3480156104f157600080fd5b506104fa6111af565b6040516105079190612d17565b60405180910390f35b34801561051c57600080fd5b50610525611241565b6040516105329190612d17565b60405180910390f35b34801561054757600080fd5b506105506112cf565b60405161055d9190612e73565b60405180910390f35b610580600480360381019061057b9190612d6f565b6112d5565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613198565b611520565b005b3480156105b757600080fd5b506105c06116a0565b6040516105cd9190612e73565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190613279565b6116aa565b005b34801561060b57600080fd5b50610614611706565b6040516106219190612c6c565b60405180910390f35b34801561063657600080fd5b5061063f611719565b60405161064c9190612d17565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612d6f565b6117a7565b6040516106899190612d17565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612d6f565b6118cc565b005b3480156106c757600080fd5b506106d0611952565b6040516106dd9190612d17565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906132fc565b6119e0565b60405161071a9190612c6c565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612ee1565b611a74565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088f575061088e82611b6b565b5b9050919050565b6060600180546108a59061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d19061336b565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b5050505050905090565b600061093382611bd5565b610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061340e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b882610fff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f906134a0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a47611be2565b73ffffffffffffffffffffffffffffffffffffffff161480610a765750610a7581610a70611be2565b6119e0565b5b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613532565b60405180910390fd5b610ac0838383611bea565b505050565b60006001600054610ad69190613581565b905090565b610ae6838383611c9c565b505050565b610af3611be2565b73ffffffffffffffffffffffffffffffffffffffff16610b11611185565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613601565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000610b9e83611015565b8210610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613693565b60405180910390fd5b6000610be9610ac5565b905060008060005b83811015610d41576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d3357868403610d2a578195505050505050610d7d565b83806001019450505b508080600101915050610bf1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490613725565b60405180910390fd5b92915050565b610d8b611be2565b73ffffffffffffffffffffffffffffffffffffffff16610da9611185565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613601565b60405180910390fd5b610e07611185565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4c573d6000803e3d6000fd5b50565b610e6a838383604051806020016040528060008152506116aa565b505050565b60606000610e7c83611015565b905060008167ffffffffffffffff811115610e9a57610e99612ff8565b5b604051908082528060200260200182016040528015610ec85781602001602082028036833780820191505090505b50905060005b82811015610f1257610ee08582610b93565b828281518110610ef357610ef2613745565b5b6020026020010181815250508080610f0a90613774565b915050610ece565b508092505050919050565b610f25611be2565b73ffffffffffffffffffffffffffffffffffffffff16610f43611185565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613601565b60405180910390fd5b80600c9081610fa89190613968565b5050565b6000610fb6610ac5565b8210610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90613aac565b60405180910390fd5b819050919050565b600061100a826121da565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613b3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611105611be2565b73ffffffffffffffffffffffffffffffffffffffff16611123611185565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613601565b60405180910390fd5b6111836000612374565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111be9061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea9061336b565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b600c805461124e9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461127a9061336b565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b600a5481565b600f60009054906101000a900460ff16611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613baa565b60405180910390fd5b600a811115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90613c3c565b60405180910390fd5b60085481611374610ac5565b61137e9190613c5c565b11156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613cdc565b60405180910390fd5b60008190506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361141b576001816114189190613581565b90505b600a54816114299190613cfc565b34101561146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613d8a565b60405180910390fd5b611475338361243a565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c09190613c5c565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600960008282546115159190613581565b925050819055505050565b611528611be2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613df6565b60405180910390fd5b80600660006115a2611be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164f611be2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116949190612c6c565b60405180910390a35050565b6000600954905090565b6116b5848484611c9c565b6116c184848484612458565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613e88565b60405180910390fd5b50505050565b600f60009054906101000a900460ff1681565b600d80546117269061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546117529061336b565b801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b505050505081565b60606117b282611bd5565b6117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613f1a565b60405180910390fd5b60006117fb6125df565b9050600081511161189657600e80546118139061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461183f9061336b565b801561188c5780601f106118615761010080835404028352916020019161188c565b820191906000526020600020905b81548152906001019060200180831161186f57829003601f168201915b50505050506118c4565b806118a084612671565b600d6040516020016118b493929190613ff9565b6040516020818303038152906040525b915050919050565b6118d4611be2565b73ffffffffffffffffffffffffffffffffffffffff166118f2611185565b73ffffffffffffffffffffffffffffffffffffffff1614611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613601565b60405180910390fd5b80600a8190555050565b600e805461195f9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461198b9061336b565b80156119d85780601f106119ad576101008083540402835291602001916119d8565b820191906000526020600020905b8154815290600101906020018083116119bb57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a7c611be2565b73ffffffffffffffffffffffffffffffffffffffff16611a9a611185565b73ffffffffffffffffffffffffffffffffffffffff1614611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b569061409c565b60405180910390fd5b611b6881612374565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ca7826121da565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cce611be2565b73ffffffffffffffffffffffffffffffffffffffff161480611d2a5750611cf3611be2565b73ffffffffffffffffffffffffffffffffffffffff16611d1284610928565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d465750611d458260000151611d40611be2565b6119e0565b5b905080611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061412e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906141c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090614252565b60405180910390fd5b611e7685858560016127d1565b611e866000848460000151611bea565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361216a576120c981611bd5565b156121695782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d385858560016127d7565b5050505050565b6121e2612b7e565b6121eb82611bd5565b61222a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906142e4565b60405180910390fd5b60008290505b60008110612333576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232457809250505061236f565b50808060019003915050612230565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614376565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124548282604051806020016040528060008152506127dd565b5050565b60006124798473ffffffffffffffffffffffffffffffffffffffff166127ef565b156125d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a2611be2565b8786866040518563ffffffff1660e01b81526004016124c494939291906143eb565b6020604051808303816000875af192505050801561250057506040513d601f19601f820116820180604052508101906124fd919061444c565b60015b612582573d8060008114612530576040519150601f19603f3d011682016040523d82523d6000602084013e612535565b606091505b50600081510361257a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257190613e88565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d7565b600190505b949350505050565b6060600c80546125ee9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461261a9061336b565b80156126675780601f1061263c57610100808354040283529160200191612667565b820191906000526020600020905b81548152906001019060200180831161264a57829003601f168201915b5050505050905090565b6060600082036126b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127cc565b600082905060005b600082146126ea5780806126d390613774565b915050600a826126e391906144a8565b91506126c0565b60008167ffffffffffffffff81111561270657612705612ff8565b5b6040519080825280601f01601f1916602001820160405280156127385781602001600182028036833780820191505090505b5090505b600085146127c5576001826127519190613581565b9150600a8561276091906144d9565b603061276c9190613c5c565b60f81b81838151811061278257612781613745565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127be91906144a8565b945061273c565b8093505050505b919050565b50505050565b50505050565b6127ea8383836001612802565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286e9061457c565b60405180910390fd5b600084036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b19061460e565b60405180910390fd5b6128c760008683876127d1565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b6157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612b4c57612b0c6000888488612458565b612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290613e88565b60405180910390fd5b5b81806001019250508080600101915050612a95565b508060008190555050612b7760008683876127d7565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0181612bcc565b8114612c0c57600080fd5b50565b600081359050612c1e81612bf8565b92915050565b600060208284031215612c3a57612c39612bc2565b5b6000612c4884828501612c0f565b91505092915050565b60008115159050919050565b612c6681612c51565b82525050565b6000602082019050612c816000830184612c5d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc1578082015181840152602081019050612ca6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ce982612c87565b612cf38185612c92565b9350612d03818560208601612ca3565b612d0c81612ccd565b840191505092915050565b60006020820190508181036000830152612d318184612cde565b905092915050565b6000819050919050565b612d4c81612d39565b8114612d5757600080fd5b50565b600081359050612d6981612d43565b92915050565b600060208284031215612d8557612d84612bc2565b5b6000612d9384828501612d5a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dc782612d9c565b9050919050565b612dd781612dbc565b82525050565b6000602082019050612df26000830184612dce565b92915050565b612e0181612dbc565b8114612e0c57600080fd5b50565b600081359050612e1e81612df8565b92915050565b60008060408385031215612e3b57612e3a612bc2565b5b6000612e4985828601612e0f565b9250506020612e5a85828601612d5a565b9150509250929050565b612e6d81612d39565b82525050565b6000602082019050612e886000830184612e64565b92915050565b600080600060608486031215612ea757612ea6612bc2565b5b6000612eb586828701612e0f565b9350506020612ec686828701612e0f565b9250506040612ed786828701612d5a565b9150509250925092565b600060208284031215612ef757612ef6612bc2565b5b6000612f0584828501612e0f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4381612d39565b82525050565b6000612f558383612f3a565b60208301905092915050565b6000602082019050919050565b6000612f7982612f0e565b612f838185612f19565b9350612f8e83612f2a565b8060005b83811015612fbf578151612fa68882612f49565b9750612fb183612f61565b925050600181019050612f92565b5085935050505092915050565b60006020820190508181036000830152612fe68184612f6e565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303082612ccd565b810181811067ffffffffffffffff8211171561304f5761304e612ff8565b5b80604052505050565b6000613062612bb8565b905061306e8282613027565b919050565b600067ffffffffffffffff82111561308e5761308d612ff8565b5b61309782612ccd565b9050602081019050919050565b82818337600083830152505050565b60006130c66130c184613073565b613058565b9050828152602081018484840111156130e2576130e1612ff3565b5b6130ed8482856130a4565b509392505050565b600082601f83011261310a57613109612fee565b5b813561311a8482602086016130b3565b91505092915050565b60006020828403121561313957613138612bc2565b5b600082013567ffffffffffffffff81111561315757613156612bc7565b5b613163848285016130f5565b91505092915050565b61317581612c51565b811461318057600080fd5b50565b6000813590506131928161316c565b92915050565b600080604083850312156131af576131ae612bc2565b5b60006131bd85828601612e0f565b92505060206131ce85828601613183565b9150509250929050565b600067ffffffffffffffff8211156131f3576131f2612ff8565b5b6131fc82612ccd565b9050602081019050919050565b600061321c613217846131d8565b613058565b90508281526020810184848401111561323857613237612ff3565b5b6132438482856130a4565b509392505050565b600082601f8301126132605761325f612fee565b5b8135613270848260208601613209565b91505092915050565b6000806000806080858703121561329357613292612bc2565b5b60006132a187828801612e0f565b94505060206132b287828801612e0f565b93505060406132c387828801612d5a565b925050606085013567ffffffffffffffff8111156132e4576132e3612bc7565b5b6132f08782880161324b565b91505092959194509250565b6000806040838503121561331357613312612bc2565b5b600061332185828601612e0f565b925050602061333285828601612e0f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338357607f821691505b6020821081036133965761339561333c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006133f8602d83612c92565b91506134038261339c565b604082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061348a602283612c92565b91506134958261342e565b604082019050919050565b600060208201905081810360008301526134b98161347d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061351c603983612c92565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358c82612d39565b915061359783612d39565b92508282039050818111156135af576135ae613552565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135eb602083612c92565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061367d602283612c92565b915061368882613621565b604082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061370f602e83612c92565b915061371a826136b3565b604082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061377f82612d39565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137b1576137b0613552565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261381e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137e1565b61382886836137e1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386561386061385b84612d39565b613840565b612d39565b9050919050565b6000819050919050565b61387f8361384a565b61389361388b8261386c565b8484546137ee565b825550505050565b600090565b6138a861389b565b6138b3818484613876565b505050565b5b818110156138d7576138cc6000826138a0565b6001810190506138b9565b5050565b601f82111561391c576138ed816137bc565b6138f6846137d1565b81016020851015613905578190505b613919613911856137d1565b8301826138b8565b50505b505050565b600082821c905092915050565b600061393f60001984600802613921565b1980831691505092915050565b6000613958838361392e565b9150826002028217905092915050565b61397182612c87565b67ffffffffffffffff81111561398a57613989612ff8565b5b613994825461336b565b61399f8282856138db565b600060209050601f8311600181146139d257600084156139c0578287015190505b6139ca858261394c565b865550613a32565b601f1984166139e0866137bc565b60005b82811015613a08578489015182556001820191506020850194506020810190506139e3565b86831015613a255784890151613a21601f89168261392e565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602383612c92565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613b28602b83612c92565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f536f7272792c204d696e74696e67206973207061757365642e00000000000000600082015250565b6000613b94601983612c92565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f536f7272792c20746865726520617265206f6e6c79203130206974656d73206160008201527f6c6c6f77656420666f722065616368206d696e74696e672e0000000000000000602082015250565b6000613c26603883612c92565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b6000613c6782612d39565b9150613c7283612d39565b9250828201905080821115613c8a57613c89613552565b5b92915050565b7f536f7272792c205468657265206973206e6f206d6f7265206974656d732e0000600082015250565b6000613cc6601e83612c92565b9150613cd182613c90565b602082019050919050565b60006020820190508181036000830152613cf581613cb9565b9050919050565b6000613d0782612d39565b9150613d1283612d39565b9250828202613d2081612d39565b91508282048414831517613d3757613d36613552565b5b5092915050565b7f4574686572206973206e6f7420656e6f7567682e000000000000000000000000600082015250565b6000613d74601483612c92565b9150613d7f82613d3e565b602082019050919050565b60006020820190508181036000830152613da381613d67565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613de0601a83612c92565b9150613deb82613daa565b602082019050919050565b60006020820190508181036000830152613e0f81613dd3565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613e72603383612c92565b9150613e7d82613e16565b604082019050919050565b60006020820190508181036000830152613ea181613e65565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613f04603083612c92565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b600081905092915050565b6000613f5082612c87565b613f5a8185613f3a565b9350613f6a818560208601612ca3565b80840191505092915050565b60008154613f838161336b565b613f8d8186613f3a565b94506001821660008114613fa85760018114613fbd57613ff0565b60ff1983168652811515820286019350613ff0565b613fc6856137bc565b60005b83811015613fe857815481890152600182019150602081019050613fc9565b838801955050505b50505092915050565b60006140058286613f45565b91506140118285613f45565b915061401d8284613f76565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614086602683612c92565b91506140918261402a565b604082019050919050565b600060208201905081810360008301526140b581614079565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614118603283612c92565b9150614123826140bc565b604082019050919050565b600060208201905081810360008301526141478161410b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006141aa602683612c92565b91506141b58261414e565b604082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061423c602583612c92565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006142ce602a83612c92565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614360602f83612c92565b915061436b82614304565b604082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143bd82614396565b6143c781856143a1565b93506143d7818560208601612ca3565b6143e081612ccd565b840191505092915050565b60006080820190506144006000830187612dce565b61440d6020830186612dce565b61441a6040830185612e64565b818103606083015261442c81846143b2565b905095945050505050565b60008151905061444681612bf8565b92915050565b60006020828403121561446257614461612bc2565b5b600061447084828501614437565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144b382612d39565b91506144be83612d39565b9250826144ce576144cd614479565b5b828204905092915050565b60006144e482612d39565b91506144ef83612d39565b9250826144ff576144fe614479565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614566602183612c92565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006145f8602883612c92565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b905091905056fea2646970667358221220e8cb9f123552b1098c5cb970891ea16b7c420a4b37135e275e326ad757885cc364736f6c63430008110033697066733a2f2f516d57507a6e7242586f586a4c346b77504d4667657677447863655a556374534b31766f323657474b48393953552f68696464656e2e6a736f6e2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063d49f0fa511610064578063d49f0fa514610692578063d8210482146106bb578063e985e9c5146106e6578063f2fde38b14610723576101d8565b8063b88d4fde146105d6578063be9a6555146105ff578063c66828621461062a578063c87b56dd14610655576101d8565b8063a035b1fe116100d1578063a035b1fe1461053b578063a0712d6814610566578063a22cb46514610582578063a95a91e1146105ab576101d8565b8063715018a6146104a35780638da5cb5b146104ba57806395d89b41146104e55780639e89033514610510576101d8565b80632f745c591161017a5780634c261247116101495780634c261247146103c35780634f6ccce7146103ec5780636352211e1461042957806370a0823114610466576101d8565b80632f745c59146103165780633ccfd60b1461035357806342842e0e1461035d578063438b630014610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632e84d90e146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c24565b61074c565b6040516102119190612c6c565b60405180910390f35b34801561022657600080fd5b5061022f610896565b60405161023c9190612d17565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612d6f565b610928565b6040516102799190612ddd565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612e24565b6109ad565b005b3480156102b757600080fd5b506102c0610ac5565b6040516102cd9190612e73565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612e8e565b610adb565b005b34801561030b57600080fd5b50610314610aeb565b005b34801561032257600080fd5b5061033d60048036038101906103389190612e24565b610b93565b60405161034a9190612e73565b60405180910390f35b61035b610d83565b005b34801561036957600080fd5b50610384600480360381019061037f9190612e8e565b610e4f565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612ee1565b610e6f565b6040516103ba9190612fcc565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613123565b610f1d565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612d6f565b610fac565b6040516104209190612e73565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612d6f565b610fff565b60405161045d9190612ddd565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612ee1565b611015565b60405161049a9190612e73565b60405180910390f35b3480156104af57600080fd5b506104b86110fd565b005b3480156104c657600080fd5b506104cf611185565b6040516104dc9190612ddd565b60405180910390f35b3480156104f157600080fd5b506104fa6111af565b6040516105079190612d17565b60405180910390f35b34801561051c57600080fd5b50610525611241565b6040516105329190612d17565b60405180910390f35b34801561054757600080fd5b506105506112cf565b60405161055d9190612e73565b60405180910390f35b610580600480360381019061057b9190612d6f565b6112d5565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613198565b611520565b005b3480156105b757600080fd5b506105c06116a0565b6040516105cd9190612e73565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f89190613279565b6116aa565b005b34801561060b57600080fd5b50610614611706565b6040516106219190612c6c565b60405180910390f35b34801561063657600080fd5b5061063f611719565b60405161064c9190612d17565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612d6f565b6117a7565b6040516106899190612d17565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612d6f565b6118cc565b005b3480156106c757600080fd5b506106d0611952565b6040516106dd9190612d17565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906132fc565b6119e0565b60405161071a9190612c6c565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612ee1565b611a74565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087f57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088f575061088e82611b6b565b5b9050919050565b6060600180546108a59061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d19061336b565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b5050505050905090565b600061093382611bd5565b610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061340e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b882610fff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f906134a0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a47611be2565b73ffffffffffffffffffffffffffffffffffffffff161480610a765750610a7581610a70611be2565b6119e0565b5b610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613532565b60405180910390fd5b610ac0838383611bea565b505050565b60006001600054610ad69190613581565b905090565b610ae6838383611c9c565b505050565b610af3611be2565b73ffffffffffffffffffffffffffffffffffffffff16610b11611185565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613601565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000610b9e83611015565b8210610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613693565b60405180910390fd5b6000610be9610ac5565b905060008060005b83811015610d41576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d3357868403610d2a578195505050505050610d7d565b83806001019450505b508080600101915050610bf1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490613725565b60405180910390fd5b92915050565b610d8b611be2565b73ffffffffffffffffffffffffffffffffffffffff16610da9611185565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613601565b60405180910390fd5b610e07611185565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4c573d6000803e3d6000fd5b50565b610e6a838383604051806020016040528060008152506116aa565b505050565b60606000610e7c83611015565b905060008167ffffffffffffffff811115610e9a57610e99612ff8565b5b604051908082528060200260200182016040528015610ec85781602001602082028036833780820191505090505b50905060005b82811015610f1257610ee08582610b93565b828281518110610ef357610ef2613745565b5b6020026020010181815250508080610f0a90613774565b915050610ece565b508092505050919050565b610f25611be2565b73ffffffffffffffffffffffffffffffffffffffff16610f43611185565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613601565b60405180910390fd5b80600c9081610fa89190613968565b5050565b6000610fb6610ac5565b8210610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90613aac565b60405180910390fd5b819050919050565b600061100a826121da565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613b3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611105611be2565b73ffffffffffffffffffffffffffffffffffffffff16611123611185565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090613601565b60405180910390fd5b6111836000612374565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546111be9061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea9061336b565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b5050505050905090565b600c805461124e9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461127a9061336b565b80156112c75780601f1061129c576101008083540402835291602001916112c7565b820191906000526020600020905b8154815290600101906020018083116112aa57829003601f168201915b505050505081565b600a5481565b600f60009054906101000a900460ff16611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90613baa565b60405180910390fd5b600a811115611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90613c3c565b60405180910390fd5b60085481611374610ac5565b61137e9190613c5c565b11156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690613cdc565b60405180910390fd5b60008190506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361141b576001816114189190613581565b90505b600a54816114299190613cfc565b34101561146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613d8a565b60405180910390fd5b611475338361243a565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c09190613c5c565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600960008282546115159190613581565b925050819055505050565b611528611be2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613df6565b60405180910390fd5b80600660006115a2611be2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661164f611be2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116949190612c6c565b60405180910390a35050565b6000600954905090565b6116b5848484611c9c565b6116c184848484612458565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613e88565b60405180910390fd5b50505050565b600f60009054906101000a900460ff1681565b600d80546117269061336b565b80601f01602080910402602001604051908101604052809291908181526020018280546117529061336b565b801561179f5780601f106117745761010080835404028352916020019161179f565b820191906000526020600020905b81548152906001019060200180831161178257829003601f168201915b505050505081565b60606117b282611bd5565b6117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613f1a565b60405180910390fd5b60006117fb6125df565b9050600081511161189657600e80546118139061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461183f9061336b565b801561188c5780601f106118615761010080835404028352916020019161188c565b820191906000526020600020905b81548152906001019060200180831161186f57829003601f168201915b50505050506118c4565b806118a084612671565b600d6040516020016118b493929190613ff9565b6040516020818303038152906040525b915050919050565b6118d4611be2565b73ffffffffffffffffffffffffffffffffffffffff166118f2611185565b73ffffffffffffffffffffffffffffffffffffffff1614611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613601565b60405180910390fd5b80600a8190555050565b600e805461195f9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461198b9061336b565b80156119d85780601f106119ad576101008083540402835291602001916119d8565b820191906000526020600020905b8154815290600101906020018083116119bb57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a7c611be2565b73ffffffffffffffffffffffffffffffffffffffff16611a9a611185565b73ffffffffffffffffffffffffffffffffffffffff1614611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613601565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b569061409c565b60405180910390fd5b611b6881612374565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ca7826121da565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cce611be2565b73ffffffffffffffffffffffffffffffffffffffff161480611d2a5750611cf3611be2565b73ffffffffffffffffffffffffffffffffffffffff16611d1284610928565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d465750611d458260000151611d40611be2565b6119e0565b5b905080611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061412e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906141c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090614252565b60405180910390fd5b611e7685858560016127d1565b611e866000848460000151611bea565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361216a576120c981611bd5565b156121695782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d385858560016127d7565b5050505050565b6121e2612b7e565b6121eb82611bd5565b61222a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612221906142e4565b60405180910390fd5b60008290505b60008110612333576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232457809250505061236f565b50808060019003915050612230565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614376565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124548282604051806020016040528060008152506127dd565b5050565b60006124798473ffffffffffffffffffffffffffffffffffffffff166127ef565b156125d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a2611be2565b8786866040518563ffffffff1660e01b81526004016124c494939291906143eb565b6020604051808303816000875af192505050801561250057506040513d601f19601f820116820180604052508101906124fd919061444c565b60015b612582573d8060008114612530576040519150601f19603f3d011682016040523d82523d6000602084013e612535565b606091505b50600081510361257a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257190613e88565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d7565b600190505b949350505050565b6060600c80546125ee9061336b565b80601f016020809104026020016040519081016040528092919081815260200182805461261a9061336b565b80156126675780601f1061263c57610100808354040283529160200191612667565b820191906000526020600020905b81548152906001019060200180831161264a57829003601f168201915b5050505050905090565b6060600082036126b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127cc565b600082905060005b600082146126ea5780806126d390613774565b915050600a826126e391906144a8565b91506126c0565b60008167ffffffffffffffff81111561270657612705612ff8565b5b6040519080825280601f01601f1916602001820160405280156127385781602001600182028036833780820191505090505b5090505b600085146127c5576001826127519190613581565b9150600a8561276091906144d9565b603061276c9190613c5c565b60f81b81838151811061278257612781613745565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127be91906144a8565b945061273c565b8093505050505b919050565b50505050565b50505050565b6127ea8383836001612802565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286e9061457c565b60405180910390fd5b600084036128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b19061460e565b60405180910390fd5b6128c760008683876127d1565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612b6157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612b4c57612b0c6000888488612458565b612b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4290613e88565b60405180910390fd5b5b81806001019250508080600101915050612a95565b508060008190555050612b7760008683876127d7565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0181612bcc565b8114612c0c57600080fd5b50565b600081359050612c1e81612bf8565b92915050565b600060208284031215612c3a57612c39612bc2565b5b6000612c4884828501612c0f565b91505092915050565b60008115159050919050565b612c6681612c51565b82525050565b6000602082019050612c816000830184612c5d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc1578082015181840152602081019050612ca6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ce982612c87565b612cf38185612c92565b9350612d03818560208601612ca3565b612d0c81612ccd565b840191505092915050565b60006020820190508181036000830152612d318184612cde565b905092915050565b6000819050919050565b612d4c81612d39565b8114612d5757600080fd5b50565b600081359050612d6981612d43565b92915050565b600060208284031215612d8557612d84612bc2565b5b6000612d9384828501612d5a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dc782612d9c565b9050919050565b612dd781612dbc565b82525050565b6000602082019050612df26000830184612dce565b92915050565b612e0181612dbc565b8114612e0c57600080fd5b50565b600081359050612e1e81612df8565b92915050565b60008060408385031215612e3b57612e3a612bc2565b5b6000612e4985828601612e0f565b9250506020612e5a85828601612d5a565b9150509250929050565b612e6d81612d39565b82525050565b6000602082019050612e886000830184612e64565b92915050565b600080600060608486031215612ea757612ea6612bc2565b5b6000612eb586828701612e0f565b9350506020612ec686828701612e0f565b9250506040612ed786828701612d5a565b9150509250925092565b600060208284031215612ef757612ef6612bc2565b5b6000612f0584828501612e0f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4381612d39565b82525050565b6000612f558383612f3a565b60208301905092915050565b6000602082019050919050565b6000612f7982612f0e565b612f838185612f19565b9350612f8e83612f2a565b8060005b83811015612fbf578151612fa68882612f49565b9750612fb183612f61565b925050600181019050612f92565b5085935050505092915050565b60006020820190508181036000830152612fe68184612f6e565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303082612ccd565b810181811067ffffffffffffffff8211171561304f5761304e612ff8565b5b80604052505050565b6000613062612bb8565b905061306e8282613027565b919050565b600067ffffffffffffffff82111561308e5761308d612ff8565b5b61309782612ccd565b9050602081019050919050565b82818337600083830152505050565b60006130c66130c184613073565b613058565b9050828152602081018484840111156130e2576130e1612ff3565b5b6130ed8482856130a4565b509392505050565b600082601f83011261310a57613109612fee565b5b813561311a8482602086016130b3565b91505092915050565b60006020828403121561313957613138612bc2565b5b600082013567ffffffffffffffff81111561315757613156612bc7565b5b613163848285016130f5565b91505092915050565b61317581612c51565b811461318057600080fd5b50565b6000813590506131928161316c565b92915050565b600080604083850312156131af576131ae612bc2565b5b60006131bd85828601612e0f565b92505060206131ce85828601613183565b9150509250929050565b600067ffffffffffffffff8211156131f3576131f2612ff8565b5b6131fc82612ccd565b9050602081019050919050565b600061321c613217846131d8565b613058565b90508281526020810184848401111561323857613237612ff3565b5b6132438482856130a4565b509392505050565b600082601f8301126132605761325f612fee565b5b8135613270848260208601613209565b91505092915050565b6000806000806080858703121561329357613292612bc2565b5b60006132a187828801612e0f565b94505060206132b287828801612e0f565b93505060406132c387828801612d5a565b925050606085013567ffffffffffffffff8111156132e4576132e3612bc7565b5b6132f08782880161324b565b91505092959194509250565b6000806040838503121561331357613312612bc2565b5b600061332185828601612e0f565b925050602061333285828601612e0f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061338357607f821691505b6020821081036133965761339561333c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006133f8602d83612c92565b91506134038261339c565b604082019050919050565b60006020820190508181036000830152613427816133eb565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061348a602283612c92565b91506134958261342e565b604082019050919050565b600060208201905081810360008301526134b98161347d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061351c603983612c92565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358c82612d39565b915061359783612d39565b92508282039050818111156135af576135ae613552565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135eb602083612c92565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061367d602283612c92565b915061368882613621565b604082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061370f602e83612c92565b915061371a826136b3565b604082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061377f82612d39565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137b1576137b0613552565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261381e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137e1565b61382886836137e1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061386561386061385b84612d39565b613840565b612d39565b9050919050565b6000819050919050565b61387f8361384a565b61389361388b8261386c565b8484546137ee565b825550505050565b600090565b6138a861389b565b6138b3818484613876565b505050565b5b818110156138d7576138cc6000826138a0565b6001810190506138b9565b5050565b601f82111561391c576138ed816137bc565b6138f6846137d1565b81016020851015613905578190505b613919613911856137d1565b8301826138b8565b50505b505050565b600082821c905092915050565b600061393f60001984600802613921565b1980831691505092915050565b6000613958838361392e565b9150826002028217905092915050565b61397182612c87565b67ffffffffffffffff81111561398a57613989612ff8565b5b613994825461336b565b61399f8282856138db565b600060209050601f8311600181146139d257600084156139c0578287015190505b6139ca858261394c565b865550613a32565b601f1984166139e0866137bc565b60005b82811015613a08578489015182556001820191506020850194506020810190506139e3565b86831015613a255784890151613a21601f89168261392e565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602383612c92565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613b28602b83612c92565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f536f7272792c204d696e74696e67206973207061757365642e00000000000000600082015250565b6000613b94601983612c92565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f536f7272792c20746865726520617265206f6e6c79203130206974656d73206160008201527f6c6c6f77656420666f722065616368206d696e74696e672e0000000000000000602082015250565b6000613c26603883612c92565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b6000613c6782612d39565b9150613c7283612d39565b9250828201905080821115613c8a57613c89613552565b5b92915050565b7f536f7272792c205468657265206973206e6f206d6f7265206974656d732e0000600082015250565b6000613cc6601e83612c92565b9150613cd182613c90565b602082019050919050565b60006020820190508181036000830152613cf581613cb9565b9050919050565b6000613d0782612d39565b9150613d1283612d39565b9250828202613d2081612d39565b91508282048414831517613d3757613d36613552565b5b5092915050565b7f4574686572206973206e6f7420656e6f7567682e000000000000000000000000600082015250565b6000613d74601483612c92565b9150613d7f82613d3e565b602082019050919050565b60006020820190508181036000830152613da381613d67565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613de0601a83612c92565b9150613deb82613daa565b602082019050919050565b60006020820190508181036000830152613e0f81613dd3565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613e72603383612c92565b9150613e7d82613e16565b604082019050919050565b60006020820190508181036000830152613ea181613e65565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613f04603083612c92565b9150613f0f82613ea8565b604082019050919050565b60006020820190508181036000830152613f3381613ef7565b9050919050565b600081905092915050565b6000613f5082612c87565b613f5a8185613f3a565b9350613f6a818560208601612ca3565b80840191505092915050565b60008154613f838161336b565b613f8d8186613f3a565b94506001821660008114613fa85760018114613fbd57613ff0565b60ff1983168652811515820286019350613ff0565b613fc6856137bc565b60005b83811015613fe857815481890152600182019150602081019050613fc9565b838801955050505b50505092915050565b60006140058286613f45565b91506140118285613f45565b915061401d8284613f76565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614086602683612c92565b91506140918261402a565b604082019050919050565b600060208201905081810360008301526140b581614079565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614118603283612c92565b9150614123826140bc565b604082019050919050565b600060208201905081810360008301526141478161410b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006141aa602683612c92565b91506141b58261414e565b604082019050919050565b600060208201905081810360008301526141d98161419d565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061423c602583612c92565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006142ce602a83612c92565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614360602f83612c92565b915061436b82614304565b604082019050919050565b6000602082019050818103600083015261438f81614353565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143bd82614396565b6143c781856143a1565b93506143d7818560208601612ca3565b6143e081612ccd565b840191505092915050565b60006080820190506144006000830187612dce565b61440d6020830186612dce565b61441a6040830185612e64565b818103606083015261442c81846143b2565b905095945050505050565b60008151905061444681612bf8565b92915050565b60006020828403121561446257614461612bc2565b5b600061447084828501614437565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144b382612d39565b91506144be83612d39565b9250826144ce576144cd614479565b5b828204905092915050565b60006144e482612d39565b91506144ef83612d39565b9250826144ff576144fe614479565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614566602183612c92565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006145f8602883612c92565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b905091905056fea2646970667358221220e8cb9f123552b1098c5cb970891ea16b7c420a4b37135e275e326ad757885cc364736f6c63430008110033

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.