ETH Price: $2,624.55 (+1.25%)

Token

CyberneticCats (CC)
 

Overview

Max Total Supply

2,222 CC

Holders

314

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CC
0xb19bcc00bdcc0a63f3858a017f37d6a0c67c284e
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:
CyberneticCats

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : CyberneticCats.sol
// SPDX-Lisence-Identifier: UNLISENCED
pragma solidity ^0.8.16;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract CyberneticCats is ERC721, Ownable {
    uint256 public mintPrice;
    uint256 public totalSupply;
    uint256 public maxSupply;
    uint256 public maxPerWallet;
    bool public isPublicMintEnabled;
    string internal baseTokenUri;
    address payable public withdrawWallet;
    mapping(address => uint256) public walletMints;

    constructor() payable ERC721('CyberneticCats', 'CC') {
        mintPrice = 0.00 ether;
        totalSupply = 0;
        maxSupply = 2222;
        maxPerWallet = 5;
        //set withdraw wallet address
    }

    function setIsPublicMintEnabled(bool isPublicMintEnabled_) external onlyOwner {
        isPublicMintEnabled = isPublicMintEnabled_;
    }

    function setBaseTokenUri(string calldata baseTokenUri_) external onlyOwner {
        baseTokenUri = baseTokenUri_;
    }

    function tokenURI(uint256 tokenId_) public view override returns (string memory) {
        require(_exists(tokenId_), 'Token does not exist!');
        return string(abi.encodePacked(baseTokenUri, Strings.toString(tokenId_), ".json"));
    }

    function withdraw() external onlyOwner {
        (bool success, ) = withdrawWallet.call{ value: address(this).balance }('');
        require(success, 'withdraw failed');
    }

    function mint(uint256 quantity_) public payable {
        require(isPublicMintEnabled, 'minting not enabled');
        require(msg.value == quantity_ * mintPrice, 'wrong mint value');
        require(totalSupply + quantity_ <= maxSupply, 'sold out');
        require(walletMints[msg.sender] + quantity_ <= maxPerWallet, 'exceed max wallet');
        require(balanceOf(msg.sender) <= maxPerWallet ,'exceed max wallet');

        for (uint256 i = 0; i < quantity_; i++) {
            uint256 newTokenId = totalSupply + 1;
            totalSupply++;
            _safeMint(msg.sender, newTokenId);
        }
    }
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 5 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 6 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.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);
}

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 9 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 10 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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;
    }
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenUri_","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicMintEnabled_","type":"bool"}],"name":"setIsPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600e81526020017f43796265726e65746963436174730000000000000000000000000000000000008152506040518060400160405280600281526020017f4343000000000000000000000000000000000000000000000000000000000000815250816000908162000081919062000425565b50806001908162000093919062000425565b505050620000b6620000aa620000dd60201b60201c565b620000e560201b60201c565b600060078190555060006008819055506108ae6009819055506005600a819055506200050c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022d57607f821691505b602082108103620002435762000242620001e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200026e565b620002b986836200026e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030662000300620002fa84620002d1565b620002db565b620002d1565b9050919050565b6000819050919050565b6200032283620002e5565b6200033a62000331826200030d565b8484546200027b565b825550505050565b600090565b6200035162000342565b6200035e81848462000317565b505050565b5b8181101562000386576200037a60008262000347565b60018101905062000364565b5050565b601f821115620003d5576200039f8162000249565b620003aa846200025e565b81016020851015620003ba578190505b620003d2620003c9856200025e565b83018262000363565b50505b505050565b600082821c905092915050565b6000620003fa60001984600802620003da565b1980831691505092915050565b6000620004158383620003e7565b9150826002028217905092915050565b6200043082620001ab565b67ffffffffffffffff8111156200044c576200044b620001b6565b5b62000458825462000214565b620004658282856200038a565b600060209050601f8311600181146200049d576000841562000488578287015190505b62000494858262000407565b86555062000504565b601f198416620004ad8662000249565b60005b82811015620004d757848901518255600182019150602085019450602081019050620004b0565b86831015620004f75784890151620004f3601f891682620003e7565b8355505b6001600288020188555050505b505050505050565b61366a806200051c6000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190611f08565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee9190611f8f565b610674565b6040516102009190611f08565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b919061204c565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906120a4565b6107e8565b6040516102689190612112565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612159565b61082e565b005b3480156102a657600080fd5b506102af610945565b6040516102bc91906121a8565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906121ef565b61094b565b005b3480156102fa57600080fd5b506103156004803603810190610310919061221c565b610970565b005b34801561032357600080fd5b5061032c6109d0565b005b34801561033a57600080fd5b506103556004803603810190610350919061221c565b610aa9565b005b34801561036357600080fd5b5061036c610ac9565b60405161037991906121a8565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906120a4565b610acf565b6040516103b69190612112565b60405180910390f35b3480156103cb57600080fd5b506103d4610b80565b6040516103e191906121a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061226f565b610b86565b60405161041e91906121a8565b60405180910390f35b34801561043357600080fd5b5061043c610c3d565b005b34801561044a57600080fd5b50610453610c51565b60405161046091906122bd565b60405180910390f35b34801561047557600080fd5b5061047e610c77565b60405161048b9190612112565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061233d565b610ca1565b005b3480156104c957600080fd5b506104d2610cbf565b6040516104df919061204c565b60405180910390f35b61050260048036038101906104fd91906120a4565b610d51565b005b34801561051057600080fd5b5061052b6004803603810190610526919061238a565b610f75565b005b34801561053957600080fd5b50610554600480360381019061054f91906124fa565b610f8b565b005b34801561056257600080fd5b5061057d600480360381019061057891906120a4565b610fed565b60405161058a919061204c565b60405180910390f35b34801561059f57600080fd5b506105a8611069565b6040516105b591906121a8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061257d565b61106f565b6040516105f29190611f08565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061226f565b611103565b60405161062f91906121a8565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061226f565b61111b565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261119e565b5b9050919050565b606060008054610765906125ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610791906125ec565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611208565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610acf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a09061268f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611253565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611253565b61106f565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612721565b60405180910390fd5b610940838361125b565b505050565b60085481565b610953611314565b80600b60006101000a81548160ff02191690831515021790555050565b61098161097b611253565b82611392565b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906127b3565b60405180910390fd5b6109cb838383611427565b505050565b6109d8611314565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a2090612804565b60006040518083038185875af1925050503d8060008114610a5d576040519150601f19603f3d011682016040523d82523d6000602084013e610a62565b606091505b5050905080610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612865565b60405180910390fd5b50565b610ac483838360405180602001604052806000815250610f8b565b505050565b600a5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e906128d1565b60405180910390fd5b80915050919050565b60075481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90612963565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c45611314565b610c4f600061168d565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ca9611314565b8181600c9182610cba929190612b3a565b505050565b606060018054610cce906125ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa906125ec565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790612c56565b60405180910390fd5b60075481610dae9190612ca5565b3414610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690612d4b565b60405180910390fd5b60095481600854610e009190612d6b565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612deb565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8f9190612d6b565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790612e57565b60405180910390fd5b600a54610edc33610b86565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612e57565b60405180910390fd5b60005b81811015610f715760006001600854610f399190612d6b565b905060086000815480929190610f4e90612e77565b9190505550610f5d3382611753565b508080610f6990612e77565b915050610f20565b5050565b610f87610f80611253565b8383611771565b5050565b610f9c610f96611253565b83611392565b610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906127b3565b60405180910390fd5b610fe7848484846118dd565b50505050565b6060610ff882611939565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90612f0b565b60405180910390fd5b600c611042836119a5565b604051602001611053929190613036565b6040516020818303038152906040529050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b611123611314565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906130d7565b60405180910390fd5b61119b8161168d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61121181611939565b611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906128d1565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ce83610acf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61131c611253565b73ffffffffffffffffffffffffffffffffffffffff1661133a610c77565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613143565b60405180910390fd5b565b60008061139e83610acf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113e057506113df818561106f565b5b8061141e57508373ffffffffffffffffffffffffffffffffffffffff16611406846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661144782610acf565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906131d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613267565b60405180910390fd5b611517838383611b05565b61152260008261125b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190613287565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c99190612d6b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611688838383611b0a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61176d828260405180602001604052806000815250611b0f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613307565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d09190611f08565b60405180910390a3505050565b6118e8848484611427565b6118f484848484611b6a565b611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613399565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082036119ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b00565b600082905060005b60008214611a1e578080611a0790612e77565b915050600a82611a1791906133e8565b91506119f4565b60008167ffffffffffffffff811115611a3a57611a396123cf565b5b6040519080825280601f01601f191660200182016040528015611a6c5781602001600182028036833780820191505090505b5090505b60008514611af957600182611a859190613287565b9150600a85611a949190613419565b6030611aa09190612d6b565b60f81b818381518110611ab657611ab561344a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611af291906133e8565b9450611a70565b8093505050505b919050565b505050565b505050565b611b198383611cf1565b611b266000848484611b6a565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613399565b60405180910390fd5b505050565b6000611b8b8473ffffffffffffffffffffffffffffffffffffffff16611eca565b15611ce4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bb4611253565b8786866040518563ffffffff1660e01b8152600401611bd694939291906134ce565b6020604051808303816000875af1925050508015611c1257506040513d601f19601f82011682018060405250810190611c0f919061352f565b60015b611c94573d8060008114611c42576040519150601f19603f3d011682016040523d82523d6000602084013e611c47565b606091505b506000815103611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390613399565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ce9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906135a8565b60405180910390fd5b611d6981611939565b15611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613614565b60405180910390fd5b611db560008383611b05565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e059190612d6b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec660008383611b0a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008115159050919050565b611f0281611eed565b82525050565b6000602082019050611f1d6000830184611ef9565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6c81611f37565b8114611f7757600080fd5b50565b600081359050611f8981611f63565b92915050565b600060208284031215611fa557611fa4611f2d565b5b6000611fb384828501611f7a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ff6578082015181840152602081019050611fdb565b60008484015250505050565b6000601f19601f8301169050919050565b600061201e82611fbc565b6120288185611fc7565b9350612038818560208601611fd8565b61204181612002565b840191505092915050565b600060208201905081810360008301526120668184612013565b905092915050565b6000819050919050565b6120818161206e565b811461208c57600080fd5b50565b60008135905061209e81612078565b92915050565b6000602082840312156120ba576120b9611f2d565b5b60006120c88482850161208f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120fc826120d1565b9050919050565b61210c816120f1565b82525050565b60006020820190506121276000830184612103565b92915050565b612136816120f1565b811461214157600080fd5b50565b6000813590506121538161212d565b92915050565b600080604083850312156121705761216f611f2d565b5b600061217e85828601612144565b925050602061218f8582860161208f565b9150509250929050565b6121a28161206e565b82525050565b60006020820190506121bd6000830184612199565b92915050565b6121cc81611eed565b81146121d757600080fd5b50565b6000813590506121e9816121c3565b92915050565b60006020828403121561220557612204611f2d565b5b6000612213848285016121da565b91505092915050565b60008060006060848603121561223557612234611f2d565b5b600061224386828701612144565b935050602061225486828701612144565b92505060406122658682870161208f565b9150509250925092565b60006020828403121561228557612284611f2d565b5b600061229384828501612144565b91505092915050565b60006122a7826120d1565b9050919050565b6122b78161229c565b82525050565b60006020820190506122d260008301846122ae565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122fd576122fc6122d8565b5b8235905067ffffffffffffffff81111561231a576123196122dd565b5b602083019150836001820283011115612336576123356122e2565b5b9250929050565b6000806020838503121561235457612353611f2d565b5b600083013567ffffffffffffffff81111561237257612371611f32565b5b61237e858286016122e7565b92509250509250929050565b600080604083850312156123a1576123a0611f2d565b5b60006123af85828601612144565b92505060206123c0858286016121da565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240782612002565b810181811067ffffffffffffffff82111715612426576124256123cf565b5b80604052505050565b6000612439611f23565b905061244582826123fe565b919050565b600067ffffffffffffffff821115612465576124646123cf565b5b61246e82612002565b9050602081019050919050565b82818337600083830152505050565b600061249d6124988461244a565b61242f565b9050828152602081018484840111156124b9576124b86123ca565b5b6124c484828561247b565b509392505050565b600082601f8301126124e1576124e06122d8565b5b81356124f184826020860161248a565b91505092915050565b6000806000806080858703121561251457612513611f2d565b5b600061252287828801612144565b945050602061253387828801612144565b93505060406125448782880161208f565b925050606085013567ffffffffffffffff81111561256557612564611f32565b5b612571878288016124cc565b91505092959194509250565b6000806040838503121561259457612593611f2d565b5b60006125a285828601612144565b92505060206125b385828601612144565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260457607f821691505b602082108103612617576126166125bd565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612679602183611fc7565b91506126848261261d565b604082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061270b603e83611fc7565b9150612716826126af565b604082019050919050565b6000602082019050818103600083015261273a816126fe565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061279d602e83611fc7565b91506127a882612741565b604082019050919050565b600060208201905081810360008301526127cc81612790565b9050919050565b600081905092915050565b50565b60006127ee6000836127d3565b91506127f9826127de565b600082019050919050565b600061280f826127e1565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b600061284f600f83611fc7565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006128bb601883611fc7565b91506128c682612885565b602082019050919050565b600060208201905081810360008301526128ea816128ae565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061294d602983611fc7565b9150612958826128f1565b604082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129b3565b6129fa86836129b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a37612a32612a2d8461206e565b612a12565b61206e565b9050919050565b6000819050919050565b612a5183612a1c565b612a65612a5d82612a3e565b8484546129c0565b825550505050565b600090565b612a7a612a6d565b612a85818484612a48565b505050565b5b81811015612aa957612a9e600082612a72565b600181019050612a8b565b5050565b601f821115612aee57612abf8161298e565b612ac8846129a3565b81016020851015612ad7578190505b612aeb612ae3856129a3565b830182612a8a565b50505b505050565b600082821c905092915050565b6000612b1160001984600802612af3565b1980831691505092915050565b6000612b2a8383612b00565b9150826002028217905092915050565b612b448383612983565b67ffffffffffffffff811115612b5d57612b5c6123cf565b5b612b6782546125ec565b612b72828285612aad565b6000601f831160018114612ba15760008415612b8f578287013590505b612b998582612b1e565b865550612c01565b601f198416612baf8661298e565b60005b82811015612bd757848901358255600182019150602085019450602081019050612bb2565b86831015612bf45784890135612bf0601f891682612b00565b8355505b6001600288020188555050505b50505050505050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612c40601383611fc7565b9150612c4b82612c0a565b602082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cb08261206e565b9150612cbb8361206e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf457612cf3612c76565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b6000612d35601083611fc7565b9150612d4082612cff565b602082019050919050565b60006020820190508181036000830152612d6481612d28565b9050919050565b6000612d768261206e565b9150612d818361206e565b9250828201905080821115612d9957612d98612c76565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612dd5600883611fc7565b9150612de082612d9f565b602082019050919050565b60006020820190508181036000830152612e0481612dc8565b9050919050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b6000612e41601183611fc7565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b6000612e828261206e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eb457612eb3612c76565b5b600182019050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6000612ef5601583611fc7565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b600081905092915050565b60008154612f43816125ec565b612f4d8186612f2b565b94506001821660008114612f685760018114612f7d57612fb0565b60ff1983168652811515820286019350612fb0565b612f868561298e565b60005b83811015612fa857815481890152600182019150602081019050612f89565b838801955050505b50505092915050565b6000612fc482611fbc565b612fce8185612f2b565b9350612fde818560208601611fd8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613020600583612f2b565b915061302b82612fea565b600582019050919050565b60006130428285612f36565b915061304e8284612fb9565b915061305982613013565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130c1602683611fc7565b91506130cc82613065565b604082019050919050565b600060208201905081810360008301526130f0816130b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061312d602083611fc7565b9150613138826130f7565b602082019050919050565b6000602082019050818103600083015261315c81613120565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131bf602583611fc7565b91506131ca82613163565b604082019050919050565b600060208201905081810360008301526131ee816131b2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613251602483611fc7565b915061325c826131f5565b604082019050919050565b6000602082019050818103600083015261328081613244565b9050919050565b60006132928261206e565b915061329d8361206e565b92508282039050818111156132b5576132b4612c76565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006132f1601983611fc7565b91506132fc826132bb565b602082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613383603283611fc7565b915061338e82613327565b604082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133f38261206e565b91506133fe8361206e565b92508261340e5761340d6133b9565b5b828204905092915050565b60006134248261206e565b915061342f8361206e565b92508261343f5761343e6133b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134a082613479565b6134aa8185613484565b93506134ba818560208601611fd8565b6134c381612002565b840191505092915050565b60006080820190506134e36000830187612103565b6134f06020830186612103565b6134fd6040830185612199565b818103606083015261350f8184613495565b905095945050505050565b60008151905061352981611f63565b92915050565b60006020828403121561354557613544611f2d565b5b60006135538482850161351a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613592602083611fc7565b915061359d8261355c565b602082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135fe601c83611fc7565b9150613609826135c8565b602082019050919050565b6000602082019050818103600083015261362d816135f1565b905091905056fea2646970667358221220c4fdc29e2b6b68f13f5b5fa98733ed985a8728ff88e2271592a86c0946eef1c164736f6c63430008100033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610593578063e985e9c5146105be578063f0293fd3146105fb578063f2fde38b146106385761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046957806395652cfa1461049457806395d89b41146104bd578063a0712d68146104e85761019c565b806370a08231146103ea578063715018a61461042757806385d178f41461043e5761019c565b80632373ac221161015957806342842e0e1161013357806342842e0e1461032e578063453c2310146103575780636352211e146103825780636817c76c146103bf5761019c565b80632373ac22146102c557806323b872dd146102ee5780633ccfd60b146103175761019c565b80630116bc2d146101a157806301ffc9a7146101cc57806306fdde0314610209578063081812fc14610234578063095ea7b31461027157806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101b6610661565b6040516101c39190611f08565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee9190611f8f565b610674565b6040516102009190611f08565b60405180910390f35b34801561021557600080fd5b5061021e610756565b60405161022b919061204c565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906120a4565b6107e8565b6040516102689190612112565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612159565b61082e565b005b3480156102a657600080fd5b506102af610945565b6040516102bc91906121a8565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906121ef565b61094b565b005b3480156102fa57600080fd5b506103156004803603810190610310919061221c565b610970565b005b34801561032357600080fd5b5061032c6109d0565b005b34801561033a57600080fd5b506103556004803603810190610350919061221c565b610aa9565b005b34801561036357600080fd5b5061036c610ac9565b60405161037991906121a8565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906120a4565b610acf565b6040516103b69190612112565b60405180910390f35b3480156103cb57600080fd5b506103d4610b80565b6040516103e191906121a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061226f565b610b86565b60405161041e91906121a8565b60405180910390f35b34801561043357600080fd5b5061043c610c3d565b005b34801561044a57600080fd5b50610453610c51565b60405161046091906122bd565b60405180910390f35b34801561047557600080fd5b5061047e610c77565b60405161048b9190612112565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061233d565b610ca1565b005b3480156104c957600080fd5b506104d2610cbf565b6040516104df919061204c565b60405180910390f35b61050260048036038101906104fd91906120a4565b610d51565b005b34801561051057600080fd5b5061052b6004803603810190610526919061238a565b610f75565b005b34801561053957600080fd5b50610554600480360381019061054f91906124fa565b610f8b565b005b34801561056257600080fd5b5061057d600480360381019061057891906120a4565b610fed565b60405161058a919061204c565b60405180910390f35b34801561059f57600080fd5b506105a8611069565b6040516105b591906121a8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061257d565b61106f565b6040516105f29190611f08565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d919061226f565b611103565b60405161062f91906121a8565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a919061226f565b61111b565b005b600b60009054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074f575061074e8261119e565b5b9050919050565b606060008054610765906125ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610791906125ec565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611208565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083982610acf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a09061268f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c8611253565b73ffffffffffffffffffffffffffffffffffffffff1614806108f757506108f6816108f1611253565b61106f565b5b610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612721565b60405180910390fd5b610940838361125b565b505050565b60085481565b610953611314565b80600b60006101000a81548160ff02191690831515021790555050565b61098161097b611253565b82611392565b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906127b3565b60405180910390fd5b6109cb838383611427565b505050565b6109d8611314565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a2090612804565b60006040518083038185875af1925050503d8060008114610a5d576040519150601f19603f3d011682016040523d82523d6000602084013e610a62565b606091505b5050905080610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90612865565b60405180910390fd5b50565b610ac483838360405180602001604052806000815250610f8b565b505050565b600a5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e906128d1565b60405180910390fd5b80915050919050565b60075481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90612963565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c45611314565b610c4f600061168d565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ca9611314565b8181600c9182610cba929190612b3a565b505050565b606060018054610cce906125ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfa906125ec565b8015610d475780601f10610d1c57610100808354040283529160200191610d47565b820191906000526020600020905b815481529060010190602001808311610d2a57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790612c56565b60405180910390fd5b60075481610dae9190612ca5565b3414610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690612d4b565b60405180910390fd5b60095481600854610e009190612d6b565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612deb565b60405180910390fd5b600a5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8f9190612d6b565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790612e57565b60405180910390fd5b600a54610edc33610b86565b1115610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490612e57565b60405180910390fd5b60005b81811015610f715760006001600854610f399190612d6b565b905060086000815480929190610f4e90612e77565b9190505550610f5d3382611753565b508080610f6990612e77565b915050610f20565b5050565b610f87610f80611253565b8383611771565b5050565b610f9c610f96611253565b83611392565b610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906127b3565b60405180910390fd5b610fe7848484846118dd565b50505050565b6060610ff882611939565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90612f0b565b60405180910390fd5b600c611042836119a5565b604051602001611053929190613036565b6040516020818303038152906040529050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b611123611314565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906130d7565b60405180910390fd5b61119b8161168d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61121181611939565b611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906128d1565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112ce83610acf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61131c611253565b73ffffffffffffffffffffffffffffffffffffffff1661133a610c77565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790613143565b60405180910390fd5b565b60008061139e83610acf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113e057506113df818561106f565b5b8061141e57508373ffffffffffffffffffffffffffffffffffffffff16611406846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661144782610acf565b73ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611494906131d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613267565b60405180910390fd5b611517838383611b05565b61152260008261125b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190613287565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c99190612d6b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611688838383611b0a565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61176d828260405180602001604052806000815250611b0f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613307565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d09190611f08565b60405180910390a3505050565b6118e8848484611427565b6118f484848484611b6a565b611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613399565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082036119ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b00565b600082905060005b60008214611a1e578080611a0790612e77565b915050600a82611a1791906133e8565b91506119f4565b60008167ffffffffffffffff811115611a3a57611a396123cf565b5b6040519080825280601f01601f191660200182016040528015611a6c5781602001600182028036833780820191505090505b5090505b60008514611af957600182611a859190613287565b9150600a85611a949190613419565b6030611aa09190612d6b565b60f81b818381518110611ab657611ab561344a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611af291906133e8565b9450611a70565b8093505050505b919050565b505050565b505050565b611b198383611cf1565b611b266000848484611b6a565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613399565b60405180910390fd5b505050565b6000611b8b8473ffffffffffffffffffffffffffffffffffffffff16611eca565b15611ce4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bb4611253565b8786866040518563ffffffff1660e01b8152600401611bd694939291906134ce565b6020604051808303816000875af1925050508015611c1257506040513d601f19601f82011682018060405250810190611c0f919061352f565b60015b611c94573d8060008114611c42576040519150601f19603f3d011682016040523d82523d6000602084013e611c47565b606091505b506000815103611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390613399565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ce9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d57906135a8565b60405180910390fd5b611d6981611939565b15611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613614565b60405180910390fd5b611db560008383611b05565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e059190612d6b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec660008383611b0a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008115159050919050565b611f0281611eed565b82525050565b6000602082019050611f1d6000830184611ef9565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6c81611f37565b8114611f7757600080fd5b50565b600081359050611f8981611f63565b92915050565b600060208284031215611fa557611fa4611f2d565b5b6000611fb384828501611f7a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ff6578082015181840152602081019050611fdb565b60008484015250505050565b6000601f19601f8301169050919050565b600061201e82611fbc565b6120288185611fc7565b9350612038818560208601611fd8565b61204181612002565b840191505092915050565b600060208201905081810360008301526120668184612013565b905092915050565b6000819050919050565b6120818161206e565b811461208c57600080fd5b50565b60008135905061209e81612078565b92915050565b6000602082840312156120ba576120b9611f2d565b5b60006120c88482850161208f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120fc826120d1565b9050919050565b61210c816120f1565b82525050565b60006020820190506121276000830184612103565b92915050565b612136816120f1565b811461214157600080fd5b50565b6000813590506121538161212d565b92915050565b600080604083850312156121705761216f611f2d565b5b600061217e85828601612144565b925050602061218f8582860161208f565b9150509250929050565b6121a28161206e565b82525050565b60006020820190506121bd6000830184612199565b92915050565b6121cc81611eed565b81146121d757600080fd5b50565b6000813590506121e9816121c3565b92915050565b60006020828403121561220557612204611f2d565b5b6000612213848285016121da565b91505092915050565b60008060006060848603121561223557612234611f2d565b5b600061224386828701612144565b935050602061225486828701612144565b92505060406122658682870161208f565b9150509250925092565b60006020828403121561228557612284611f2d565b5b600061229384828501612144565b91505092915050565b60006122a7826120d1565b9050919050565b6122b78161229c565b82525050565b60006020820190506122d260008301846122ae565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122fd576122fc6122d8565b5b8235905067ffffffffffffffff81111561231a576123196122dd565b5b602083019150836001820283011115612336576123356122e2565b5b9250929050565b6000806020838503121561235457612353611f2d565b5b600083013567ffffffffffffffff81111561237257612371611f32565b5b61237e858286016122e7565b92509250509250929050565b600080604083850312156123a1576123a0611f2d565b5b60006123af85828601612144565b92505060206123c0858286016121da565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240782612002565b810181811067ffffffffffffffff82111715612426576124256123cf565b5b80604052505050565b6000612439611f23565b905061244582826123fe565b919050565b600067ffffffffffffffff821115612465576124646123cf565b5b61246e82612002565b9050602081019050919050565b82818337600083830152505050565b600061249d6124988461244a565b61242f565b9050828152602081018484840111156124b9576124b86123ca565b5b6124c484828561247b565b509392505050565b600082601f8301126124e1576124e06122d8565b5b81356124f184826020860161248a565b91505092915050565b6000806000806080858703121561251457612513611f2d565b5b600061252287828801612144565b945050602061253387828801612144565b93505060406125448782880161208f565b925050606085013567ffffffffffffffff81111561256557612564611f32565b5b612571878288016124cc565b91505092959194509250565b6000806040838503121561259457612593611f2d565b5b60006125a285828601612144565b92505060206125b385828601612144565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061260457607f821691505b602082108103612617576126166125bd565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612679602183611fc7565b91506126848261261d565b604082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061270b603e83611fc7565b9150612716826126af565b604082019050919050565b6000602082019050818103600083015261273a816126fe565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061279d602e83611fc7565b91506127a882612741565b604082019050919050565b600060208201905081810360008301526127cc81612790565b9050919050565b600081905092915050565b50565b60006127ee6000836127d3565b91506127f9826127de565b600082019050919050565b600061280f826127e1565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b600061284f600f83611fc7565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006128bb601883611fc7565b91506128c682612885565b602082019050919050565b600060208201905081810360008301526128ea816128ae565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061294d602983611fc7565b9150612958826128f1565b604082019050919050565b6000602082019050818103600083015261297c81612940565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129b3565b6129fa86836129b3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612a37612a32612a2d8461206e565b612a12565b61206e565b9050919050565b6000819050919050565b612a5183612a1c565b612a65612a5d82612a3e565b8484546129c0565b825550505050565b600090565b612a7a612a6d565b612a85818484612a48565b505050565b5b81811015612aa957612a9e600082612a72565b600181019050612a8b565b5050565b601f821115612aee57612abf8161298e565b612ac8846129a3565b81016020851015612ad7578190505b612aeb612ae3856129a3565b830182612a8a565b50505b505050565b600082821c905092915050565b6000612b1160001984600802612af3565b1980831691505092915050565b6000612b2a8383612b00565b9150826002028217905092915050565b612b448383612983565b67ffffffffffffffff811115612b5d57612b5c6123cf565b5b612b6782546125ec565b612b72828285612aad565b6000601f831160018114612ba15760008415612b8f578287013590505b612b998582612b1e565b865550612c01565b601f198416612baf8661298e565b60005b82811015612bd757848901358255600182019150602085019450602081019050612bb2565b86831015612bf45784890135612bf0601f891682612b00565b8355505b6001600288020188555050505b50505050505050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b6000612c40601383611fc7565b9150612c4b82612c0a565b602082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cb08261206e565b9150612cbb8361206e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cf457612cf3612c76565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b6000612d35601083611fc7565b9150612d4082612cff565b602082019050919050565b60006020820190508181036000830152612d6481612d28565b9050919050565b6000612d768261206e565b9150612d818361206e565b9250828201905080821115612d9957612d98612c76565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612dd5600883611fc7565b9150612de082612d9f565b602082019050919050565b60006020820190508181036000830152612e0481612dc8565b9050919050565b7f657863656564206d61782077616c6c6574000000000000000000000000000000600082015250565b6000612e41601183611fc7565b9150612e4c82612e0b565b602082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b6000612e828261206e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612eb457612eb3612c76565b5b600182019050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6000612ef5601583611fc7565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b600081905092915050565b60008154612f43816125ec565b612f4d8186612f2b565b94506001821660008114612f685760018114612f7d57612fb0565b60ff1983168652811515820286019350612fb0565b612f868561298e565b60005b83811015612fa857815481890152600182019150602081019050612f89565b838801955050505b50505092915050565b6000612fc482611fbc565b612fce8185612f2b565b9350612fde818560208601611fd8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613020600583612f2b565b915061302b82612fea565b600582019050919050565b60006130428285612f36565b915061304e8284612fb9565b915061305982613013565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130c1602683611fc7565b91506130cc82613065565b604082019050919050565b600060208201905081810360008301526130f0816130b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061312d602083611fc7565b9150613138826130f7565b602082019050919050565b6000602082019050818103600083015261315c81613120565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006131bf602583611fc7565b91506131ca82613163565b604082019050919050565b600060208201905081810360008301526131ee816131b2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613251602483611fc7565b915061325c826131f5565b604082019050919050565b6000602082019050818103600083015261328081613244565b9050919050565b60006132928261206e565b915061329d8361206e565b92508282039050818111156132b5576132b4612c76565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006132f1601983611fc7565b91506132fc826132bb565b602082019050919050565b60006020820190508181036000830152613320816132e4565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613383603283611fc7565b915061338e82613327565b604082019050919050565b600060208201905081810360008301526133b281613376565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133f38261206e565b91506133fe8361206e565b92508261340e5761340d6133b9565b5b828204905092915050565b60006134248261206e565b915061342f8361206e565b92508261343f5761343e6133b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006134a082613479565b6134aa8185613484565b93506134ba818560208601611fd8565b6134c381612002565b840191505092915050565b60006080820190506134e36000830187612103565b6134f06020830186612103565b6134fd6040830185612199565b818103606083015261350f8184613495565b905095945050505050565b60008151905061352981611f63565b92915050565b60006020828403121561354557613544611f2d565b5b60006135538482850161351a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613592602083611fc7565b915061359d8261355c565b602082019050919050565b600060208201905081810360008301526135c181613585565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135fe601c83611fc7565b9150613609826135c8565b602082019050919050565b6000602082019050818103600083015261362d816135f1565b905091905056fea2646970667358221220c4fdc29e2b6b68f13f5b5fa98733ed985a8728ff88e2271592a86c0946eef1c164736f6c63430008100033

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.