Address Details
contract
token

0x46A284544094e67b6bf425761fB0325E76B7e661

Token
mock (mock)
Creator
0x424694–074e4b at 0xb02103–4ad446
Balance
2 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
2 Transactions
Transfers
2 Transfers
Gas Used
285,822
Last Balance Update
14691401
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
MockNFT




Optimization enabled
false
Compiler version
v0.8.9+commit.e5eed63a




EVM Version
london




Verified at
2023-01-31T16:45:31.302663Z

contracts/MockNFT.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract MockNFT is Ownable, ERC721Enumerable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 100;
    uint256 public cost = 1 ether;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mint(msg.sender, 10);
    }

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

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "MockNFT: mintAmount should be greater than 0");
        require(_mintAmount <= maxMintAmount, "MockNFT: mintAmount should be less than max mint");
        require(supply + _mintAmount <= maxSupply, "MockNFT: Supply not available");
        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "MockNFT: Insuffcient Celo");
        }
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "MockNFT: URI query for nonexistent token");
        string memory curretBaseURI = _baseURI();
        return
            bytes(curretBaseURI).length > 0
                ? string(abi.encodePacked(curretBaseURI, tokenId.toString(), baseExtension))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance), "Transfer Failed");
    }

    function withdrawERC20(IERC20 token) public onlyOwner {
        require(token.transfer(msg.sender, token.balanceOf(address(this))), "Transfer failed");
    }
}
        

/_openzeppelin/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts/security/Pausable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
          

/_openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
          

/_openzeppelin/contracts/token/ERC721/ERC721.sol

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

/_openzeppelin/contracts/token/ERC721/IERC721.sol

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

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

pragma solidity ^0.8.0;

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

/_openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
          

/_openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}
          

/_openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

/_openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

/_openzeppelin/contracts/utils/Address.sol

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

/_openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

/_openzeppelin/contracts/utils/introspection/ERC165.sol

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

/_openzeppelin/contracts/utils/introspection/IERC165.sol

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

pragma solidity ^0.8.0;

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"string","name":"_initBaseURI","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseExtension","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseExtension","inputs":[{"type":"string","name":"_newBaseExtension","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"_newBaseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_newCost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxMintAmount","inputs":[{"type":"uint256","name":"_newmaxMintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"walletOfOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawERC20","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"}]}]
              

Contract Creation Code

0x60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000ec9565b50612710600d556064600e55670de0b6b3a7640000600f553480156200007657600080fd5b5060405162005c7238038062005c7283398181016040528101906200009c919062001116565b8282620000be620000b26200011f60201b60201c565b6200012760201b60201c565b8160019080519060200190620000d692919062000ec9565b508060029080519060200190620000ef92919062000ec9565b5050506200010381620001eb60201b60201c565b6200011633600a6200021760201b60201c565b50505062001a53565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001fb620003f160201b60201c565b80600b90805190602001906200021392919062000ec9565b5050565b6000620002296200048260201b60201c565b90506000821162000271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002689062001256565b60405180910390fd5b600e54821115620002b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b090620012ee565b60405180910390fd5b600d548282620002ca919062001349565b11156200030e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030590620013f6565b60405180910390fd5b6200031e6200048f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003a75781600f5462000361919062001418565b341015620003a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039d90620014c9565b60405180910390fd5b5b6000600190505b828111620003eb57620003d5848284620003c9919062001349565b620004b860201b60201c565b8080620003e290620014eb565b915050620003ae565b50505050565b620004016200011f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004276200048f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004779062001589565b60405180910390fd5b565b6000600980549050905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004da828260405180602001604052806000815250620004de60201b60201c565b5050565b620004f083836200054c60201b60201c565b6200050560008484846200074660201b60201c565b62000547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053e9062001621565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b69062001693565b60405180910390fd5b620005d0816200090060201b60201c565b1562000613576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060a9062001705565b60405180910390fd5b62000627600083836200096c60201b60201c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000679919062001349565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007426000838362000ab360201b60201c565b5050565b6000620007748473ffffffffffffffffffffffffffffffffffffffff1662000ab860201b620015dc1760201c565b15620008f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007a66200011f60201b60201c565b8786866040518563ffffffff1660e01b8152600401620007ca9493929190620017da565b602060405180830381600087803b158015620007e557600080fd5b505af19250505080156200081957506040513d601f19601f820116820180604052508101906200081691906200188b565b60015b620008a2573d80600081146200084c576040519150601f19603f3d011682016040523d82523d6000602084013e62000851565b606091505b506000815114156200089a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008919062001621565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008f8565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200098483838362000adb60201b620015ff1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009d157620009cb8162000ae060201b60201c565b62000a19565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a185762000a17838262000b2960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a665762000a608162000ca660201b60201c565b62000aae565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000aad5762000aac828262000d8260201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b438462000e0e60201b620010061760201c565b62000b4f9190620018bd565b905060006008600084815260200190815260200160002054905081811462000c35576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000cbc9190620018bd565b90506000600a600084815260200190815260200160002054905060006009838154811062000cef5762000cee620018f8565b5b90600052602060002001549050806009838154811062000d145762000d13620018f8565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548062000d665762000d6562001927565b5b6001900381819060005260206000200160009055905550505050565b600062000d9a8362000e0e60201b620010061760201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e7990620019cc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ed79062001a1d565b90600052602060002090601f01602090048101928262000efb576000855562000f47565b82601f1062000f1657805160ff191683800117855562000f47565b8280016001018555821562000f47579182015b8281111562000f4657825182559160200191906001019062000f29565b5b50905062000f56919062000f5a565b5090565b5b8082111562000f7557600081600090555060010162000f5b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000fe28262000f97565b810181811067ffffffffffffffff8211171562001004576200100362000fa8565b5b80604052505050565b60006200101962000f79565b905062001027828262000fd7565b919050565b600067ffffffffffffffff8211156200104a576200104962000fa8565b5b620010558262000f97565b9050602081019050919050565b60005b838110156200108257808201518184015260208101905062001065565b8381111562001092576000848401525b50505050565b6000620010af620010a9846200102c565b6200100d565b905082815260208101848484011115620010ce57620010cd62000f92565b5b620010db84828562001062565b509392505050565b600082601f830112620010fb57620010fa62000f8d565b5b81516200110d84826020860162001098565b91505092915050565b60008060006060848603121562001132576200113162000f83565b5b600084015167ffffffffffffffff81111562001153576200115262000f88565b5b6200116186828701620010e3565b935050602084015167ffffffffffffffff81111562001185576200118462000f88565b5b6200119386828701620010e3565b925050604084015167ffffffffffffffff811115620011b757620011b662000f88565b5b620011c586828701620010e3565b9150509250925092565b600082825260208201905092915050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c6420626520677260008201527f6561746572207468616e20300000000000000000000000000000000000000000602082015250565b60006200123e602c83620011cf565b91506200124b82620011e0565b604082019050919050565b6000602082019050818103600083015262001271816200122f565b9050919050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c64206265206c6560008201527f7373207468616e206d6178206d696e7400000000000000000000000000000000602082015250565b6000620012d6603083620011cf565b9150620012e38262001278565b604082019050919050565b600060208201905081810360008301526200130981620012c7565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620013568262001310565b9150620013638362001310565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200139b576200139a6200131a565b5b828201905092915050565b7f4d6f636b4e46543a20537570706c79206e6f7420617661696c61626c65000000600082015250565b6000620013de601d83620011cf565b9150620013eb82620013a6565b602082019050919050565b600060208201905081810360008301526200141181620013cf565b9050919050565b6000620014258262001310565b9150620014328362001310565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200146e576200146d6200131a565b5b828202905092915050565b7f4d6f636b4e46543a20496e737566666369656e742043656c6f00000000000000600082015250565b6000620014b1601983620011cf565b9150620014be8262001479565b602082019050919050565b60006020820190508181036000830152620014e481620014a2565b9050919050565b6000620014f88262001310565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200152e576200152d6200131a565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001571602083620011cf565b91506200157e8262001539565b602082019050919050565b60006020820190508181036000830152620015a48162001562565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062001609603283620011cf565b91506200161682620015ab565b604082019050919050565b600060208201905081810360008301526200163c81620015fa565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200167b602083620011cf565b9150620016888262001643565b602082019050919050565b60006020820190508181036000830152620016ae816200166c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620016ed601c83620011cf565b9150620016fa82620016b5565b602082019050919050565b600060208201905081810360008301526200172081620016de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620017548262001727565b9050919050565b620017668162001747565b82525050565b620017778162001310565b82525050565b600081519050919050565b600082825260208201905092915050565b6000620017a6826200177d565b620017b2818562001788565b9350620017c481856020860162001062565b620017cf8162000f97565b840191505092915050565b6000608082019050620017f160008301876200175b565b6200180060208301866200175b565b6200180f60408301856200176c565b818103606083015262001823818462001799565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62001865816200182e565b81146200187157600080fd5b50565b60008151905062001885816200185a565b92915050565b600060208284031215620018a457620018a362000f83565b5b6000620018b48482850162001874565b91505092915050565b6000620018ca8262001310565b9150620018d78362001310565b925082821015620018ed57620018ec6200131a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000620019b4602983620011cf565b9150620019c18262001956565b604082019050919050565b60006020820190508181036000830152620019e781620019a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001a3657607f821691505b6020821081141562001a4d5762001a4c620019ee565b5b50919050565b61420f8062001a636000396000f3fe6080604052600436106101e35760003560e01c806355f804b311610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f146106d8578063e985e9c514610701578063f2fde38b1461073e578063f4f3b20014610767576101e3565b8063b88d4fde1461061c578063c668286214610645578063c87b56dd14610670578063d5abeb01146106ad576101e3565b8063715018a6116100d1578063715018a6146105865780638da5cb5b1461059d57806395d89b41146105c8578063a22cb465146105f3576101e3565b806355f804b3146104b85780636352211e146104e15780636c0360eb1461051e57806370a0823114610549576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ec578063438b63001461041557806344a0d68a146104525780634f6ccce71461047b576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c657806340c10f19146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df57806318160ddd1461030a578063239c70ae14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063088a4ed01461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129da565b610790565b60405161021c9190612a22565b60405180910390f35b34801561023157600080fd5b5061023a61080a565b6040516102479190612ad6565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b2e565b61089c565b6040516102849190612b9c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612b2e565b6108e2565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612be3565b6108f4565b005b3480156102eb57600080fd5b506102f4610a0c565b6040516103019190612c32565b60405180910390f35b34801561031657600080fd5b5061031f610a12565b60405161032c9190612c32565b60405180910390f35b34801561034157600080fd5b5061034a610a1f565b6040516103579190612c32565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612c4d565b610a25565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612be3565b610a85565b6040516103bd9190612c32565b60405180910390f35b6103ce610b2a565b005b6103ea60048036038101906103e59190612be3565b610ba8565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612c4d565b610d53565b005b34801561042157600080fd5b5061043c60048036038101906104379190612ca0565b610d73565b6040516104499190612d8b565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612b2e565b610e21565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612b2e565b610e33565b6040516104af9190612c32565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612ee2565b610ea4565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612b2e565b610ec6565b6040516105159190612b9c565b60405180910390f35b34801561052a57600080fd5b50610533610f78565b6040516105409190612ad6565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612ca0565b611006565b60405161057d9190612c32565b60405180910390f35b34801561059257600080fd5b5061059b6110be565b005b3480156105a957600080fd5b506105b26110d2565b6040516105bf9190612b9c565b60405180910390f35b3480156105d457600080fd5b506105dd6110fb565b6040516105ea9190612ad6565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612f57565b61118d565b005b34801561062857600080fd5b50610643600480360381019061063e9190613038565b6111a3565b005b34801561065157600080fd5b5061065a611205565b6040516106679190612ad6565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612b2e565b611293565b6040516106a49190612ad6565b60405180910390f35b3480156106b957600080fd5b506106c261133d565b6040516106cf9190612c32565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612ee2565b611343565b005b34801561070d57600080fd5b50610728600480360381019061072391906130bb565b611365565b6040516107359190612a22565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190612ca0565b6113f9565b005b34801561077357600080fd5b5061078e60048036038101906107899190613139565b61147d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611604565b5b9050919050565b60606001805461081990613195565b80601f016020809104026020016040519081016040528092919081815260200182805461084590613195565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a7826116e6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ea611731565b80600e8190555050565b60006108ff82610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613239565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f6117af565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b86117af565b611365565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906132cb565b60405180910390fd5b610a0783836117b7565b505050565b600f5481565b6000600980549050905090565b600e5481565b610a36610a306117af565b82611870565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061335d565b60405180910390fd5b610a80838383611905565b505050565b6000610a9083611006565b8210610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906133ef565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b32611731565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d9061345b565b60405180910390fd5b565b6000610bb2610a12565b905060008211610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906134ed565b60405180910390fd5b600e54821115610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c339061357f565b60405180910390fd5b600d548282610c4b91906135ce565b1115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613670565b60405180910390fd5b610c946110d2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d175781600f54610cd49190613690565b341015610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613736565b60405180910390fd5b5b6000600190505b828111610d4d57610d3a848284610d3591906135ce565b611b6c565b8080610d4590613756565b915050610d1e565b50505050565b610d6e838383604051806020016040528060008152506111a3565b505050565b60606000610d8083611006565b905060008167ffffffffffffffff811115610d9e57610d9d612db7565b5b604051908082528060200260200182016040528015610dcc5781602001602082028036833780820191505090505b50905060005b82811015610e1657610de48582610a85565b828281518110610df757610df661379f565b5b6020026020010181815250508080610e0e90613756565b915050610dd2565b508092505050919050565b610e29611731565b80600f8190555050565b6000610e3d610a12565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613840565b60405180910390fd5b60098281548110610e9257610e9161379f565b5b90600052602060002001549050919050565b610eac611731565b80600b9080519060200190610ec29291906128cb565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906138ac565b60405180910390fd5b80915050919050565b600b8054610f8590613195565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb190613195565b8015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061393e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110c6611731565b6110d06000611b8a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461110a90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461113690613195565b80156111835780601f1061115857610100808354040283529160200191611183565b820191906000526020600020905b81548152906001019060200180831161116657829003601f168201915b5050505050905090565b61119f6111986117af565b8383611c4e565b5050565b6111b46111ae6117af565b83611870565b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061335d565b60405180910390fd5b6111ff84848484611dbb565b50505050565b600c805461121290613195565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90613195565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b606061129e82611e17565b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906139d0565b60405180910390fd5b60006112e7611e83565b905060008151116113075760405180602001604052806000815250611335565b8061131184611f15565b600c60405160200161132593929190613ac0565b6040516020818303038152906040525b915050919050565b600d5481565b61134b611731565b80600c90805190602001906113619291906128cb565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611401611731565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b63565b60405180910390fd5b61147a81611b8a565b50565b611485611731565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114db9190612b9c565b60206040518083038186803b1580156114f357600080fd5b505afa158015611507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152b9190613b98565b6040518363ffffffff1660e01b8152600401611548929190613bc5565b602060405180830381600087803b15801561156257600080fd5b505af1158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a9190613c03565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613c7c565b60405180910390fd5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116df57506116de82612076565b5b9050919050565b6116ef81611e17565b61172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906138ac565b60405180910390fd5b50565b6117396117af565b73ffffffffffffffffffffffffffffffffffffffff166117576110d2565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613ce8565b60405180910390fd5b565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182a83610ec6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061187c83610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118be57506118bd8185611365565b5b806118fc57508373ffffffffffffffffffffffffffffffffffffffff166118e48461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192582610ec6565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613d7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613e0c565b60405180910390fd5b6119f68383836120e0565b611a016000826117b7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a519190613e2c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa891906135ce565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b678383836121f4565b505050565b611b868282604051806020016040528060008152506121f9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613eac565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dae9190612a22565b60405180910390a3505050565b611dc6848484611905565b611dd284848484612254565b611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613f3e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e9290613195565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebe90613195565b8015611f0b5780601f10611ee057610100808354040283529160200191611f0b565b820191906000526020600020905b815481529060010190602001808311611eee57829003601f168201915b5050505050905090565b60606000821415611f5d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612071565b600082905060005b60008214611f8f578080611f7890613756565b915050600a82611f889190613f8d565b9150611f65565b60008167ffffffffffffffff811115611fab57611faa612db7565b5b6040519080825280601f01601f191660200182016040528015611fdd5781602001600182028036833780820191505090505b5090505b6000851461206a57600182611ff69190613e2c565b9150600a856120059190613fbe565b603061201191906135ce565b60f81b8183815181106120275761202661379f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120639190613f8d565b9450611fe1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120eb8383836115ff565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561212e57612129816123eb565b61216d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461216c5761216b8382612434565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b0576121ab816125a1565b6121ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121ee576121ed8282612672565b5b5b505050565b505050565b61220383836126f1565b6122106000848484612254565b61224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690613f3e565b60405180910390fd5b505050565b60006122758473ffffffffffffffffffffffffffffffffffffffff166115dc565b156123de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229e6117af565b8786866040518563ffffffff1660e01b81526004016122c09493929190614044565b602060405180830381600087803b1580156122da57600080fd5b505af192505050801561230b57506040513d601f19601f8201168201806040525081019061230891906140a5565b60015b61238e573d806000811461233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b50600081511415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613f3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e3565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161244184611006565b61244b9190613e2c565b9050600060086000848152602001908152602001600020549050818114612530576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506125b59190613e2c565b90506000600a60008481526020019081526020016000205490506000600983815481106125e5576125e461379f565b5b9060005260206000200154905080600983815481106126075761260661379f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612656576126556140d2565b5b6001900381819060005260206000200160009055905550505050565b600061267d83611006565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127589061414d565b60405180910390fd5b61276a81611e17565b156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906141b9565b60405180910390fd5b6127b6600083836120e0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280691906135ce565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c7600083836121f4565b5050565b8280546128d790613195565b90600052602060002090601f0160209004810192826128f95760008555612940565b82601f1061291257805160ff1916838001178555612940565b82800160010185558215612940579182015b8281111561293f578251825591602001919060010190612924565b5b50905061294d9190612951565b5090565b5b8082111561296a576000816000905550600101612952565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b781612982565b81146129c257600080fd5b50565b6000813590506129d4816129ae565b92915050565b6000602082840312156129f0576129ef612978565b5b60006129fe848285016129c5565b91505092915050565b60008115159050919050565b612a1c81612a07565b82525050565b6000602082019050612a376000830184612a13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a77578082015181840152602081019050612a5c565b83811115612a86576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa882612a3d565b612ab28185612a48565b9350612ac2818560208601612a59565b612acb81612a8c565b840191505092915050565b60006020820190508181036000830152612af08184612a9d565b905092915050565b6000819050919050565b612b0b81612af8565b8114612b1657600080fd5b50565b600081359050612b2881612b02565b92915050565b600060208284031215612b4457612b43612978565b5b6000612b5284828501612b19565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8682612b5b565b9050919050565b612b9681612b7b565b82525050565b6000602082019050612bb16000830184612b8d565b92915050565b612bc081612b7b565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612978565b5b6000612c0885828601612bce565b9250506020612c1985828601612b19565b9150509250929050565b612c2c81612af8565b82525050565b6000602082019050612c476000830184612c23565b92915050565b600080600060608486031215612c6657612c65612978565b5b6000612c7486828701612bce565b9350506020612c8586828701612bce565b9250506040612c9686828701612b19565b9150509250925092565b600060208284031215612cb657612cb5612978565b5b6000612cc484828501612bce565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d0281612af8565b82525050565b6000612d148383612cf9565b60208301905092915050565b6000602082019050919050565b6000612d3882612ccd565b612d428185612cd8565b9350612d4d83612ce9565b8060005b83811015612d7e578151612d658882612d08565b9750612d7083612d20565b925050600181019050612d51565b5085935050505092915050565b60006020820190508181036000830152612da58184612d2d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612def82612a8c565b810181811067ffffffffffffffff82111715612e0e57612e0d612db7565b5b80604052505050565b6000612e2161296e565b9050612e2d8282612de6565b919050565b600067ffffffffffffffff821115612e4d57612e4c612db7565b5b612e5682612a8c565b9050602081019050919050565b82818337600083830152505050565b6000612e85612e8084612e32565b612e17565b905082815260208101848484011115612ea157612ea0612db2565b5b612eac848285612e63565b509392505050565b600082601f830112612ec957612ec8612dad565b5b8135612ed9848260208601612e72565b91505092915050565b600060208284031215612ef857612ef7612978565b5b600082013567ffffffffffffffff811115612f1657612f1561297d565b5b612f2284828501612eb4565b91505092915050565b612f3481612a07565b8114612f3f57600080fd5b50565b600081359050612f5181612f2b565b92915050565b60008060408385031215612f6e57612f6d612978565b5b6000612f7c85828601612bce565b9250506020612f8d85828601612f42565b9150509250929050565b600067ffffffffffffffff821115612fb257612fb1612db7565b5b612fbb82612a8c565b9050602081019050919050565b6000612fdb612fd684612f97565b612e17565b905082815260208101848484011115612ff757612ff6612db2565b5b613002848285612e63565b509392505050565b600082601f83011261301f5761301e612dad565b5b813561302f848260208601612fc8565b91505092915050565b6000806000806080858703121561305257613051612978565b5b600061306087828801612bce565b945050602061307187828801612bce565b935050604061308287828801612b19565b925050606085013567ffffffffffffffff8111156130a3576130a261297d565b5b6130af8782880161300a565b91505092959194509250565b600080604083850312156130d2576130d1612978565b5b60006130e085828601612bce565b92505060206130f185828601612bce565b9150509250929050565b600061310682612b7b565b9050919050565b613116816130fb565b811461312157600080fd5b50565b6000813590506131338161310d565b92915050565b60006020828403121561314f5761314e612978565b5b600061315d84828501613124565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ad57607f821691505b602082108114156131c1576131c0613166565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613223602183612a48565b915061322e826131c7565b604082019050919050565b6000602082019050818103600083015261325281613216565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006132b5603e83612a48565b91506132c082613259565b604082019050919050565b600060208201905081810360008301526132e4816132a8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613347602e83612a48565b9150613352826132eb565b604082019050919050565b600060208201905081810360008301526133768161333a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006133d9602b83612a48565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b6000613445600f83612a48565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c6420626520677260008201527f6561746572207468616e20300000000000000000000000000000000000000000602082015250565b60006134d7602c83612a48565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c64206265206c6560008201527f7373207468616e206d6178206d696e7400000000000000000000000000000000602082015250565b6000613569603083612a48565b91506135748261350d565b604082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135d982612af8565b91506135e483612af8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136195761361861359f565b5b828201905092915050565b7f4d6f636b4e46543a20537570706c79206e6f7420617661696c61626c65000000600082015250565b600061365a601d83612a48565b915061366582613624565b602082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b600061369b82612af8565b91506136a683612af8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136df576136de61359f565b5b828202905092915050565b7f4d6f636b4e46543a20496e737566666369656e742043656c6f00000000000000600082015250565b6000613720601983612a48565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600061376182612af8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137945761379361359f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061382a602c83612a48565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613896601883612a48565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613928602983612a48565b9150613933826138cc565b604082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4d6f636b4e46543a2055524920717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006139ba602883612a48565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b600081905092915050565b6000613a0682612a3d565b613a1081856139f0565b9350613a20818560208601612a59565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a4e81613195565b613a5881866139f0565b94506001821660008114613a735760018114613a8457613ab7565b60ff19831686528186019350613ab7565b613a8d85613a2c565b60005b83811015613aaf57815481890152600182019150602081019050613a90565b838801955050505b50505092915050565b6000613acc82866139fb565b9150613ad882856139fb565b9150613ae48284613a41565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4d602683612a48565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b600081519050613b9281612b02565b92915050565b600060208284031215613bae57613bad612978565b5b6000613bbc84828501613b83565b91505092915050565b6000604082019050613bda6000830185612b8d565b613be76020830184612c23565b9392505050565b600081519050613bfd81612f2b565b92915050565b600060208284031215613c1957613c18612978565b5b6000613c2784828501613bee565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613c66600f83612a48565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd2602083612a48565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d64602583612a48565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613df6602483612a48565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b6000613e3782612af8565b9150613e4283612af8565b925082821015613e5557613e5461359f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e96601983612a48565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f28603283612a48565b9150613f3382613ecc565b604082019050919050565b60006020820190508181036000830152613f5781613f1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f9882612af8565b9150613fa383612af8565b925082613fb357613fb2613f5e565b5b828204905092915050565b6000613fc982612af8565b9150613fd483612af8565b925082613fe457613fe3613f5e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061401682613fef565b6140208185613ffa565b9350614030818560208601612a59565b61403981612a8c565b840191505092915050565b60006080820190506140596000830187612b8d565b6140666020830186612b8d565b6140736040830185612c23565b8181036060830152614085818461400b565b905095945050505050565b60008151905061409f816129ae565b92915050565b6000602082840312156140bb576140ba612978565b5b60006140c984828501614090565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614137602083612a48565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141a3601c83612a48565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b905091905056fea2646970667358221220ccdfd33260c04c8dd5e5b5dd993b0c42e040f4159887eb5a50333e5ff20ebaa964736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000046d6f636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046d6f636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c68747470733a2f2f697066730000000000000000000000000000000000000000

Deployed ByteCode

0x6080604052600436106101e35760003560e01c806355f804b311610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f146106d8578063e985e9c514610701578063f2fde38b1461073e578063f4f3b20014610767576101e3565b8063b88d4fde1461061c578063c668286214610645578063c87b56dd14610670578063d5abeb01146106ad576101e3565b8063715018a6116100d1578063715018a6146105865780638da5cb5b1461059d57806395d89b41146105c8578063a22cb465146105f3576101e3565b806355f804b3146104b85780636352211e146104e15780636c0360eb1461051e57806370a0823114610549576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103ec578063438b63001461041557806344a0d68a146104525780634f6ccce71461047b576101e3565b806323b872dd146103605780632f745c59146103895780633ccfd60b146103c657806340c10f19146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df57806318160ddd1461030a578063239c70ae14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063088a4ed01461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906129da565b610790565b60405161021c9190612a22565b60405180910390f35b34801561023157600080fd5b5061023a61080a565b6040516102479190612ad6565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b2e565b61089c565b6040516102849190612b9c565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612b2e565b6108e2565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612be3565b6108f4565b005b3480156102eb57600080fd5b506102f4610a0c565b6040516103019190612c32565b60405180910390f35b34801561031657600080fd5b5061031f610a12565b60405161032c9190612c32565b60405180910390f35b34801561034157600080fd5b5061034a610a1f565b6040516103579190612c32565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612c4d565b610a25565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612be3565b610a85565b6040516103bd9190612c32565b60405180910390f35b6103ce610b2a565b005b6103ea60048036038101906103e59190612be3565b610ba8565b005b3480156103f857600080fd5b50610413600480360381019061040e9190612c4d565b610d53565b005b34801561042157600080fd5b5061043c60048036038101906104379190612ca0565b610d73565b6040516104499190612d8b565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612b2e565b610e21565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612b2e565b610e33565b6040516104af9190612c32565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612ee2565b610ea4565b005b3480156104ed57600080fd5b5061050860048036038101906105039190612b2e565b610ec6565b6040516105159190612b9c565b60405180910390f35b34801561052a57600080fd5b50610533610f78565b6040516105409190612ad6565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612ca0565b611006565b60405161057d9190612c32565b60405180910390f35b34801561059257600080fd5b5061059b6110be565b005b3480156105a957600080fd5b506105b26110d2565b6040516105bf9190612b9c565b60405180910390f35b3480156105d457600080fd5b506105dd6110fb565b6040516105ea9190612ad6565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612f57565b61118d565b005b34801561062857600080fd5b50610643600480360381019061063e9190613038565b6111a3565b005b34801561065157600080fd5b5061065a611205565b6040516106679190612ad6565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612b2e565b611293565b6040516106a49190612ad6565b60405180910390f35b3480156106b957600080fd5b506106c261133d565b6040516106cf9190612c32565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190612ee2565b611343565b005b34801561070d57600080fd5b50610728600480360381019061072391906130bb565b611365565b6040516107359190612a22565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190612ca0565b6113f9565b005b34801561077357600080fd5b5061078e60048036038101906107899190613139565b61147d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611604565b5b9050919050565b60606001805461081990613195565b80601f016020809104026020016040519081016040528092919081815260200182805461084590613195565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a7826116e6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ea611731565b80600e8190555050565b60006108ff82610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613239565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f6117af565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b86117af565b611365565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906132cb565b60405180910390fd5b610a0783836117b7565b505050565b600f5481565b6000600980549050905090565b600e5481565b610a36610a306117af565b82611870565b610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061335d565b60405180910390fd5b610a80838383611905565b505050565b6000610a9083611006565b8210610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906133ef565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b32611731565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d9061345b565b60405180910390fd5b565b6000610bb2610a12565b905060008211610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906134ed565b60405180910390fd5b600e54821115610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c339061357f565b60405180910390fd5b600d548282610c4b91906135ce565b1115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613670565b60405180910390fd5b610c946110d2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d175781600f54610cd49190613690565b341015610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90613736565b60405180910390fd5b5b6000600190505b828111610d4d57610d3a848284610d3591906135ce565b611b6c565b8080610d4590613756565b915050610d1e565b50505050565b610d6e838383604051806020016040528060008152506111a3565b505050565b60606000610d8083611006565b905060008167ffffffffffffffff811115610d9e57610d9d612db7565b5b604051908082528060200260200182016040528015610dcc5781602001602082028036833780820191505090505b50905060005b82811015610e1657610de48582610a85565b828281518110610df757610df661379f565b5b6020026020010181815250508080610e0e90613756565b915050610dd2565b508092505050919050565b610e29611731565b80600f8190555050565b6000610e3d610a12565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613840565b60405180910390fd5b60098281548110610e9257610e9161379f565b5b90600052602060002001549050919050565b610eac611731565b80600b9080519060200190610ec29291906128cb565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f66906138ac565b60405180910390fd5b80915050919050565b600b8054610f8590613195565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb190613195565b8015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061393e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110c6611731565b6110d06000611b8a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461110a90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461113690613195565b80156111835780601f1061115857610100808354040283529160200191611183565b820191906000526020600020905b81548152906001019060200180831161116657829003601f168201915b5050505050905090565b61119f6111986117af565b8383611c4e565b5050565b6111b46111ae6117af565b83611870565b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea9061335d565b60405180910390fd5b6111ff84848484611dbb565b50505050565b600c805461121290613195565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90613195565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b606061129e82611e17565b6112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906139d0565b60405180910390fd5b60006112e7611e83565b905060008151116113075760405180602001604052806000815250611335565b8061131184611f15565b600c60405160200161132593929190613ac0565b6040516020818303038152906040525b915050919050565b600d5481565b61134b611731565b80600c90805190602001906113619291906128cb565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611401611731565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890613b63565b60405180910390fd5b61147a81611b8a565b50565b611485611731565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114db9190612b9c565b60206040518083038186803b1580156114f357600080fd5b505afa158015611507573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152b9190613b98565b6040518363ffffffff1660e01b8152600401611548929190613bc5565b602060405180830381600087803b15801561156257600080fd5b505af1158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a9190613c03565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613c7c565b60405180910390fd5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116df57506116de82612076565b5b9050919050565b6116ef81611e17565b61172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906138ac565b60405180910390fd5b50565b6117396117af565b73ffffffffffffffffffffffffffffffffffffffff166117576110d2565b73ffffffffffffffffffffffffffffffffffffffff16146117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613ce8565b60405180910390fd5b565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182a83610ec6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061187c83610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118be57506118bd8185611365565b5b806118fc57508373ffffffffffffffffffffffffffffffffffffffff166118e48461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192582610ec6565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613d7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613e0c565b60405180910390fd5b6119f68383836120e0565b611a016000826117b7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a519190613e2c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa891906135ce565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b678383836121f4565b505050565b611b868282604051806020016040528060008152506121f9565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613eac565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dae9190612a22565b60405180910390a3505050565b611dc6848484611905565b611dd284848484612254565b611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613f3e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611e9290613195565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebe90613195565b8015611f0b5780601f10611ee057610100808354040283529160200191611f0b565b820191906000526020600020905b815481529060010190602001808311611eee57829003601f168201915b5050505050905090565b60606000821415611f5d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612071565b600082905060005b60008214611f8f578080611f7890613756565b915050600a82611f889190613f8d565b9150611f65565b60008167ffffffffffffffff811115611fab57611faa612db7565b5b6040519080825280601f01601f191660200182016040528015611fdd5781602001600182028036833780820191505090505b5090505b6000851461206a57600182611ff69190613e2c565b9150600a856120059190613fbe565b603061201191906135ce565b60f81b8183815181106120275761202661379f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120639190613f8d565b9450611fe1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120eb8383836115ff565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561212e57612129816123eb565b61216d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461216c5761216b8382612434565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121b0576121ab816125a1565b6121ef565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146121ee576121ed8282612672565b5b5b505050565b505050565b61220383836126f1565b6122106000848484612254565b61224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690613f3e565b60405180910390fd5b505050565b60006122758473ffffffffffffffffffffffffffffffffffffffff166115dc565b156123de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261229e6117af565b8786866040518563ffffffff1660e01b81526004016122c09493929190614044565b602060405180830381600087803b1580156122da57600080fd5b505af192505050801561230b57506040513d601f19601f8201168201806040525081019061230891906140a5565b60015b61238e573d806000811461233b576040519150601f19603f3d011682016040523d82523d6000602084013e612340565b606091505b50600081511415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613f3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e3565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161244184611006565b61244b9190613e2c565b9050600060086000848152602001908152602001600020549050818114612530576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506125b59190613e2c565b90506000600a60008481526020019081526020016000205490506000600983815481106125e5576125e461379f565b5b9060005260206000200154905080600983815481106126075761260661379f565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612656576126556140d2565b5b6001900381819060005260206000200160009055905550505050565b600061267d83611006565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127589061414d565b60405180910390fd5b61276a81611e17565b156127aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a1906141b9565b60405180910390fd5b6127b6600083836120e0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280691906135ce565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c7600083836121f4565b5050565b8280546128d790613195565b90600052602060002090601f0160209004810192826128f95760008555612940565b82601f1061291257805160ff1916838001178555612940565b82800160010185558215612940579182015b8281111561293f578251825591602001919060010190612924565b5b50905061294d9190612951565b5090565b5b8082111561296a576000816000905550600101612952565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b781612982565b81146129c257600080fd5b50565b6000813590506129d4816129ae565b92915050565b6000602082840312156129f0576129ef612978565b5b60006129fe848285016129c5565b91505092915050565b60008115159050919050565b612a1c81612a07565b82525050565b6000602082019050612a376000830184612a13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a77578082015181840152602081019050612a5c565b83811115612a86576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa882612a3d565b612ab28185612a48565b9350612ac2818560208601612a59565b612acb81612a8c565b840191505092915050565b60006020820190508181036000830152612af08184612a9d565b905092915050565b6000819050919050565b612b0b81612af8565b8114612b1657600080fd5b50565b600081359050612b2881612b02565b92915050565b600060208284031215612b4457612b43612978565b5b6000612b5284828501612b19565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8682612b5b565b9050919050565b612b9681612b7b565b82525050565b6000602082019050612bb16000830184612b8d565b92915050565b612bc081612b7b565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612978565b5b6000612c0885828601612bce565b9250506020612c1985828601612b19565b9150509250929050565b612c2c81612af8565b82525050565b6000602082019050612c476000830184612c23565b92915050565b600080600060608486031215612c6657612c65612978565b5b6000612c7486828701612bce565b9350506020612c8586828701612bce565b9250506040612c9686828701612b19565b9150509250925092565b600060208284031215612cb657612cb5612978565b5b6000612cc484828501612bce565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d0281612af8565b82525050565b6000612d148383612cf9565b60208301905092915050565b6000602082019050919050565b6000612d3882612ccd565b612d428185612cd8565b9350612d4d83612ce9565b8060005b83811015612d7e578151612d658882612d08565b9750612d7083612d20565b925050600181019050612d51565b5085935050505092915050565b60006020820190508181036000830152612da58184612d2d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612def82612a8c565b810181811067ffffffffffffffff82111715612e0e57612e0d612db7565b5b80604052505050565b6000612e2161296e565b9050612e2d8282612de6565b919050565b600067ffffffffffffffff821115612e4d57612e4c612db7565b5b612e5682612a8c565b9050602081019050919050565b82818337600083830152505050565b6000612e85612e8084612e32565b612e17565b905082815260208101848484011115612ea157612ea0612db2565b5b612eac848285612e63565b509392505050565b600082601f830112612ec957612ec8612dad565b5b8135612ed9848260208601612e72565b91505092915050565b600060208284031215612ef857612ef7612978565b5b600082013567ffffffffffffffff811115612f1657612f1561297d565b5b612f2284828501612eb4565b91505092915050565b612f3481612a07565b8114612f3f57600080fd5b50565b600081359050612f5181612f2b565b92915050565b60008060408385031215612f6e57612f6d612978565b5b6000612f7c85828601612bce565b9250506020612f8d85828601612f42565b9150509250929050565b600067ffffffffffffffff821115612fb257612fb1612db7565b5b612fbb82612a8c565b9050602081019050919050565b6000612fdb612fd684612f97565b612e17565b905082815260208101848484011115612ff757612ff6612db2565b5b613002848285612e63565b509392505050565b600082601f83011261301f5761301e612dad565b5b813561302f848260208601612fc8565b91505092915050565b6000806000806080858703121561305257613051612978565b5b600061306087828801612bce565b945050602061307187828801612bce565b935050604061308287828801612b19565b925050606085013567ffffffffffffffff8111156130a3576130a261297d565b5b6130af8782880161300a565b91505092959194509250565b600080604083850312156130d2576130d1612978565b5b60006130e085828601612bce565b92505060206130f185828601612bce565b9150509250929050565b600061310682612b7b565b9050919050565b613116816130fb565b811461312157600080fd5b50565b6000813590506131338161310d565b92915050565b60006020828403121561314f5761314e612978565b5b600061315d84828501613124565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ad57607f821691505b602082108114156131c1576131c0613166565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613223602183612a48565b915061322e826131c7565b604082019050919050565b6000602082019050818103600083015261325281613216565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006132b5603e83612a48565b91506132c082613259565b604082019050919050565b600060208201905081810360008301526132e4816132a8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613347602e83612a48565b9150613352826132eb565b604082019050919050565b600060208201905081810360008301526133768161333a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006133d9602b83612a48565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b6000613445600f83612a48565b91506134508261340f565b602082019050919050565b6000602082019050818103600083015261347481613438565b9050919050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c6420626520677260008201527f6561746572207468616e20300000000000000000000000000000000000000000602082015250565b60006134d7602c83612a48565b91506134e28261347b565b604082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f4d6f636b4e46543a206d696e74416d6f756e742073686f756c64206265206c6560008201527f7373207468616e206d6178206d696e7400000000000000000000000000000000602082015250565b6000613569603083612a48565b91506135748261350d565b604082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135d982612af8565b91506135e483612af8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136195761361861359f565b5b828201905092915050565b7f4d6f636b4e46543a20537570706c79206e6f7420617661696c61626c65000000600082015250565b600061365a601d83612a48565b915061366582613624565b602082019050919050565b600060208201905081810360008301526136898161364d565b9050919050565b600061369b82612af8565b91506136a683612af8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136df576136de61359f565b5b828202905092915050565b7f4d6f636b4e46543a20496e737566666369656e742043656c6f00000000000000600082015250565b6000613720601983612a48565b915061372b826136ea565b602082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600061376182612af8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137945761379361359f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061382a602c83612a48565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613896601883612a48565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613928602983612a48565b9150613933826138cc565b604082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4d6f636b4e46543a2055524920717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006139ba602883612a48565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b600081905092915050565b6000613a0682612a3d565b613a1081856139f0565b9350613a20818560208601612a59565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a4e81613195565b613a5881866139f0565b94506001821660008114613a735760018114613a8457613ab7565b60ff19831686528186019350613ab7565b613a8d85613a2c565b60005b83811015613aaf57815481890152600182019150602081019050613a90565b838801955050505b50505092915050565b6000613acc82866139fb565b9150613ad882856139fb565b9150613ae48284613a41565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4d602683612a48565b9150613b5882613af1565b604082019050919050565b60006020820190508181036000830152613b7c81613b40565b9050919050565b600081519050613b9281612b02565b92915050565b600060208284031215613bae57613bad612978565b5b6000613bbc84828501613b83565b91505092915050565b6000604082019050613bda6000830185612b8d565b613be76020830184612c23565b9392505050565b600081519050613bfd81612f2b565b92915050565b600060208284031215613c1957613c18612978565b5b6000613c2784828501613bee565b91505092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613c66600f83612a48565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cd2602083612a48565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d64602583612a48565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613df6602483612a48565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b6000613e3782612af8565b9150613e4283612af8565b925082821015613e5557613e5461359f565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e96601983612a48565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f28603283612a48565b9150613f3382613ecc565b604082019050919050565b60006020820190508181036000830152613f5781613f1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f9882612af8565b9150613fa383612af8565b925082613fb357613fb2613f5e565b5b828204905092915050565b6000613fc982612af8565b9150613fd483612af8565b925082613fe457613fe3613f5e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061401682613fef565b6140208185613ffa565b9350614030818560208601612a59565b61403981612a8c565b840191505092915050565b60006080820190506140596000830187612b8d565b6140666020830186612b8d565b6140736040830185612c23565b8181036060830152614085818461400b565b905095945050505050565b60008151905061409f816129ae565b92915050565b6000602082840312156140bb576140ba612978565b5b60006140c984828501614090565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614137602083612a48565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141a3601c83612a48565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b905091905056fea2646970667358221220ccdfd33260c04c8dd5e5b5dd993b0c42e040f4159887eb5a50333e5ff20ebaa964736f6c63430008090033