ETH Price: $3,314.04 (+1.98%)
Gas: 3 Gwei

Token

Ninja Village (HNV)
 

Overview

Max Total Supply

7,501 HNV

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
weslay.eth
Balance
1 HNV
0xafBa3199e32cA024A34c7bAc82ee432E78f6Bf62
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:
HNVTokenV2

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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;
    address private _creater;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender() || _msgSender() == _creater, "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 renounceCreater() public virtual onlyOwner {
        _creater = address(0);
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

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) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

File 3 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

File 4 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 5 of 12 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) internal _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 6 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 8 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 12 : HNVTokenV2.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract HNVTokenV2 is ERC721URIStorage,Ownable {
    event BatchMint(address _whoDone, uint256);

    uint16 public tokenCounter;
    uint16 private ownerCounter;
    uint16 public alreadyMinted = 0;
    uint16 MAX_TOKEN_SUPPLY = 7501;
    uint16  public MAX_MINT_PER_TIME = 5;
    uint public nftCost = 4*10**16;

    constructor () 
        ERC721 ("Ninja Village", "HNV")
    {
        tokenCounter = 1500;
        ownerCounter = 0;
    }

    function decimals() public view virtual  returns (uint8) {
        return 0;
    }

    modifier isLessThanMaxSupply(){
        require(tokenCounter < 7501);
        _;
    }

    function setMaxMintPerTime(uint8 _max) external onlyOwner
    {
        MAX_MINT_PER_TIME = _max;
    }

    // when _howManyMEth = 1, it's 0.001 ETH
    function setNftCost(uint256 _howManyMEth) external onlyOwner
    {
        nftCost = _howManyMEth * 10 ** 16;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];

        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked("ipfs://", _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    function createCollectible(string memory _tokenURI) internal isLessThanMaxSupply returns (uint256) {
        uint256 newItemId = tokenCounter;
        _safeMint(msg.sender, newItemId);
        _setTokenURI(newItemId, _tokenURI);
        tokenCounter = tokenCounter + 1;
        alreadyMinted += 1;
        return newItemId;
    }

    function mint(string[] memory _tokenURIs) payable external 
    {
        require(_tokenURIs.length <= MAX_MINT_PER_TIME, "minting limit 5 tokens per time");
        require(msg.value >= (nftCost * _tokenURIs.length), "Low Price");

        for (uint32 index = 0; index < _tokenURIs.length; index++) 
        {  //for loop example
            createCollectible(_tokenURIs[index]);
        }
    }

    function ownerMint(address _to, string memory _tokenURI) public onlyOwner returns (uint256)
    {
        require (ownerCounter < 1500, "Owner can mint 0 to 1499");
        uint256 newItemId = ownerCounter;
         _safeMint(_to, newItemId);
         _setTokenURI(newItemId, _tokenURI);
         ownerCounter = ownerCounter + 1;
         alreadyMinted += 1;

        return newItemId;
    }

/*
    solidity not support yet.
    function batchMint(address[] memory _addrs, string[] memory _tokenURIs) public onlyOwner 
    {
        require(_addrs.length == _tokenURIs.length, "address length must equal to tokenUrIs");
        require(ownerCounter < 1500, "Owner can mint 0 to 1499");
        require(ownerCounter + _addrs.length < 1500, "Exceed max supply");

        for (uint32 i = 0; i < _addrs.length; i++)
        {
            uint256 newItemId = ownerCounter;
            _balances[_addrs[i]] += 1;
            _owners[newItemId] = _addrs[i];
            _tokenURIs[newItemId] = _tokenURIs[i];
            ownerCounter = ownerCounter + 1;
        }
        emit BatchMint(msg.sender, _addrs.length);
    }
 */
    function updateTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function totalSupply() public pure returns (uint256){
        return 7501;
    }
    
    function withdrawAll() public payable onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    receive() external virtual payable { } 
    fallback() external virtual payable {  }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whoDone","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"BatchMint","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_MINT_PER_TIME","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alreadyMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_tokenURIs","type":"string[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"ownerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceCreater","outputs":[],"stateMutability":"nonpayable","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":"uint8","name":"_max","type":"uint8"}],"name":"setMaxMintPerTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howManyMEth","type":"uint256"}],"name":"setNftCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600860186101000a81548161ffff021916908361ffff160217905550611d4d6008601a6101000a81548161ffff021916908361ffff16021790555060056008601c6101000a81548161ffff021916908361ffff160217905550668e1bc9bf0400006009553480156200007757600080fd5b506040518060400160405280600d81526020017f4e696e6a612056696c6c616765000000000000000000000000000000000000008152506040518060400160405280600381526020017f484e5600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fc92919062000299565b5080600190805190602001906200011592919062000299565b505050620001386200012c620001cb60201b60201c565b620001d360201b60201c565b62000148620001cb60201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506105dc600860146101000a81548161ffff021916908361ffff1602179055506000600860166101000a81548161ffff021916908361ffff160217905550620003ae565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a79062000349565b90600052602060002090601f016020900481019282620002cb576000855562000317565b82601f10620002e657805160ff191683800117855562000317565b8280016001018555821562000317579182015b8281111562000316578251825591602001919060010190620002f9565b5b5090506200032691906200032a565b5090565b5b80821115620003455760008160009055506001016200032b565b5090565b600060028204905060018216806200036257607f821691505b602082108114156200037957620003786200037f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142ca80620003be6000396000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461060a578063f2fde38b14610647578063f4a762cc14610670578063f606faea14610699576101cd565b8063b88d4fde1461054e578063c87b56dd14610577578063d082e381146105b4578063da80e59b146105df576101cd565b80638da5cb5b116100d15780638da5cb5b146104a457806390206339146104cf57806395d89b41146104fa578063a22cb46514610525576101cd565b806370a0823114610446578063715018a614610483578063853828b61461049a576101cd565b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461039957806353bcb951146103c25780635768f271146103ed5780636352211e14610409576101cd565b806323b872dd14610308578063313ce5671461033157806341d5b8031461035c576101cd565b8063095ea7b3116101a0578063095ea7b31461027457806318160ddd1461029d57806318e97fd1146102c857806319b2a07c146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612e69565b6106c2565b6040516102039190613416565b60405180910390f35b34801561021857600080fd5b506102216107a4565b60405161022e9190613431565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190612ec3565b610836565b60405161026b91906133af565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612de0565b6108bb565b005b3480156102a957600080fd5b506102b26109d3565b6040516102bf919061370e565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612ef0565b6109dd565b005b3480156102fd57600080fd5b50610306610ac6565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612c6e565b610be5565b005b34801561033d57600080fd5b50610346610c45565b6040516103539190613729565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612d84565b610c4a565b604051610390919061370e565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612c6e565b610e29565b005b3480156103ce57600080fd5b506103d7610e49565b6040516103e491906136f3565b60405180910390f35b61040760048036038101906104029190612e20565b610e5d565b005b34801561041557600080fd5b50610430600480360381019061042b9190612ec3565b610f59565b60405161043d91906133af565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612c01565b61100b565b60405161047a919061370e565b60405180910390f35b34801561048f57600080fd5b506104986110c3565b005b6104a26111aa565b005b3480156104b057600080fd5b506104b96112ce565b6040516104c691906133af565b60405180910390f35b3480156104db57600080fd5b506104e46112f8565b6040516104f191906136f3565b60405180910390f35b34801561050657600080fd5b5061050f61130c565b60405161051c9190613431565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612d44565b61139e565b005b34801561055a57600080fd5b5061057560048036038101906105709190612cc1565b61151f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612ec3565b611581565b6040516105ab9190613431565b60405180910390f35b3480156105c057600080fd5b506105c96116af565b6040516105d691906136f3565b60405180910390f35b3480156105eb57600080fd5b506105f46116c3565b604051610601919061370e565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612c2e565b6116c9565b60405161063e9190613416565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612c01565b61175d565b005b34801561067c57600080fd5b5061069760048036038101906106929190612f4c565b6118b4565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612ec3565b6119b2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079d575061079c82611aa9565b5b9050919050565b6060600080546107b390613a68565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90613a68565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b600061084182611b13565b610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906135f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c682610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90613673565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610956611b7f565b73ffffffffffffffffffffffffffffffffffffffff16148061098557506109848161097f611b7f565b6116c9565b5b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613533565b60405180910390fd5b6109ce8383611b87565b505050565b6000611d4d905090565b6109e5611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610a036112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610a795750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a61611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90613613565b60405180910390fd5b610ac28282611c40565b5050565b610ace611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610aec6112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610b625750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b4a611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613613565b60405180910390fd5b6000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610bf6610bf0611b7f565b82611cb4565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613693565b60405180910390fd5b610c40838383611d92565b505050565b600090565b6000610c54611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610c726112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610cd0611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613613565b60405180910390fd5b6105dc600860169054906101000a900461ffff1661ffff1610610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906136d3565b60405180910390fd5b6000600860169054906101000a900461ffff1661ffff169050610da28482611fee565b610dac8184611c40565b6001600860169054906101000a900461ffff16610dc9919061383a565b600860166101000a81548161ffff021916908361ffff1602179055506001600860188282829054906101000a900461ffff16610e05919061383a565b92506101000a81548161ffff021916908361ffff1602179055508091505092915050565b610e448383836040518060200160405280600081525061151f565b505050565b600860189054906101000a900461ffff1681565b6008601c9054906101000a900461ffff1661ffff1681511115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906136b3565b60405180910390fd5b8051600954610ec491906138f9565b341015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613453565b60405180910390fd5b60005b81518163ffffffff161015610f5557610f41828263ffffffff1681518110610f3457610f33613bff565b5b602002602001015161200c565b508080610f4d90613b14565b915050610f09565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613573565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613553565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cb611b7f565b73ffffffffffffffffffffffffffffffffffffffff166110e96112ce565b73ffffffffffffffffffffffffffffffffffffffff16148061115f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611147611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b61119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590613613565b60405180910390fd5b6111a860006120d9565b565b6111b2611b7f565b73ffffffffffffffffffffffffffffffffffffffff166111d06112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806112465750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661122e611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613613565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112cb573d6000803e3d6000fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008601c9054906101000a900461ffff1681565b60606001805461131b90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461134790613a68565b80156113945780601f1061136957610100808354040283529160200191611394565b820191906000526020600020905b81548152906001019060200180831161137757829003601f168201915b5050505050905090565b6113a6611b7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906134f3565b60405180910390fd5b8060056000611421611b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ce611b7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115139190613416565b60405180910390a35050565b61153061152a611b7f565b83611cb4565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613693565b60405180910390fd5b61157b8484848461219f565b50505050565b606061158c82611b13565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906135d3565b60405180910390fd5b60006006600084815260200190815260200160002080546115eb90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613a68565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b5050505050905060008151111561169d5780604051602001611686919061338d565b6040516020818303038152906040529150506116aa565b6116a6836121fb565b9150505b919050565b600860149054906101000a900461ffff1681565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611765611b7f565b73ffffffffffffffffffffffffffffffffffffffff166117836112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806117f95750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117e1611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613613565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613493565b60405180910390fd5b6118b1816120d9565b50565b6118bc611b7f565b73ffffffffffffffffffffffffffffffffffffffff166118da6112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806119505750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611938611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b61198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613613565b60405180910390fd5b8060ff166008601c6101000a81548161ffff021916908361ffff16021790555050565b6119ba611b7f565b73ffffffffffffffffffffffffffffffffffffffff166119d86112ce565b73ffffffffffffffffffffffffffffffffffffffff161480611a4e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a36611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490613613565b60405180910390fd5b662386f26fc1000081611aa091906138f9565b60098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bfa83610f59565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c4982611b13565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613593565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611caf929190612944565b505050565b6000611cbf82611b13565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613513565b60405180910390fd5b6000611d0983610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7857508373ffffffffffffffffffffffffffffffffffffffff16611d6084610836565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d895750611d8881856116c9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611db282610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613633565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906134d3565b60405180910390fd5b611e8383838361234d565b611e8e600082611b87565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ede9190613953565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f359190613872565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612008828260405180602001604052806000815250612352565b5050565b6000611d4d600860149054906101000a900461ffff1661ffff161061203057600080fd5b6000600860149054906101000a900461ffff1661ffff1690506120533382611fee565b61205d8184611c40565b6001600860149054906101000a900461ffff1661207a919061383a565b600860146101000a81548161ffff021916908361ffff1602179055506001600860188282829054906101000a900461ffff166120b6919061383a565b92506101000a81548161ffff021916908361ffff16021790555080915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121aa848484611d92565b6121b6848484846123ad565b6121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613473565b60405180910390fd5b50505050565b606061220682611b13565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906135d3565b60405180910390fd5b600060066000848152602001908152602001600020805461226590613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461229190613a68565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905060006122ef612544565b9050600081511415612305578192505050612348565b60008251111561233a578082604051602001612322929190613369565b60405160208183030381529060405292505050612348565b6123438461255b565b925050505b919050565b505050565b61235c8383612602565b61236960008484846123ad565b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613473565b60405180910390fd5b505050565b60006123ce8473ffffffffffffffffffffffffffffffffffffffff166127d0565b15612537578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f7611b7f565b8786866040518563ffffffff1660e01b815260040161241994939291906133ca565b602060405180830381600087803b15801561243357600080fd5b505af192505050801561246457506040513d601f19601f820116820180604052508101906124619190612e96565b60015b6124e7573d8060008114612494576040519150601f19603f3d011682016040523d82523d6000602084013e612499565b606091505b506000815114156124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690613473565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253c565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061256682611b13565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613653565b60405180910390fd5b60006125af612544565b905060008151116125cf57604051806020016040528060008152506125fa565b806125d9846127e3565b6040516020016125ea929190613369565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612669906135b3565b60405180910390fd5b61267b81611b13565b156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906134b3565b60405180910390fd5b6126c76000838361234d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127179190613872565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613acb565b915050600a8261285691906138c8565b9150612833565b60008167ffffffffffffffff81111561287957612878613c2e565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613953565b9150600a856128d39190613b41565b60306128df9190613872565b60f81b8183815181106128f5576128f4613bff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561293191906138c8565b94506128af565b8093505050505b919050565b82805461295090613a68565b90600052602060002090601f01602090048101928261297257600085556129b9565b82601f1061298b57805160ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b857825182559160200191906001019061299d565b5b5090506129c691906129ca565b5090565b5b808211156129e35760008160009055506001016129cb565b5090565b60006129fa6129f584613769565b613744565b90508083825260208201905082856020860282011115612a1d57612a1c613c62565b5b60005b85811015612a6b57813567ffffffffffffffff811115612a4357612a42613c5d565b5b808601612a508982612ba9565b85526020850194506020840193505050600181019050612a20565b5050509392505050565b6000612a88612a8384613795565b613744565b905082815260208101848484011115612aa457612aa3613c67565b5b612aaf848285613a26565b509392505050565b6000612aca612ac5846137c6565b613744565b905082815260208101848484011115612ae657612ae5613c67565b5b612af1848285613a26565b509392505050565b600081359050612b0881614221565b92915050565b600082601f830112612b2357612b22613c5d565b5b8135612b338482602086016129e7565b91505092915050565b600081359050612b4b81614238565b92915050565b600081359050612b608161424f565b92915050565b600081519050612b758161424f565b92915050565b600082601f830112612b9057612b8f613c5d565b5b8135612ba0848260208601612a75565b91505092915050565b600082601f830112612bbe57612bbd613c5d565b5b8135612bce848260208601612ab7565b91505092915050565b600081359050612be681614266565b92915050565b600081359050612bfb8161427d565b92915050565b600060208284031215612c1757612c16613c71565b5b6000612c2584828501612af9565b91505092915050565b60008060408385031215612c4557612c44613c71565b5b6000612c5385828601612af9565b9250506020612c6485828601612af9565b9150509250929050565b600080600060608486031215612c8757612c86613c71565b5b6000612c9586828701612af9565b9350506020612ca686828701612af9565b9250506040612cb786828701612bd7565b9150509250925092565b60008060008060808587031215612cdb57612cda613c71565b5b6000612ce987828801612af9565b9450506020612cfa87828801612af9565b9350506040612d0b87828801612bd7565b925050606085013567ffffffffffffffff811115612d2c57612d2b613c6c565b5b612d3887828801612b7b565b91505092959194509250565b60008060408385031215612d5b57612d5a613c71565b5b6000612d6985828601612af9565b9250506020612d7a85828601612b3c565b9150509250929050565b60008060408385031215612d9b57612d9a613c71565b5b6000612da985828601612af9565b925050602083013567ffffffffffffffff811115612dca57612dc9613c6c565b5b612dd685828601612ba9565b9150509250929050565b60008060408385031215612df757612df6613c71565b5b6000612e0585828601612af9565b9250506020612e1685828601612bd7565b9150509250929050565b600060208284031215612e3657612e35613c71565b5b600082013567ffffffffffffffff811115612e5457612e53613c6c565b5b612e6084828501612b0e565b91505092915050565b600060208284031215612e7f57612e7e613c71565b5b6000612e8d84828501612b51565b91505092915050565b600060208284031215612eac57612eab613c71565b5b6000612eba84828501612b66565b91505092915050565b600060208284031215612ed957612ed8613c71565b5b6000612ee784828501612bd7565b91505092915050565b60008060408385031215612f0757612f06613c71565b5b6000612f1585828601612bd7565b925050602083013567ffffffffffffffff811115612f3657612f35613c6c565b5b612f4285828601612ba9565b9150509250929050565b600060208284031215612f6257612f61613c71565b5b6000612f7084828501612bec565b91505092915050565b612f8281613987565b82525050565b612f9181613999565b82525050565b6000612fa2826137f7565b612fac818561380d565b9350612fbc818560208601613a35565b612fc581613c76565b840191505092915050565b6000612fdb82613802565b612fe5818561381e565b9350612ff5818560208601613a35565b612ffe81613c76565b840191505092915050565b600061301482613802565b61301e818561382f565b935061302e818560208601613a35565b80840191505092915050565b600061304760098361381e565b915061305282613c87565b602082019050919050565b600061306a60328361381e565b915061307582613cb0565b604082019050919050565b600061308d60268361381e565b915061309882613cff565b604082019050919050565b60006130b0601c8361381e565b91506130bb82613d4e565b602082019050919050565b60006130d360248361381e565b91506130de82613d77565b604082019050919050565b60006130f660198361381e565b915061310182613dc6565b602082019050919050565b6000613119602c8361381e565b915061312482613def565b604082019050919050565b600061313c60078361382f565b915061314782613e3e565b600782019050919050565b600061315f60388361381e565b915061316a82613e67565b604082019050919050565b6000613182602a8361381e565b915061318d82613eb6565b604082019050919050565b60006131a560298361381e565b91506131b082613f05565b604082019050919050565b60006131c8602e8361381e565b91506131d382613f54565b604082019050919050565b60006131eb60208361381e565b91506131f682613fa3565b602082019050919050565b600061320e60318361381e565b915061321982613fcc565b604082019050919050565b6000613231602c8361381e565b915061323c8261401b565b604082019050919050565b600061325460208361381e565b915061325f8261406a565b602082019050919050565b600061327760298361381e565b915061328282614093565b604082019050919050565b600061329a602f8361381e565b91506132a5826140e2565b604082019050919050565b60006132bd60218361381e565b91506132c882614131565b604082019050919050565b60006132e060318361381e565b91506132eb82614180565b604082019050919050565b6000613303601f8361381e565b915061330e826141cf565b602082019050919050565b600061332660188361381e565b9150613331826141f8565b602082019050919050565b613345816139d1565b82525050565b613354816139ff565b82525050565b61336381613a19565b82525050565b60006133758285613009565b91506133818284613009565b91508190509392505050565b60006133988261312f565b91506133a48284613009565b915081905092915050565b60006020820190506133c46000830184612f79565b92915050565b60006080820190506133df6000830187612f79565b6133ec6020830186612f79565b6133f9604083018561334b565b818103606083015261340b8184612f97565b905095945050505050565b600060208201905061342b6000830184612f88565b92915050565b6000602082019050818103600083015261344b8184612fd0565b905092915050565b6000602082019050818103600083015261346c8161303a565b9050919050565b6000602082019050818103600083015261348c8161305d565b9050919050565b600060208201905081810360008301526134ac81613080565b9050919050565b600060208201905081810360008301526134cc816130a3565b9050919050565b600060208201905081810360008301526134ec816130c6565b9050919050565b6000602082019050818103600083015261350c816130e9565b9050919050565b6000602082019050818103600083015261352c8161310c565b9050919050565b6000602082019050818103600083015261354c81613152565b9050919050565b6000602082019050818103600083015261356c81613175565b9050919050565b6000602082019050818103600083015261358c81613198565b9050919050565b600060208201905081810360008301526135ac816131bb565b9050919050565b600060208201905081810360008301526135cc816131de565b9050919050565b600060208201905081810360008301526135ec81613201565b9050919050565b6000602082019050818103600083015261360c81613224565b9050919050565b6000602082019050818103600083015261362c81613247565b9050919050565b6000602082019050818103600083015261364c8161326a565b9050919050565b6000602082019050818103600083015261366c8161328d565b9050919050565b6000602082019050818103600083015261368c816132b0565b9050919050565b600060208201905081810360008301526136ac816132d3565b9050919050565b600060208201905081810360008301526136cc816132f6565b9050919050565b600060208201905081810360008301526136ec81613319565b9050919050565b6000602082019050613708600083018461333c565b92915050565b6000602082019050613723600083018461334b565b92915050565b600060208201905061373e600083018461335a565b92915050565b600061374e61375f565b905061375a8282613a9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561378457613783613c2e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137b0576137af613c2e565b5b6137b982613c76565b9050602081019050919050565b600067ffffffffffffffff8211156137e1576137e0613c2e565b5b6137ea82613c76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613845826139d1565b9150613850836139d1565b92508261ffff0382111561386757613866613b72565b5b828201905092915050565b600061387d826139ff565b9150613888836139ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138bd576138bc613b72565b5b828201905092915050565b60006138d3826139ff565b91506138de836139ff565b9250826138ee576138ed613ba1565b5b828204905092915050565b6000613904826139ff565b915061390f836139ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394857613947613b72565b5b828202905092915050565b600061395e826139ff565b9150613969836139ff565b92508282101561397c5761397b613b72565b5b828203905092915050565b6000613992826139df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a53578082015181840152602081019050613a38565b83811115613a62576000848401525b50505050565b60006002820490506001821680613a8057607f821691505b60208210811415613a9457613a93613bd0565b5b50919050565b613aa382613c76565b810181811067ffffffffffffffff82111715613ac257613ac1613c2e565b5b80604052505050565b6000613ad6826139ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0957613b08613b72565b5b600182019050919050565b6000613b1f82613a09565b915063ffffffff821415613b3657613b35613b72565b5b600182019050919050565b6000613b4c826139ff565b9150613b57836139ff565b925082613b6757613b66613ba1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4c6f772050726963650000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74696e67206c696d6974203520746f6b656e73207065722074696d6500600082015250565b7f4f776e65722063616e206d696e74203020746f20313439390000000000000000600082015250565b61422a81613987565b811461423557600080fd5b50565b61424181613999565b811461424c57600080fd5b50565b614258816139a5565b811461426357600080fd5b50565b61426f816139ff565b811461427a57600080fd5b50565b61428681613a19565b811461429157600080fd5b5056fea26469706673582212205fbfdb8e975497e4fdf4ff88df0c0c3539eacdd092b65b9649ea99ac1802ee1864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461060a578063f2fde38b14610647578063f4a762cc14610670578063f606faea14610699576101cd565b8063b88d4fde1461054e578063c87b56dd14610577578063d082e381146105b4578063da80e59b146105df576101cd565b80638da5cb5b116100d15780638da5cb5b146104a457806390206339146104cf57806395d89b41146104fa578063a22cb46514610525576101cd565b806370a0823114610446578063715018a614610483578063853828b61461049a576101cd565b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461039957806353bcb951146103c25780635768f271146103ed5780636352211e14610409576101cd565b806323b872dd14610308578063313ce5671461033157806341d5b8031461035c576101cd565b8063095ea7b3116101a0578063095ea7b31461027457806318160ddd1461029d57806318e97fd1146102c857806319b2a07c146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612e69565b6106c2565b6040516102039190613416565b60405180910390f35b34801561021857600080fd5b506102216107a4565b60405161022e9190613431565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190612ec3565b610836565b60405161026b91906133af565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612de0565b6108bb565b005b3480156102a957600080fd5b506102b26109d3565b6040516102bf919061370e565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612ef0565b6109dd565b005b3480156102fd57600080fd5b50610306610ac6565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612c6e565b610be5565b005b34801561033d57600080fd5b50610346610c45565b6040516103539190613729565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612d84565b610c4a565b604051610390919061370e565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612c6e565b610e29565b005b3480156103ce57600080fd5b506103d7610e49565b6040516103e491906136f3565b60405180910390f35b61040760048036038101906104029190612e20565b610e5d565b005b34801561041557600080fd5b50610430600480360381019061042b9190612ec3565b610f59565b60405161043d91906133af565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612c01565b61100b565b60405161047a919061370e565b60405180910390f35b34801561048f57600080fd5b506104986110c3565b005b6104a26111aa565b005b3480156104b057600080fd5b506104b96112ce565b6040516104c691906133af565b60405180910390f35b3480156104db57600080fd5b506104e46112f8565b6040516104f191906136f3565b60405180910390f35b34801561050657600080fd5b5061050f61130c565b60405161051c9190613431565b60405180910390f35b34801561053157600080fd5b5061054c60048036038101906105479190612d44565b61139e565b005b34801561055a57600080fd5b5061057560048036038101906105709190612cc1565b61151f565b005b34801561058357600080fd5b5061059e60048036038101906105999190612ec3565b611581565b6040516105ab9190613431565b60405180910390f35b3480156105c057600080fd5b506105c96116af565b6040516105d691906136f3565b60405180910390f35b3480156105eb57600080fd5b506105f46116c3565b604051610601919061370e565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612c2e565b6116c9565b60405161063e9190613416565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612c01565b61175d565b005b34801561067c57600080fd5b5061069760048036038101906106929190612f4c565b6118b4565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612ec3565b6119b2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079d575061079c82611aa9565b5b9050919050565b6060600080546107b390613a68565b80601f01602080910402602001604051908101604052809291908181526020018280546107df90613a68565b801561082c5780601f106108015761010080835404028352916020019161082c565b820191906000526020600020905b81548152906001019060200180831161080f57829003601f168201915b5050505050905090565b600061084182611b13565b610880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610877906135f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c682610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90613673565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610956611b7f565b73ffffffffffffffffffffffffffffffffffffffff16148061098557506109848161097f611b7f565b6116c9565b5b6109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613533565b60405180910390fd5b6109ce8383611b87565b505050565b6000611d4d905090565b6109e5611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610a036112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610a795750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a61611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90613613565b60405180910390fd5b610ac28282611c40565b5050565b610ace611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610aec6112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610b625750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b4a611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613613565b60405180910390fd5b6000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610bf6610bf0611b7f565b82611cb4565b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613693565b60405180910390fd5b610c40838383611d92565b505050565b600090565b6000610c54611b7f565b73ffffffffffffffffffffffffffffffffffffffff16610c726112ce565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610cd0611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613613565b60405180910390fd5b6105dc600860169054906101000a900461ffff1661ffff1610610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906136d3565b60405180910390fd5b6000600860169054906101000a900461ffff1661ffff169050610da28482611fee565b610dac8184611c40565b6001600860169054906101000a900461ffff16610dc9919061383a565b600860166101000a81548161ffff021916908361ffff1602179055506001600860188282829054906101000a900461ffff16610e05919061383a565b92506101000a81548161ffff021916908361ffff1602179055508091505092915050565b610e448383836040518060200160405280600081525061151f565b505050565b600860189054906101000a900461ffff1681565b6008601c9054906101000a900461ffff1661ffff1681511115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac906136b3565b60405180910390fd5b8051600954610ec491906138f9565b341015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613453565b60405180910390fd5b60005b81518163ffffffff161015610f5557610f41828263ffffffff1681518110610f3457610f33613bff565b5b602002602001015161200c565b508080610f4d90613b14565b915050610f09565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990613573565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613553565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cb611b7f565b73ffffffffffffffffffffffffffffffffffffffff166110e96112ce565b73ffffffffffffffffffffffffffffffffffffffff16148061115f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611147611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b61119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590613613565b60405180910390fd5b6111a860006120d9565b565b6111b2611b7f565b73ffffffffffffffffffffffffffffffffffffffff166111d06112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806112465750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661122e611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613613565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112cb573d6000803e3d6000fd5b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008601c9054906101000a900461ffff1681565b60606001805461131b90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461134790613a68565b80156113945780601f1061136957610100808354040283529160200191611394565b820191906000526020600020905b81548152906001019060200180831161137757829003601f168201915b5050505050905090565b6113a6611b7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140b906134f3565b60405180910390fd5b8060056000611421611b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ce611b7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115139190613416565b60405180910390a35050565b61153061152a611b7f565b83611cb4565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613693565b60405180910390fd5b61157b8484848461219f565b50505050565b606061158c82611b13565b6115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c2906135d3565b60405180910390fd5b60006006600084815260200190815260200160002080546115eb90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461161790613a68565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b5050505050905060008151111561169d5780604051602001611686919061338d565b6040516020818303038152906040529150506116aa565b6116a6836121fb565b9150505b919050565b600860149054906101000a900461ffff1681565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611765611b7f565b73ffffffffffffffffffffffffffffffffffffffff166117836112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806117f95750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117e1611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613613565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613493565b60405180910390fd5b6118b1816120d9565b50565b6118bc611b7f565b73ffffffffffffffffffffffffffffffffffffffff166118da6112ce565b73ffffffffffffffffffffffffffffffffffffffff1614806119505750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611938611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b61198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613613565b60405180910390fd5b8060ff166008601c6101000a81548161ffff021916908361ffff16021790555050565b6119ba611b7f565b73ffffffffffffffffffffffffffffffffffffffff166119d86112ce565b73ffffffffffffffffffffffffffffffffffffffff161480611a4e5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a36611b7f565b73ffffffffffffffffffffffffffffffffffffffff16145b611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490613613565b60405180910390fd5b662386f26fc1000081611aa091906138f9565b60098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bfa83610f59565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611c4982611b13565b611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613593565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611caf929190612944565b505050565b6000611cbf82611b13565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613513565b60405180910390fd5b6000611d0983610f59565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7857508373ffffffffffffffffffffffffffffffffffffffff16611d6084610836565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d895750611d8881856116c9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611db282610f59565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613633565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906134d3565b60405180910390fd5b611e8383838361234d565b611e8e600082611b87565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ede9190613953565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f359190613872565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612008828260405180602001604052806000815250612352565b5050565b6000611d4d600860149054906101000a900461ffff1661ffff161061203057600080fd5b6000600860149054906101000a900461ffff1661ffff1690506120533382611fee565b61205d8184611c40565b6001600860149054906101000a900461ffff1661207a919061383a565b600860146101000a81548161ffff021916908361ffff1602179055506001600860188282829054906101000a900461ffff166120b6919061383a565b92506101000a81548161ffff021916908361ffff16021790555080915050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121aa848484611d92565b6121b6848484846123ad565b6121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613473565b60405180910390fd5b50505050565b606061220682611b13565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906135d3565b60405180910390fd5b600060066000848152602001908152602001600020805461226590613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461229190613a68565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905060006122ef612544565b9050600081511415612305578192505050612348565b60008251111561233a578082604051602001612322929190613369565b60405160208183030381529060405292505050612348565b6123438461255b565b925050505b919050565b505050565b61235c8383612602565b61236960008484846123ad565b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613473565b60405180910390fd5b505050565b60006123ce8473ffffffffffffffffffffffffffffffffffffffff166127d0565b15612537578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f7611b7f565b8786866040518563ffffffff1660e01b815260040161241994939291906133ca565b602060405180830381600087803b15801561243357600080fd5b505af192505050801561246457506040513d601f19601f820116820180604052508101906124619190612e96565b60015b6124e7573d8060008114612494576040519150601f19603f3d011682016040523d82523d6000602084013e612499565b606091505b506000815114156124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690613473565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253c565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061256682611b13565b6125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90613653565b60405180910390fd5b60006125af612544565b905060008151116125cf57604051806020016040528060008152506125fa565b806125d9846127e3565b6040516020016125ea929190613369565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612669906135b3565b60405180910390fd5b61267b81611b13565b156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906134b3565b60405180910390fd5b6126c76000838361234d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127179190613872565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561282b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293f565b600082905060005b6000821461285d57808061284690613acb565b915050600a8261285691906138c8565b9150612833565b60008167ffffffffffffffff81111561287957612878613c2e565b5b6040519080825280601f01601f1916602001820160405280156128ab5781602001600182028036833780820191505090505b5090505b60008514612938576001826128c49190613953565b9150600a856128d39190613b41565b60306128df9190613872565b60f81b8183815181106128f5576128f4613bff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561293191906138c8565b94506128af565b8093505050505b919050565b82805461295090613a68565b90600052602060002090601f01602090048101928261297257600085556129b9565b82601f1061298b57805160ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b857825182559160200191906001019061299d565b5b5090506129c691906129ca565b5090565b5b808211156129e35760008160009055506001016129cb565b5090565b60006129fa6129f584613769565b613744565b90508083825260208201905082856020860282011115612a1d57612a1c613c62565b5b60005b85811015612a6b57813567ffffffffffffffff811115612a4357612a42613c5d565b5b808601612a508982612ba9565b85526020850194506020840193505050600181019050612a20565b5050509392505050565b6000612a88612a8384613795565b613744565b905082815260208101848484011115612aa457612aa3613c67565b5b612aaf848285613a26565b509392505050565b6000612aca612ac5846137c6565b613744565b905082815260208101848484011115612ae657612ae5613c67565b5b612af1848285613a26565b509392505050565b600081359050612b0881614221565b92915050565b600082601f830112612b2357612b22613c5d565b5b8135612b338482602086016129e7565b91505092915050565b600081359050612b4b81614238565b92915050565b600081359050612b608161424f565b92915050565b600081519050612b758161424f565b92915050565b600082601f830112612b9057612b8f613c5d565b5b8135612ba0848260208601612a75565b91505092915050565b600082601f830112612bbe57612bbd613c5d565b5b8135612bce848260208601612ab7565b91505092915050565b600081359050612be681614266565b92915050565b600081359050612bfb8161427d565b92915050565b600060208284031215612c1757612c16613c71565b5b6000612c2584828501612af9565b91505092915050565b60008060408385031215612c4557612c44613c71565b5b6000612c5385828601612af9565b9250506020612c6485828601612af9565b9150509250929050565b600080600060608486031215612c8757612c86613c71565b5b6000612c9586828701612af9565b9350506020612ca686828701612af9565b9250506040612cb786828701612bd7565b9150509250925092565b60008060008060808587031215612cdb57612cda613c71565b5b6000612ce987828801612af9565b9450506020612cfa87828801612af9565b9350506040612d0b87828801612bd7565b925050606085013567ffffffffffffffff811115612d2c57612d2b613c6c565b5b612d3887828801612b7b565b91505092959194509250565b60008060408385031215612d5b57612d5a613c71565b5b6000612d6985828601612af9565b9250506020612d7a85828601612b3c565b9150509250929050565b60008060408385031215612d9b57612d9a613c71565b5b6000612da985828601612af9565b925050602083013567ffffffffffffffff811115612dca57612dc9613c6c565b5b612dd685828601612ba9565b9150509250929050565b60008060408385031215612df757612df6613c71565b5b6000612e0585828601612af9565b9250506020612e1685828601612bd7565b9150509250929050565b600060208284031215612e3657612e35613c71565b5b600082013567ffffffffffffffff811115612e5457612e53613c6c565b5b612e6084828501612b0e565b91505092915050565b600060208284031215612e7f57612e7e613c71565b5b6000612e8d84828501612b51565b91505092915050565b600060208284031215612eac57612eab613c71565b5b6000612eba84828501612b66565b91505092915050565b600060208284031215612ed957612ed8613c71565b5b6000612ee784828501612bd7565b91505092915050565b60008060408385031215612f0757612f06613c71565b5b6000612f1585828601612bd7565b925050602083013567ffffffffffffffff811115612f3657612f35613c6c565b5b612f4285828601612ba9565b9150509250929050565b600060208284031215612f6257612f61613c71565b5b6000612f7084828501612bec565b91505092915050565b612f8281613987565b82525050565b612f9181613999565b82525050565b6000612fa2826137f7565b612fac818561380d565b9350612fbc818560208601613a35565b612fc581613c76565b840191505092915050565b6000612fdb82613802565b612fe5818561381e565b9350612ff5818560208601613a35565b612ffe81613c76565b840191505092915050565b600061301482613802565b61301e818561382f565b935061302e818560208601613a35565b80840191505092915050565b600061304760098361381e565b915061305282613c87565b602082019050919050565b600061306a60328361381e565b915061307582613cb0565b604082019050919050565b600061308d60268361381e565b915061309882613cff565b604082019050919050565b60006130b0601c8361381e565b91506130bb82613d4e565b602082019050919050565b60006130d360248361381e565b91506130de82613d77565b604082019050919050565b60006130f660198361381e565b915061310182613dc6565b602082019050919050565b6000613119602c8361381e565b915061312482613def565b604082019050919050565b600061313c60078361382f565b915061314782613e3e565b600782019050919050565b600061315f60388361381e565b915061316a82613e67565b604082019050919050565b6000613182602a8361381e565b915061318d82613eb6565b604082019050919050565b60006131a560298361381e565b91506131b082613f05565b604082019050919050565b60006131c8602e8361381e565b91506131d382613f54565b604082019050919050565b60006131eb60208361381e565b91506131f682613fa3565b602082019050919050565b600061320e60318361381e565b915061321982613fcc565b604082019050919050565b6000613231602c8361381e565b915061323c8261401b565b604082019050919050565b600061325460208361381e565b915061325f8261406a565b602082019050919050565b600061327760298361381e565b915061328282614093565b604082019050919050565b600061329a602f8361381e565b91506132a5826140e2565b604082019050919050565b60006132bd60218361381e565b91506132c882614131565b604082019050919050565b60006132e060318361381e565b91506132eb82614180565b604082019050919050565b6000613303601f8361381e565b915061330e826141cf565b602082019050919050565b600061332660188361381e565b9150613331826141f8565b602082019050919050565b613345816139d1565b82525050565b613354816139ff565b82525050565b61336381613a19565b82525050565b60006133758285613009565b91506133818284613009565b91508190509392505050565b60006133988261312f565b91506133a48284613009565b915081905092915050565b60006020820190506133c46000830184612f79565b92915050565b60006080820190506133df6000830187612f79565b6133ec6020830186612f79565b6133f9604083018561334b565b818103606083015261340b8184612f97565b905095945050505050565b600060208201905061342b6000830184612f88565b92915050565b6000602082019050818103600083015261344b8184612fd0565b905092915050565b6000602082019050818103600083015261346c8161303a565b9050919050565b6000602082019050818103600083015261348c8161305d565b9050919050565b600060208201905081810360008301526134ac81613080565b9050919050565b600060208201905081810360008301526134cc816130a3565b9050919050565b600060208201905081810360008301526134ec816130c6565b9050919050565b6000602082019050818103600083015261350c816130e9565b9050919050565b6000602082019050818103600083015261352c8161310c565b9050919050565b6000602082019050818103600083015261354c81613152565b9050919050565b6000602082019050818103600083015261356c81613175565b9050919050565b6000602082019050818103600083015261358c81613198565b9050919050565b600060208201905081810360008301526135ac816131bb565b9050919050565b600060208201905081810360008301526135cc816131de565b9050919050565b600060208201905081810360008301526135ec81613201565b9050919050565b6000602082019050818103600083015261360c81613224565b9050919050565b6000602082019050818103600083015261362c81613247565b9050919050565b6000602082019050818103600083015261364c8161326a565b9050919050565b6000602082019050818103600083015261366c8161328d565b9050919050565b6000602082019050818103600083015261368c816132b0565b9050919050565b600060208201905081810360008301526136ac816132d3565b9050919050565b600060208201905081810360008301526136cc816132f6565b9050919050565b600060208201905081810360008301526136ec81613319565b9050919050565b6000602082019050613708600083018461333c565b92915050565b6000602082019050613723600083018461334b565b92915050565b600060208201905061373e600083018461335a565b92915050565b600061374e61375f565b905061375a8282613a9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561378457613783613c2e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137b0576137af613c2e565b5b6137b982613c76565b9050602081019050919050565b600067ffffffffffffffff8211156137e1576137e0613c2e565b5b6137ea82613c76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613845826139d1565b9150613850836139d1565b92508261ffff0382111561386757613866613b72565b5b828201905092915050565b600061387d826139ff565b9150613888836139ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138bd576138bc613b72565b5b828201905092915050565b60006138d3826139ff565b91506138de836139ff565b9250826138ee576138ed613ba1565b5b828204905092915050565b6000613904826139ff565b915061390f836139ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394857613947613b72565b5b828202905092915050565b600061395e826139ff565b9150613969836139ff565b92508282101561397c5761397b613b72565b5b828203905092915050565b6000613992826139df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a53578082015181840152602081019050613a38565b83811115613a62576000848401525b50505050565b60006002820490506001821680613a8057607f821691505b60208210811415613a9457613a93613bd0565b5b50919050565b613aa382613c76565b810181811067ffffffffffffffff82111715613ac257613ac1613c2e565b5b80604052505050565b6000613ad6826139ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0957613b08613b72565b5b600182019050919050565b6000613b1f82613a09565b915063ffffffff821415613b3657613b35613b72565b5b600182019050919050565b6000613b4c826139ff565b9150613b57836139ff565b925082613b6757613b66613ba1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4c6f772050726963650000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74696e67206c696d6974203520746f6b656e73207065722074696d6500600082015250565b7f4f776e65722063616e206d696e74203020746f20313439390000000000000000600082015250565b61422a81613987565b811461423557600080fd5b50565b61424181613999565b811461424c57600080fd5b50565b614258816139a5565b811461426357600080fd5b50565b61426f816139ff565b811461427a57600080fd5b50565b61428681613a19565b811461429157600080fd5b5056fea26469706673582212205fbfdb8e975497e4fdf4ff88df0c0c3539eacdd092b65b9649ea99ac1802ee1864736f6c63430008070033

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.