ETH Price: $3,327.65 (-4.46%)
Gas: 2 Gwei

Token

Lucha 3D Knockout (L3DKN)
 

Overview

Max Total Supply

1,000 L3DKN

Holders

236

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leftlost.eth
Balance
2 L3DKN
0xb4bb62cf25a97d75a11d1848ef23ce66ee38d70d
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:
Lucha3DKnockout

Compiler Version
v0.8.4+commit.c7e474f2

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;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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.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 : 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 6 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);
    }

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

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

File 7 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 8 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 9 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 10 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 11 of 12 : Lucha3DKnockout.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

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

contract Lucha3DKnockout is ERC721, Ownable { 

    bool public saleActive = false;
    bool public claimActive = false;
    
    string internal baseTokenURI;

    uint public price = 0.09 ether;
    uint public totalSupply = 4444;
    uint public claimSupply = 3333;
    uint public saleSupply = 1111;
    uint public nonce = 0;
    uint public claimed = 0;
    uint public maxTx = 3;

    NFT public NFTC;
    
    mapping(uint => bool) public luchaMints;
    uint[] public used;
    
    constructor(address nft) ERC721("Lucha 3D Knockout", "L3DKN") {
        setLuchaAddress(nft);
    }

    function setLuchaAddress(address newAddress) public onlyOwner {
        NFTC = NFT(newAddress);
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setClaimSupply(uint newSupply) external onlyOwner {
        claimSupply = newSupply;
    }

    function setSaleSupply(uint newSupply) external onlyOwner {
        saleSupply = newSupply;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setClaimActive(bool val) public onlyOwner {
        claimActive = val;
    }

    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function getLuchaByOwner(address owner) public view returns (uint[] memory) {
        uint[] memory balance = new uint[](NFTC.balanceOf(owner));
        uint counter = 0;
        for (uint i = 0; i < NFTC.nonce(); i++) {
            if (NFTC.ownerOf(i) == owner) {
                balance[counter] = i;
                counter++;
            }
        }
        return balance;
    }

    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
    }

    function claim(uint[] memory ids) external payable {
        require(claimActive, "TRANSACTION: claim is not active");
        require(ids.length + claimed <= claimSupply, "SUPPLY: Value exceeds totalSupply");
        require(ids.length >= 3, "You need to own at least 3 LLKO nfts to be able to claim 3D");

        for(uint i=0; i < ids.length;i++){
            uint tokenId = ids[i];
            if((luchaMints[tokenId] != true) && (NFTC.ownerOf(tokenId) == _msgSender())){
              used.push(tokenId);
              if(used.length == 3){
                  _safeMint(_msgSender(), nonce);
                  luchaMints[tokenId] = true;
                  nonce++;
                  claimed++;
                  luchaMints[used[0]] = true;
                  luchaMints[used[1]] = true;
                  luchaMints[used[2]] = true;
                  delete used;
              }
            }
        }
    }

    function buy(uint qty) external payable {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(qty + claimed <= saleSupply, "SUPPLY: Value exceeds saleSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
    }
    
    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 12 of 12 : NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.4;

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

contract NFT is ERC721, Ownable { 
    
    string internal baseTokenURI = 'https://llko-backend.herokuapp.com/';
    uint public price = 0.06 ether;
    uint public totalSupply = 10000;
    uint public nonce = 0;
    uint public maxTx = 20;
    
    event Mint(address owner, uint qty);
    event Giveaway(address to, uint qty);
    event Withdraw(uint amount);
    event SetMember(address indexed member, uint percent);
    
    address[] public members;
    mapping (address => uint) public society;
    uint membersCount = 0;
    
    constructor() ERC721("Lucha Libre Knockout", "LLKO") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    // percent must be multiplied by 100. ex 1000 = 10%; 575 = 5.75%;
    function setMember(address member, uint percent) external onlyOwner {
        if(society[member] < 1){
            members.push(member);
            membersCount++;
        }
        if(society[member] > 0 && percent == 0){
            membersCount--;
        }
        society[member] = percent;
        emit SetMember(member, percent);
    }
    
    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
        emit Giveaway(to, qty);
    }
    
    function buy(uint qty) external payable {
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(_msgSender(), tokenId);
            nonce++;
        }
        emit Mint(_msgSender(), qty);
    }
    
    function withdrawOwner() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
    
    function withdraw() external onlyOwner {
        require(address(this).balance > price, "this account doesn't have enough balance");
        require(membersCount > 0, "WITHDRAW: couldn't find any payable address");
        uint nbalance = address(this).balance - 0.01 ether;
        address[] memory payments = new address[](membersCount);
        uint pmts=0;
        for(uint i=0; i < members.length;i++){
            address m = members[i];
            bool found = false;
            for(uint j=0; j < payments.length; j++){
                if(payments[j] == m){
                    found = true;
                    break;
                }
            }
            if(!found && society[m] > 0){
                payments[pmts] = m;
                pmts++;
                payable(m).transfer((nbalance * (society[m] / 100)) / 100);
            }
        }
    }
    
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"nft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NFTC","outputs":[{"internalType":"contract NFT","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getLuchaByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"luchaMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLuchaAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"used","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555067013fbe85edc9000060085561115c600955610d05600a55610457600b556000600c556000600d556003600e553480156200007457600080fd5b50604051620051dc380380620051dc83398181016040528101906200009a919062000404565b6040518060400160405280601181526020017f4c75636861203344204b6e6f636b6f75740000000000000000000000000000008152506040518060400160405280600581526020017f4c33444b4e00000000000000000000000000000000000000000000000000000081525081600090805190602001906200011e9291906200033d565b508060019080519060200190620001379291906200033d565b5050506200015a6200014e6200017260201b60201c565b6200017a60201b60201c565b6200016b816200024060201b60201c565b5062000566565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002506200017260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002766200031360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c69062000457565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034b90620004be565b90600052602060002090601f0160209004810192826200036f5760008555620003bb565b82601f106200038a57805160ff1916838001178555620003bb565b82800160010185558215620003bb579182015b82811115620003ba5782518255916020019190600101906200039d565b5b509050620003ca9190620003ce565b5090565b5b80821115620003e9576000816000905550600101620003cf565b5090565b600081519050620003fe816200054c565b92915050565b6000602082840312156200041757600080fd5b60006200042784828501620003ed565b91505092915050565b60006200043f60208362000479565b91506200044c8262000523565b602082019050919050565b60006020820190508181036000830152620004728162000430565b9050919050565b600082825260208201905092915050565b600062000497826200049e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d757607f821691505b60208210811415620004ee57620004ed620004f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000557816200048a565b81146200056357600080fd5b50565b614c6680620005766000396000f3fe6080604052600436106102675760003560e01c806373417b0911610144578063b88d4fde116100b6578063e2cbda4a1161007a578063e2cbda4a14610910578063e834a8341461094d578063e8cc00ad14610978578063e985e9c51461098f578063f2fde38b146109cc578063f7ea7a3d146109f557610267565b8063b88d4fde1461083a578063bc33718214610863578063c87b56dd1461088c578063d4a6a2fd146108c9578063d96a094a146108f457610267565b806391b7f5ed1161010857806391b7f5ed1461073c57806395d89b4114610765578063a035b1fe14610790578063a22cb465146107bb578063a96af0f4146107e4578063affed0e01461080f57610267565b806373417b09146106695780637437681e14610692578063841718a6146106bd5780638da5cb5b146106e6578063900a545e1461071157610267565b806322e8d8cd116101dd57806347002d1d116101a157806347002d1d146105665780636352211e1461059157806368428a1b146105ce5780636ba4c138146105f957806370a0823114610615578063715018a61461065257610267565b806322e8d8cd1461048557806323b872dd146104ae578063276f0934146104d757806330176e131461051457806342842e0e1461053d57610267565b806306fdde031161022f57806306fdde0314610361578063081812fc1461038c578063095ea7b3146103c95780630a3dfa61146103f25780630ad29ec31461042f57806318160ddd1461045a57610267565b806301799f591461026c57806301ffc9a714610295578063020fe6e5146102d257806304db5eed1461030f578063050225ea14610338575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135a8565b610a1e565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906137e2565b610ade565b6040516102c99190613e01565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190613879565b610bc0565b6040516103069190614139565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190613879565b610be4565b005b34801561034457600080fd5b5061035f600480360381019061035a919061373c565b610c6a565b005b34801561036d57600080fd5b50610376610d85565b6040516103839190613e37565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613879565b610e17565b6040516103c09190613d78565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061373c565b610e9c565b005b3480156103fe57600080fd5b50610419600480360381019061041491906135a8565b610fb4565b6040516104269190613ddf565b60405180910390f35b34801561043b57600080fd5b506104446112cf565b6040516104519190614139565b60405180910390f35b34801561046657600080fd5b5061046f6112d5565b60405161047c9190614139565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613879565b6112db565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613636565b611361565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906135a8565b6113c1565b60405161050b9190613ddf565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613834565b6114fb565b005b34801561054957600080fd5b50610564600480360381019061055f9190613636565b61158d565b005b34801561057257600080fd5b5061057b6115ad565b6040516105889190613ddf565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613879565b6115bd565b6040516105c59190613d78565b60405180910390f35b3480156105da57600080fd5b506105e361166f565b6040516105f09190613e01565b60405180910390f35b610613600480360381019061060e9190613778565b611682565b005b34801561062157600080fd5b5061063c600480360381019061063791906135a8565b611af1565b6040516106499190614139565b60405180910390f35b34801561065e57600080fd5b50610667611ba9565b005b34801561067557600080fd5b50610690600480360381019061068b91906137b9565b611c31565b005b34801561069e57600080fd5b506106a7611cca565b6040516106b49190614139565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906137b9565b611cd0565b005b3480156106f257600080fd5b506106fb611d69565b6040516107089190613d78565b60405180910390f35b34801561071d57600080fd5b50610726611d93565b6040516107339190613e1c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613879565b611db9565b005b34801561077157600080fd5b5061077a611e3f565b6040516107879190613e37565b60405180910390f35b34801561079c57600080fd5b506107a5611ed1565b6040516107b29190614139565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613700565b611ed7565b005b3480156107f057600080fd5b506107f9612058565b6040516108069190614139565b60405180910390f35b34801561081b57600080fd5b5061082461205e565b6040516108319190614139565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c9190613685565b612064565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613879565b6120c6565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613879565b61214c565b6040516108c09190613e37565b60405180910390f35b3480156108d557600080fd5b506108de6121f3565b6040516108eb9190613e01565b60405180910390f35b61090e60048036038101906109099190613879565b612206565b005b34801561091c57600080fd5b5061093760048036038101906109329190613879565b6123e4565b6040516109449190613e01565b60405180910390f35b34801561095957600080fd5b50610962612404565b60405161096f9190614139565b60405180910390f35b34801561098457600080fd5b5061098d61240a565b005b34801561099b57600080fd5b506109b660048036038101906109b191906135fa565b6124cf565b6040516109c39190613e01565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee91906135a8565b612563565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613879565b61265b565b005b610a266126e1565b73ffffffffffffffffffffffffffffffffffffffff16610a44611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190614059565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb95750610bb8826126e9565b5b9050919050565b60118181548110610bd057600080fd5b906000526020600020016000915090505481565b610bec6126e1565b73ffffffffffffffffffffffffffffffffffffffff16610c0a611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790614059565b60405180910390fd5b80600b8190555050565b610c726126e1565b73ffffffffffffffffffffffffffffffffffffffff16610c90611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90614059565b60405180910390fd5b600954600c5482610cf79190614252565b1115610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f906140d9565b60405180910390fd5b60005b81811015610d80576000600c549050610d548482612753565b600c6000815480929190610d67906144a4565b9190505550508080610d78906144a4565b915050610d3b565b505050565b606060008054610d9490614441565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc090614441565b8015610e0d5780601f10610de257610100808354040283529160200191610e0d565b820191906000526020600020905b815481529060010190602001808311610df057829003601f168201915b5050505050905090565b6000610e2282612771565b610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890614039565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ea7826115bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906140b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f376126e1565b73ffffffffffffffffffffffffffffffffffffffff161480610f665750610f6581610f606126e1565b6124cf565b5b610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613f99565b60405180910390fd5b610faf83836127dd565b505050565b60606000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016110139190613d78565b60206040518083038186803b15801561102b57600080fd5b505afa15801561103f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106391906138a2565b67ffffffffffffffff8111156110a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110d05781602001602082028036833780820191505090505b5090506000805b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b815260040160206040518083038186803b15801561113f57600080fd5b505afa158015611153573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117791906138a2565b8110156112c4578473ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111f09190614139565b60206040518083038186803b15801561120857600080fd5b505afa15801561121c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124091906135d1565b73ffffffffffffffffffffffffffffffffffffffff1614156112b15780838381518110611296577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806112ad906144a4565b9250505b80806112bc906144a4565b9150506110d7565b508192505050919050565b600a5481565b60095481565b6112e36126e1565b73ffffffffffffffffffffffffffffffffffffffff16611301611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614059565b60405180910390fd5b80600a8190555050565b61137261136c6126e1565b82612896565b6113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906140f9565b60405180910390fd5b6113bc838383612974565b505050565b606060006113ce83611af1565b67ffffffffffffffff81111561140d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561143b5781602001602082028036833780820191505090505b5090506000805b600c548110156114f0578473ffffffffffffffffffffffffffffffffffffffff1661146c826115bd565b73ffffffffffffffffffffffffffffffffffffffff1614156114dd57808383815181106114c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806114d9906144a4565b9250505b80806114e8906144a4565b915050611442565b508192505050919050565b6115036126e1565b73ffffffffffffffffffffffffffffffffffffffff16611521611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614059565b60405180910390fd5b818160079190611588929190613309565b505050565b6115a883838360405180602001604052806000815250612064565b505050565b60606115b8326113c1565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613fd9565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b600660159054906101000a900460ff166116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890614119565b60405180910390fd5b600a54600d5482516116e39190614252565b1115611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b906140d9565b60405180910390fd5b600381511015611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613e59565b60405180910390fd5b60005b8151811015611aed5760008282815181106117b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600115156010600083815260200190815260200160002060009054906101000a900460ff161515141580156118cb57506117f26126e1565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016118639190614139565b60206040518083038186803b15801561187b57600080fd5b505afa15801561188f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b391906135d1565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ad957601181908060018154018082558091505060019003906000526020600020016000909190919091505560036011805490501415611ad85761191a6119126126e1565b600c54612753565b60016010600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190611959906144a4565b9190505550600d6000815480929190611971906144a4565b919050555060016010600060116000815481106119b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060006011600181548110611a28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060006011600281548110611a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff02191690831515021790555060116000611ad7919061338f565b5b5b508080611ae5906144a4565b91505061176c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613fb9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bb16126e1565b73ffffffffffffffffffffffffffffffffffffffff16611bcf611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90614059565b60405180910390fd5b611c2f6000612bd0565b565b611c396126e1565b73ffffffffffffffffffffffffffffffffffffffff16611c57611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614059565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600e5481565b611cd86126e1565b73ffffffffffffffffffffffffffffffffffffffff16611cf6611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390614059565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611dc16126e1565b73ffffffffffffffffffffffffffffffffffffffff16611ddf611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614059565b60405180910390fd5b8060088190555050565b606060018054611e4e90614441565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7a90614441565b8015611ec75780601f10611e9c57610100808354040283529160200191611ec7565b820191906000526020600020905b815481529060010190602001808311611eaa57829003601f168201915b5050505050905090565b60085481565b611edf6126e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490613f39565b60405180910390fd5b8060056000611f5a6126e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120076126e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204c9190613e01565b60405180910390a35050565b600b5481565b600c5481565b61207561206f6126e1565b83612896565b6120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab906140f9565b60405180910390fd5b6120c084848484612c96565b50505050565b6120ce6126e1565b73ffffffffffffffffffffffffffffffffffffffff166120ec611d69565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614059565b60405180910390fd5b80600e8190555050565b606061215782612771565b612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614099565b60405180910390fd5b60006121a0612cf2565b905060008151116121c057604051806020016040528060008152506121eb565b806121ca84612d84565b6040516020016121db929190613d54565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614019565b60405180910390fd5b600e54811115806122665750600181105b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613ed9565b60405180910390fd5b600954600c54826122b69190614252565b11156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906140d9565b60405180910390fd5b600b54600d54826123089190614252565b1115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090613f59565b60405180910390fd5b8060085461235791906142d9565b3414612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613ef9565b60405180910390fd5b60005b818110156123e0576000600c5490506123b43382612753565b600c60008154809291906123c7906144a4565b91905055505080806123d8906144a4565b91505061239b565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b600d5481565b6124126126e1565b73ffffffffffffffffffffffffffffffffffffffff16612430611d69565b73ffffffffffffffffffffffffffffffffffffffff1614612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90614059565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156124cc573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256b6126e1565b73ffffffffffffffffffffffffffffffffffffffff16612589611d69565b73ffffffffffffffffffffffffffffffffffffffff16146125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d690614059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264690613e99565b60405180910390fd5b61265881612bd0565b50565b6126636126e1565b73ffffffffffffffffffffffffffffffffffffffff16612681611d69565b73ffffffffffffffffffffffffffffffffffffffff16146126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614059565b60405180910390fd5b8060098190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61276d828260405180602001604052806000815250612f31565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612850836115bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128a182612771565b6128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790613f79565b60405180910390fd5b60006128eb836115bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295a57508373ffffffffffffffffffffffffffffffffffffffff1661294284610e17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061296b575061296a81856124cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612994826115bd565b73ffffffffffffffffffffffffffffffffffffffff16146129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e190614079565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613f19565b60405180910390fd5b612a65838383612f8c565b612a706000826127dd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac09190614333565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b179190614252565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ca1848484612974565b612cad84848484612f91565b612cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce390613e79565b60405180910390fd5b50505050565b606060078054612d0190614441565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2d90614441565b8015612d7a5780601f10612d4f57610100808354040283529160200191612d7a565b820191906000526020600020905b815481529060010190602001808311612d5d57829003601f168201915b5050505050905090565b60606000821415612dcc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f2c565b600082905060005b60008214612dfe578080612de7906144a4565b915050600a82612df791906142a8565b9150612dd4565b60008167ffffffffffffffff811115612e40577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e725781602001600182028036833780820191505090505b5090505b60008514612f2557600182612e8b9190614333565b9150600a85612e9a91906144ed565b6030612ea69190614252565b60f81b818381518110612ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f1e91906142a8565b9450612e76565b8093505050505b919050565b612f3b8383613128565b612f486000848484612f91565b612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e90613e79565b60405180910390fd5b505050565b505050565b6000612fb28473ffffffffffffffffffffffffffffffffffffffff166132f6565b1561311b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb6126e1565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190613d93565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f82011682018060405250810190613045919061380b565b60015b6130cb573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ba90613e79565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613120565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f90613ff9565b60405180910390fd5b6131a181612771565b156131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d890613eb9565b60405180910390fd5b6131ed60008383612f8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323d9190614252565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461331590614441565b90600052602060002090601f016020900481019282613337576000855561337e565b82601f1061335057803560ff191683800117855561337e565b8280016001018555821561337e579182015b8281111561337d578235825591602001919060010190613362565b5b50905061338b91906133b0565b5090565b50805460008255906000526020600020908101906133ad91906133b0565b50565b5b808211156133c95760008160009055506001016133b1565b5090565b60006133e06133db84614179565b614154565b905080838252602082019050828560208602820111156133ff57600080fd5b60005b8581101561342f5781613415888261357e565b845260208401935060208301925050600181019050613402565b5050509392505050565b600061344c613447846141a5565b614154565b90508281526020810184848401111561346457600080fd5b61346f8482856143ff565b509392505050565b60008135905061348681614bd4565b92915050565b60008151905061349b81614bd4565b92915050565b600082601f8301126134b257600080fd5b81356134c28482602086016133cd565b91505092915050565b6000813590506134da81614beb565b92915050565b6000813590506134ef81614c02565b92915050565b60008151905061350481614c02565b92915050565b600082601f83011261351b57600080fd5b813561352b848260208601613439565b91505092915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083600182028301111561357757600080fd5b9250929050565b60008135905061358d81614c19565b92915050565b6000815190506135a281614c19565b92915050565b6000602082840312156135ba57600080fd5b60006135c884828501613477565b91505092915050565b6000602082840312156135e357600080fd5b60006135f18482850161348c565b91505092915050565b6000806040838503121561360d57600080fd5b600061361b85828601613477565b925050602061362c85828601613477565b9150509250929050565b60008060006060848603121561364b57600080fd5b600061365986828701613477565b935050602061366a86828701613477565b925050604061367b8682870161357e565b9150509250925092565b6000806000806080858703121561369b57600080fd5b60006136a987828801613477565b94505060206136ba87828801613477565b93505060406136cb8782880161357e565b925050606085013567ffffffffffffffff8111156136e857600080fd5b6136f48782880161350a565b91505092959194509250565b6000806040838503121561371357600080fd5b600061372185828601613477565b9250506020613732858286016134cb565b9150509250929050565b6000806040838503121561374f57600080fd5b600061375d85828601613477565b925050602061376e8582860161357e565b9150509250929050565b60006020828403121561378a57600080fd5b600082013567ffffffffffffffff8111156137a457600080fd5b6137b0848285016134a1565b91505092915050565b6000602082840312156137cb57600080fd5b60006137d9848285016134cb565b91505092915050565b6000602082840312156137f457600080fd5b6000613802848285016134e0565b91505092915050565b60006020828403121561381d57600080fd5b600061382b848285016134f5565b91505092915050565b6000806020838503121561384757600080fd5b600083013567ffffffffffffffff81111561386157600080fd5b61386d85828601613534565b92509250509250929050565b60006020828403121561388b57600080fd5b60006138998482850161357e565b91505092915050565b6000602082840312156138b457600080fd5b60006138c284828501613593565b91505092915050565b60006138d78383613d36565b60208301905092915050565b6138ec81614367565b82525050565b60006138fd826141e6565b6139078185614214565b9350613912836141d6565b8060005b8381101561394357815161392a88826138cb565b975061393583614207565b925050600181019050613916565b5085935050505092915050565b61395981614379565b82525050565b600061396a826141f1565b6139748185614225565b935061398481856020860161440e565b61398d816145da565b840191505092915050565b6139a1816143db565b82525050565b60006139b2826141fc565b6139bc8185614236565b93506139cc81856020860161440e565b6139d5816145da565b840191505092915050565b60006139eb826141fc565b6139f58185614247565b9350613a0581856020860161440e565b80840191505092915050565b6000613a1e603b83614236565b9150613a29826145eb565b604082019050919050565b6000613a41603283614236565b9150613a4c8261463a565b604082019050919050565b6000613a64602683614236565b9150613a6f82614689565b604082019050919050565b6000613a87601c83614236565b9150613a92826146d8565b602082019050919050565b6000613aaa602483614236565b9150613ab582614701565b604082019050919050565b6000613acd601683614236565b9150613ad882614750565b602082019050919050565b6000613af0602483614236565b9150613afb82614779565b604082019050919050565b6000613b13601983614236565b9150613b1e826147c8565b602082019050919050565b6000613b36602083614236565b9150613b41826147f1565b602082019050919050565b6000613b59602c83614236565b9150613b648261481a565b604082019050919050565b6000613b7c603883614236565b9150613b8782614869565b604082019050919050565b6000613b9f602a83614236565b9150613baa826148b8565b604082019050919050565b6000613bc2602983614236565b9150613bcd82614907565b604082019050919050565b6000613be5602083614236565b9150613bf082614956565b602082019050919050565b6000613c08601f83614236565b9150613c138261497f565b602082019050919050565b6000613c2b602c83614236565b9150613c36826149a8565b604082019050919050565b6000613c4e602083614236565b9150613c59826149f7565b602082019050919050565b6000613c71602983614236565b9150613c7c82614a20565b604082019050919050565b6000613c94602f83614236565b9150613c9f82614a6f565b604082019050919050565b6000613cb7602183614236565b9150613cc282614abe565b604082019050919050565b6000613cda602183614236565b9150613ce582614b0d565b604082019050919050565b6000613cfd603183614236565b9150613d0882614b5c565b604082019050919050565b6000613d20602083614236565b9150613d2b82614bab565b602082019050919050565b613d3f816143d1565b82525050565b613d4e816143d1565b82525050565b6000613d6082856139e0565b9150613d6c82846139e0565b91508190509392505050565b6000602082019050613d8d60008301846138e3565b92915050565b6000608082019050613da860008301876138e3565b613db560208301866138e3565b613dc26040830185613d45565b8181036060830152613dd4818461395f565b905095945050505050565b60006020820190508181036000830152613df981846138f2565b905092915050565b6000602082019050613e166000830184613950565b92915050565b6000602082019050613e316000830184613998565b92915050565b60006020820190508181036000830152613e5181846139a7565b905092915050565b60006020820190508181036000830152613e7281613a11565b9050919050565b60006020820190508181036000830152613e9281613a34565b9050919050565b60006020820190508181036000830152613eb281613a57565b9050919050565b60006020820190508181036000830152613ed281613a7a565b9050919050565b60006020820190508181036000830152613ef281613a9d565b9050919050565b60006020820190508181036000830152613f1281613ac0565b9050919050565b60006020820190508181036000830152613f3281613ae3565b9050919050565b60006020820190508181036000830152613f5281613b06565b9050919050565b60006020820190508181036000830152613f7281613b29565b9050919050565b60006020820190508181036000830152613f9281613b4c565b9050919050565b60006020820190508181036000830152613fb281613b6f565b9050919050565b60006020820190508181036000830152613fd281613b92565b9050919050565b60006020820190508181036000830152613ff281613bb5565b9050919050565b6000602082019050818103600083015261401281613bd8565b9050919050565b6000602082019050818103600083015261403281613bfb565b9050919050565b6000602082019050818103600083015261405281613c1e565b9050919050565b6000602082019050818103600083015261407281613c41565b9050919050565b6000602082019050818103600083015261409281613c64565b9050919050565b600060208201905081810360008301526140b281613c87565b9050919050565b600060208201905081810360008301526140d281613caa565b9050919050565b600060208201905081810360008301526140f281613ccd565b9050919050565b6000602082019050818103600083015261411281613cf0565b9050919050565b6000602082019050818103600083015261413281613d13565b9050919050565b600060208201905061414e6000830184613d45565b92915050565b600061415e61416f565b905061416a8282614473565b919050565b6000604051905090565b600067ffffffffffffffff821115614194576141936145ab565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141c0576141bf6145ab565b5b6141c9826145da565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061425d826143d1565b9150614268836143d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429d5761429c61451e565b5b828201905092915050565b60006142b3826143d1565b91506142be836143d1565b9250826142ce576142cd61454d565b5b828204905092915050565b60006142e4826143d1565b91506142ef836143d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143285761432761451e565b5b828202905092915050565b600061433e826143d1565b9150614349836143d1565b92508282101561435c5761435b61451e565b5b828203905092915050565b6000614372826143b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006143e6826143ed565b9050919050565b60006143f8826143b1565b9050919050565b82818337600083830152505050565b60005b8381101561442c578082015181840152602081019050614411565b8381111561443b576000848401525b50505050565b6000600282049050600182168061445957607f821691505b6020821081141561446d5761446c61457c565b5b50919050565b61447c826145da565b810181811067ffffffffffffffff8211171561449b5761449a6145ab565b5b80604052505050565b60006144af826143d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144e2576144e161451e565b5b600182019050919050565b60006144f8826143d1565b9150614503836143d1565b9250826145135761451261454d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f75206e65656420746f206f776e206174206c656173742033204c4c4b4f2060008201527f6e66747320746f2062652061626c6520746f20636c61696d2033440000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f535550504c593a2056616c756520657863656564732073616c65537570706c79600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20636c61696d206973206e6f7420616374697665600082015250565b614bdd81614367565b8114614be857600080fd5b50565b614bf481614379565b8114614bff57600080fd5b50565b614c0b81614385565b8114614c1657600080fd5b50565b614c22816143d1565b8114614c2d57600080fd5b5056fea264697066735822122077824142f4151e7c37676d7a7eaf524f8c8ba67acd0040f70a3400a0ff88078a64736f6c63430008040033000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff

Deployed Bytecode

0x6080604052600436106102675760003560e01c806373417b0911610144578063b88d4fde116100b6578063e2cbda4a1161007a578063e2cbda4a14610910578063e834a8341461094d578063e8cc00ad14610978578063e985e9c51461098f578063f2fde38b146109cc578063f7ea7a3d146109f557610267565b8063b88d4fde1461083a578063bc33718214610863578063c87b56dd1461088c578063d4a6a2fd146108c9578063d96a094a146108f457610267565b806391b7f5ed1161010857806391b7f5ed1461073c57806395d89b4114610765578063a035b1fe14610790578063a22cb465146107bb578063a96af0f4146107e4578063affed0e01461080f57610267565b806373417b09146106695780637437681e14610692578063841718a6146106bd5780638da5cb5b146106e6578063900a545e1461071157610267565b806322e8d8cd116101dd57806347002d1d116101a157806347002d1d146105665780636352211e1461059157806368428a1b146105ce5780636ba4c138146105f957806370a0823114610615578063715018a61461065257610267565b806322e8d8cd1461048557806323b872dd146104ae578063276f0934146104d757806330176e131461051457806342842e0e1461053d57610267565b806306fdde031161022f57806306fdde0314610361578063081812fc1461038c578063095ea7b3146103c95780630a3dfa61146103f25780630ad29ec31461042f57806318160ddd1461045a57610267565b806301799f591461026c57806301ffc9a714610295578063020fe6e5146102d257806304db5eed1461030f578063050225ea14610338575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135a8565b610a1e565b005b3480156102a157600080fd5b506102bc60048036038101906102b791906137e2565b610ade565b6040516102c99190613e01565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190613879565b610bc0565b6040516103069190614139565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190613879565b610be4565b005b34801561034457600080fd5b5061035f600480360381019061035a919061373c565b610c6a565b005b34801561036d57600080fd5b50610376610d85565b6040516103839190613e37565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613879565b610e17565b6040516103c09190613d78565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061373c565b610e9c565b005b3480156103fe57600080fd5b50610419600480360381019061041491906135a8565b610fb4565b6040516104269190613ddf565b60405180910390f35b34801561043b57600080fd5b506104446112cf565b6040516104519190614139565b60405180910390f35b34801561046657600080fd5b5061046f6112d5565b60405161047c9190614139565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613879565b6112db565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613636565b611361565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906135a8565b6113c1565b60405161050b9190613ddf565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190613834565b6114fb565b005b34801561054957600080fd5b50610564600480360381019061055f9190613636565b61158d565b005b34801561057257600080fd5b5061057b6115ad565b6040516105889190613ddf565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613879565b6115bd565b6040516105c59190613d78565b60405180910390f35b3480156105da57600080fd5b506105e361166f565b6040516105f09190613e01565b60405180910390f35b610613600480360381019061060e9190613778565b611682565b005b34801561062157600080fd5b5061063c600480360381019061063791906135a8565b611af1565b6040516106499190614139565b60405180910390f35b34801561065e57600080fd5b50610667611ba9565b005b34801561067557600080fd5b50610690600480360381019061068b91906137b9565b611c31565b005b34801561069e57600080fd5b506106a7611cca565b6040516106b49190614139565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906137b9565b611cd0565b005b3480156106f257600080fd5b506106fb611d69565b6040516107089190613d78565b60405180910390f35b34801561071d57600080fd5b50610726611d93565b6040516107339190613e1c565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190613879565b611db9565b005b34801561077157600080fd5b5061077a611e3f565b6040516107879190613e37565b60405180910390f35b34801561079c57600080fd5b506107a5611ed1565b6040516107b29190614139565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613700565b611ed7565b005b3480156107f057600080fd5b506107f9612058565b6040516108069190614139565b60405180910390f35b34801561081b57600080fd5b5061082461205e565b6040516108319190614139565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c9190613685565b612064565b005b34801561086f57600080fd5b5061088a60048036038101906108859190613879565b6120c6565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613879565b61214c565b6040516108c09190613e37565b60405180910390f35b3480156108d557600080fd5b506108de6121f3565b6040516108eb9190613e01565b60405180910390f35b61090e60048036038101906109099190613879565b612206565b005b34801561091c57600080fd5b5061093760048036038101906109329190613879565b6123e4565b6040516109449190613e01565b60405180910390f35b34801561095957600080fd5b50610962612404565b60405161096f9190614139565b60405180910390f35b34801561098457600080fd5b5061098d61240a565b005b34801561099b57600080fd5b506109b660048036038101906109b191906135fa565b6124cf565b6040516109c39190613e01565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee91906135a8565b612563565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613879565b61265b565b005b610a266126e1565b73ffffffffffffffffffffffffffffffffffffffff16610a44611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190614059565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb95750610bb8826126e9565b5b9050919050565b60118181548110610bd057600080fd5b906000526020600020016000915090505481565b610bec6126e1565b73ffffffffffffffffffffffffffffffffffffffff16610c0a611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790614059565b60405180910390fd5b80600b8190555050565b610c726126e1565b73ffffffffffffffffffffffffffffffffffffffff16610c90611d69565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90614059565b60405180910390fd5b600954600c5482610cf79190614252565b1115610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f906140d9565b60405180910390fd5b60005b81811015610d80576000600c549050610d548482612753565b600c6000815480929190610d67906144a4565b9190505550508080610d78906144a4565b915050610d3b565b505050565b606060008054610d9490614441565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc090614441565b8015610e0d5780601f10610de257610100808354040283529160200191610e0d565b820191906000526020600020905b815481529060010190602001808311610df057829003601f168201915b5050505050905090565b6000610e2282612771565b610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890614039565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ea7826115bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906140b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f376126e1565b73ffffffffffffffffffffffffffffffffffffffff161480610f665750610f6581610f606126e1565b6124cf565b5b610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613f99565b60405180910390fd5b610faf83836127dd565b505050565b60606000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016110139190613d78565b60206040518083038186803b15801561102b57600080fd5b505afa15801561103f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106391906138a2565b67ffffffffffffffff8111156110a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110d05781602001602082028036833780820191505090505b5090506000805b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b815260040160206040518083038186803b15801561113f57600080fd5b505afa158015611153573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117791906138a2565b8110156112c4578473ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016111f09190614139565b60206040518083038186803b15801561120857600080fd5b505afa15801561121c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124091906135d1565b73ffffffffffffffffffffffffffffffffffffffff1614156112b15780838381518110611296577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806112ad906144a4565b9250505b80806112bc906144a4565b9150506110d7565b508192505050919050565b600a5481565b60095481565b6112e36126e1565b73ffffffffffffffffffffffffffffffffffffffff16611301611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614059565b60405180910390fd5b80600a8190555050565b61137261136c6126e1565b82612896565b6113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906140f9565b60405180910390fd5b6113bc838383612974565b505050565b606060006113ce83611af1565b67ffffffffffffffff81111561140d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561143b5781602001602082028036833780820191505090505b5090506000805b600c548110156114f0578473ffffffffffffffffffffffffffffffffffffffff1661146c826115bd565b73ffffffffffffffffffffffffffffffffffffffff1614156114dd57808383815181106114c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806114d9906144a4565b9250505b80806114e8906144a4565b915050611442565b508192505050919050565b6115036126e1565b73ffffffffffffffffffffffffffffffffffffffff16611521611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90614059565b60405180910390fd5b818160079190611588929190613309565b505050565b6115a883838360405180602001604052806000815250612064565b505050565b60606115b8326113c1565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613fd9565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b600660159054906101000a900460ff166116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890614119565b60405180910390fd5b600a54600d5482516116e39190614252565b1115611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b906140d9565b60405180910390fd5b600381511015611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613e59565b60405180910390fd5b60005b8151811015611aed5760008282815181106117b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600115156010600083815260200190815260200160002060009054906101000a900460ff161515141580156118cb57506117f26126e1565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016118639190614139565b60206040518083038186803b15801561187b57600080fd5b505afa15801561188f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b391906135d1565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ad957601181908060018154018082558091505060019003906000526020600020016000909190919091505560036011805490501415611ad85761191a6119126126e1565b600c54612753565b60016010600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190611959906144a4565b9190505550600d6000815480929190611971906144a4565b919050555060016010600060116000815481106119b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060006011600181548110611a28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060006011600281548110611a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060006101000a81548160ff02191690831515021790555060116000611ad7919061338f565b5b5b508080611ae5906144a4565b91505061176c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613fb9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bb16126e1565b73ffffffffffffffffffffffffffffffffffffffff16611bcf611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90614059565b60405180910390fd5b611c2f6000612bd0565b565b611c396126e1565b73ffffffffffffffffffffffffffffffffffffffff16611c57611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca490614059565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600e5481565b611cd86126e1565b73ffffffffffffffffffffffffffffffffffffffff16611cf6611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390614059565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611dc16126e1565b73ffffffffffffffffffffffffffffffffffffffff16611ddf611d69565b73ffffffffffffffffffffffffffffffffffffffff1614611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614059565b60405180910390fd5b8060088190555050565b606060018054611e4e90614441565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7a90614441565b8015611ec75780601f10611e9c57610100808354040283529160200191611ec7565b820191906000526020600020905b815481529060010190602001808311611eaa57829003601f168201915b5050505050905090565b60085481565b611edf6126e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4490613f39565b60405180910390fd5b8060056000611f5a6126e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120076126e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204c9190613e01565b60405180910390a35050565b600b5481565b600c5481565b61207561206f6126e1565b83612896565b6120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab906140f9565b60405180910390fd5b6120c084848484612c96565b50505050565b6120ce6126e1565b73ffffffffffffffffffffffffffffffffffffffff166120ec611d69565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614059565b60405180910390fd5b80600e8190555050565b606061215782612771565b612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614099565b60405180910390fd5b60006121a0612cf2565b905060008151116121c057604051806020016040528060008152506121eb565b806121ca84612d84565b6040516020016121db929190613d54565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c90614019565b60405180910390fd5b600e54811115806122665750600181105b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613ed9565b60405180910390fd5b600954600c54826122b69190614252565b11156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906140d9565b60405180910390fd5b600b54600d54826123089190614252565b1115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090613f59565b60405180910390fd5b8060085461235791906142d9565b3414612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90613ef9565b60405180910390fd5b60005b818110156123e0576000600c5490506123b43382612753565b600c60008154809291906123c7906144a4565b91905055505080806123d8906144a4565b91505061239b565b5050565b60106020528060005260406000206000915054906101000a900460ff1681565b600d5481565b6124126126e1565b73ffffffffffffffffffffffffffffffffffffffff16612430611d69565b73ffffffffffffffffffffffffffffffffffffffff1614612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90614059565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156124cc573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256b6126e1565b73ffffffffffffffffffffffffffffffffffffffff16612589611d69565b73ffffffffffffffffffffffffffffffffffffffff16146125df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d690614059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264690613e99565b60405180910390fd5b61265881612bd0565b50565b6126636126e1565b73ffffffffffffffffffffffffffffffffffffffff16612681611d69565b73ffffffffffffffffffffffffffffffffffffffff16146126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614059565b60405180910390fd5b8060098190555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61276d828260405180602001604052806000815250612f31565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612850836115bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128a182612771565b6128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d790613f79565b60405180910390fd5b60006128eb836115bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295a57508373ffffffffffffffffffffffffffffffffffffffff1661294284610e17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061296b575061296a81856124cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612994826115bd565b73ffffffffffffffffffffffffffffffffffffffff16146129ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e190614079565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190613f19565b60405180910390fd5b612a65838383612f8c565b612a706000826127dd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac09190614333565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b179190614252565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ca1848484612974565b612cad84848484612f91565b612cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce390613e79565b60405180910390fd5b50505050565b606060078054612d0190614441565b80601f0160208091040260200160405190810160405280929190818152602001828054612d2d90614441565b8015612d7a5780601f10612d4f57610100808354040283529160200191612d7a565b820191906000526020600020905b815481529060010190602001808311612d5d57829003601f168201915b5050505050905090565b60606000821415612dcc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f2c565b600082905060005b60008214612dfe578080612de7906144a4565b915050600a82612df791906142a8565b9150612dd4565b60008167ffffffffffffffff811115612e40577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e725781602001600182028036833780820191505090505b5090505b60008514612f2557600182612e8b9190614333565b9150600a85612e9a91906144ed565b6030612ea69190614252565b60f81b818381518110612ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f1e91906142a8565b9450612e76565b8093505050505b919050565b612f3b8383613128565b612f486000848484612f91565b612f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7e90613e79565b60405180910390fd5b505050565b505050565b6000612fb28473ffffffffffffffffffffffffffffffffffffffff166132f6565b1561311b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb6126e1565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190613d93565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f82011682018060405250810190613045919061380b565b60015b6130cb573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ba90613e79565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613120565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f90613ff9565b60405180910390fd5b6131a181612771565b156131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d890613eb9565b60405180910390fd5b6131ed60008383612f8c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323d9190614252565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461331590614441565b90600052602060002090601f016020900481019282613337576000855561337e565b82601f1061335057803560ff191683800117855561337e565b8280016001018555821561337e579182015b8281111561337d578235825591602001919060010190613362565b5b50905061338b91906133b0565b5090565b50805460008255906000526020600020908101906133ad91906133b0565b50565b5b808211156133c95760008160009055506001016133b1565b5090565b60006133e06133db84614179565b614154565b905080838252602082019050828560208602820111156133ff57600080fd5b60005b8581101561342f5781613415888261357e565b845260208401935060208301925050600181019050613402565b5050509392505050565b600061344c613447846141a5565b614154565b90508281526020810184848401111561346457600080fd5b61346f8482856143ff565b509392505050565b60008135905061348681614bd4565b92915050565b60008151905061349b81614bd4565b92915050565b600082601f8301126134b257600080fd5b81356134c28482602086016133cd565b91505092915050565b6000813590506134da81614beb565b92915050565b6000813590506134ef81614c02565b92915050565b60008151905061350481614c02565b92915050565b600082601f83011261351b57600080fd5b813561352b848260208601613439565b91505092915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083600182028301111561357757600080fd5b9250929050565b60008135905061358d81614c19565b92915050565b6000815190506135a281614c19565b92915050565b6000602082840312156135ba57600080fd5b60006135c884828501613477565b91505092915050565b6000602082840312156135e357600080fd5b60006135f18482850161348c565b91505092915050565b6000806040838503121561360d57600080fd5b600061361b85828601613477565b925050602061362c85828601613477565b9150509250929050565b60008060006060848603121561364b57600080fd5b600061365986828701613477565b935050602061366a86828701613477565b925050604061367b8682870161357e565b9150509250925092565b6000806000806080858703121561369b57600080fd5b60006136a987828801613477565b94505060206136ba87828801613477565b93505060406136cb8782880161357e565b925050606085013567ffffffffffffffff8111156136e857600080fd5b6136f48782880161350a565b91505092959194509250565b6000806040838503121561371357600080fd5b600061372185828601613477565b9250506020613732858286016134cb565b9150509250929050565b6000806040838503121561374f57600080fd5b600061375d85828601613477565b925050602061376e8582860161357e565b9150509250929050565b60006020828403121561378a57600080fd5b600082013567ffffffffffffffff8111156137a457600080fd5b6137b0848285016134a1565b91505092915050565b6000602082840312156137cb57600080fd5b60006137d9848285016134cb565b91505092915050565b6000602082840312156137f457600080fd5b6000613802848285016134e0565b91505092915050565b60006020828403121561381d57600080fd5b600061382b848285016134f5565b91505092915050565b6000806020838503121561384757600080fd5b600083013567ffffffffffffffff81111561386157600080fd5b61386d85828601613534565b92509250509250929050565b60006020828403121561388b57600080fd5b60006138998482850161357e565b91505092915050565b6000602082840312156138b457600080fd5b60006138c284828501613593565b91505092915050565b60006138d78383613d36565b60208301905092915050565b6138ec81614367565b82525050565b60006138fd826141e6565b6139078185614214565b9350613912836141d6565b8060005b8381101561394357815161392a88826138cb565b975061393583614207565b925050600181019050613916565b5085935050505092915050565b61395981614379565b82525050565b600061396a826141f1565b6139748185614225565b935061398481856020860161440e565b61398d816145da565b840191505092915050565b6139a1816143db565b82525050565b60006139b2826141fc565b6139bc8185614236565b93506139cc81856020860161440e565b6139d5816145da565b840191505092915050565b60006139eb826141fc565b6139f58185614247565b9350613a0581856020860161440e565b80840191505092915050565b6000613a1e603b83614236565b9150613a29826145eb565b604082019050919050565b6000613a41603283614236565b9150613a4c8261463a565b604082019050919050565b6000613a64602683614236565b9150613a6f82614689565b604082019050919050565b6000613a87601c83614236565b9150613a92826146d8565b602082019050919050565b6000613aaa602483614236565b9150613ab582614701565b604082019050919050565b6000613acd601683614236565b9150613ad882614750565b602082019050919050565b6000613af0602483614236565b9150613afb82614779565b604082019050919050565b6000613b13601983614236565b9150613b1e826147c8565b602082019050919050565b6000613b36602083614236565b9150613b41826147f1565b602082019050919050565b6000613b59602c83614236565b9150613b648261481a565b604082019050919050565b6000613b7c603883614236565b9150613b8782614869565b604082019050919050565b6000613b9f602a83614236565b9150613baa826148b8565b604082019050919050565b6000613bc2602983614236565b9150613bcd82614907565b604082019050919050565b6000613be5602083614236565b9150613bf082614956565b602082019050919050565b6000613c08601f83614236565b9150613c138261497f565b602082019050919050565b6000613c2b602c83614236565b9150613c36826149a8565b604082019050919050565b6000613c4e602083614236565b9150613c59826149f7565b602082019050919050565b6000613c71602983614236565b9150613c7c82614a20565b604082019050919050565b6000613c94602f83614236565b9150613c9f82614a6f565b604082019050919050565b6000613cb7602183614236565b9150613cc282614abe565b604082019050919050565b6000613cda602183614236565b9150613ce582614b0d565b604082019050919050565b6000613cfd603183614236565b9150613d0882614b5c565b604082019050919050565b6000613d20602083614236565b9150613d2b82614bab565b602082019050919050565b613d3f816143d1565b82525050565b613d4e816143d1565b82525050565b6000613d6082856139e0565b9150613d6c82846139e0565b91508190509392505050565b6000602082019050613d8d60008301846138e3565b92915050565b6000608082019050613da860008301876138e3565b613db560208301866138e3565b613dc26040830185613d45565b8181036060830152613dd4818461395f565b905095945050505050565b60006020820190508181036000830152613df981846138f2565b905092915050565b6000602082019050613e166000830184613950565b92915050565b6000602082019050613e316000830184613998565b92915050565b60006020820190508181036000830152613e5181846139a7565b905092915050565b60006020820190508181036000830152613e7281613a11565b9050919050565b60006020820190508181036000830152613e9281613a34565b9050919050565b60006020820190508181036000830152613eb281613a57565b9050919050565b60006020820190508181036000830152613ed281613a7a565b9050919050565b60006020820190508181036000830152613ef281613a9d565b9050919050565b60006020820190508181036000830152613f1281613ac0565b9050919050565b60006020820190508181036000830152613f3281613ae3565b9050919050565b60006020820190508181036000830152613f5281613b06565b9050919050565b60006020820190508181036000830152613f7281613b29565b9050919050565b60006020820190508181036000830152613f9281613b4c565b9050919050565b60006020820190508181036000830152613fb281613b6f565b9050919050565b60006020820190508181036000830152613fd281613b92565b9050919050565b60006020820190508181036000830152613ff281613bb5565b9050919050565b6000602082019050818103600083015261401281613bd8565b9050919050565b6000602082019050818103600083015261403281613bfb565b9050919050565b6000602082019050818103600083015261405281613c1e565b9050919050565b6000602082019050818103600083015261407281613c41565b9050919050565b6000602082019050818103600083015261409281613c64565b9050919050565b600060208201905081810360008301526140b281613c87565b9050919050565b600060208201905081810360008301526140d281613caa565b9050919050565b600060208201905081810360008301526140f281613ccd565b9050919050565b6000602082019050818103600083015261411281613cf0565b9050919050565b6000602082019050818103600083015261413281613d13565b9050919050565b600060208201905061414e6000830184613d45565b92915050565b600061415e61416f565b905061416a8282614473565b919050565b6000604051905090565b600067ffffffffffffffff821115614194576141936145ab565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141c0576141bf6145ab565b5b6141c9826145da565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061425d826143d1565b9150614268836143d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561429d5761429c61451e565b5b828201905092915050565b60006142b3826143d1565b91506142be836143d1565b9250826142ce576142cd61454d565b5b828204905092915050565b60006142e4826143d1565b91506142ef836143d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143285761432761451e565b5b828202905092915050565b600061433e826143d1565b9150614349836143d1565b92508282101561435c5761435b61451e565b5b828203905092915050565b6000614372826143b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006143e6826143ed565b9050919050565b60006143f8826143b1565b9050919050565b82818337600083830152505050565b60005b8381101561442c578082015181840152602081019050614411565b8381111561443b576000848401525b50505050565b6000600282049050600182168061445957607f821691505b6020821081141561446d5761446c61457c565b5b50919050565b61447c826145da565b810181811067ffffffffffffffff8211171561449b5761449a6145ab565b5b80604052505050565b60006144af826143d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144e2576144e161451e565b5b600182019050919050565b60006144f8826143d1565b9150614503836143d1565b9250826145135761451261454d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f75206e65656420746f206f776e206174206c656173742033204c4c4b4f2060008201527f6e66747320746f2062652061626c6520746f20636c61696d2033440000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f535550504c593a2056616c756520657863656564732073616c65537570706c79600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20636c61696d206973206e6f7420616374697665600082015250565b614bdd81614367565b8114614be857600080fd5b50565b614bf481614379565b8114614bff57600080fd5b50565b614c0b81614385565b8114614c1657600080fd5b50565b614c22816143d1565b8114614c2d57600080fd5b5056fea264697066735822122077824142f4151e7c37676d7a7eaf524f8c8ba67acd0040f70a3400a0ff88078a64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff

-----Decoded View---------------
Arg [0] : nft (address): 0x444467738cf0c5bcCa9C1d6F66670F4c493E53fF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff


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.