ETH Price: $2,980.08 (+2.06%)
Gas: 1 Gwei

Token

Funky Monkeys (MONKEYS)
 

Overview

Max Total Supply

64 MONKEYS

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mikedemoya.eth
Balance
1 MONKEYS
0x820c36371d66c0ae54cfed16650c288b7c933c51
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FunkyMonkeys

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : FunkyMonkeys.sol
pragma solidity ^0.8.0;

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

contract FunkyMonkeys is ERC721, Ownable, ERC721Enumerable {

    uint public constant MAX_TOKENS = 1000;
    string public baseURI = "";
    bool public saleIsActive = false;

    // Public ETH address of the Rainforest Foundation US
    // Directly from: https://rainforestfoundation.org/donate/cryptocurrency/
    address public constant rainforestCharity = 0x54334Ebc8c9ef04bc28D614Caa557143ED8AfC87;

    // Creator 2 of project
    address public constant creator2 = 0xaF9C4391D3459c8b06429BC0a1717c7C362D125C;

    constructor() ERC721("Funky Monkeys", "MONKEYS") {
        reserveSomeForGiveaways(25);
    }

    // Get an array of tokenIds owned by a given address
    function tokensOfOwner(address _owner) external view returns (uint[] memory) {
        uint tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint[](0); // Return an empty array
        } else {
            uint[] memory result = new uint[](tokenCount);
            for (uint i = 0; i < tokenCount; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    // Adopt 1-20 monkeys
    function adoptMonkeys(uint adoptAmount) public payable {
        require(saleIsActive, "Sale is currently paused");
        require(totalSupply() < MAX_TOKENS, "Sale has ended");
        require(adoptAmount > 0 && adoptAmount <= 20, "You can adopt minimum 1, maximum 20 at a time");
        require(totalSupply() + adoptAmount <= MAX_TOKENS, "Exceeds MAX_TOKENS");
        require(msg.value >= determineCurrentPrice() * adoptAmount, "Ether value sent is below the price");

        // Mint the specified amount of tokens for this sender
        for (uint i = 0; i < adoptAmount; i++) {
            uint newTokenId = totalSupply();
            _safeMint(msg.sender, newTokenId);
        }
    }

    // Calculate price for the next token to mint
    function determineCurrentPrice() public view returns (uint) {
        return determinePriceForToken(totalSupply());
    }
    function determinePriceForToken(uint _id) public pure returns (uint) {
        require(_id < MAX_TOKENS, "Supplied token ID exceeds MAX_TOKENS");

        if (_id >= 950) {
            return 1 ether; //    950-1000:  1.00 ETH
        } else if (_id >= 800) {
            return 0.64 ether; // 800-950:   0.64 ETH
        } else if (_id >= 650) {
            return 0.32 ether; // 650-800:   0.32 ETH
        } else if (_id >= 450) {
            return 0.16 ether; // 450-650:   0.16 ETH
        } else if (_id >= 250) {
            return 0.08 ether; // 250-450:   0.08 ETH
        } else if (_id >= 50) {
            return 0.04 ether; // 50-250:    0.04 ETH
        } else {
            return 0.02 ether; // 0 - 50     0.02 ETH
        }
    }

    // Reserve some for giveaways & people who helped this project!
    function reserveSomeForGiveaways(uint amount) internal {
        uint currentSupply = totalSupply();
        for (uint i = 0; i < amount; i++) {
            _safeMint(owner(), currentSupply + i);
        }
    }

    // For setting base URI (for reveals)
    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    // Funcs that need to be overridden (FWD calls to super)
    function _beforeTokenTransfer(address from, address to, uint tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // Start and pause the sale
    function startSale() public onlyOwner {
        saleIsActive = true;
    }
    function pauseSale() public onlyOwner {
        saleIsActive = false;
    }

    // Distribute eth to the charity and contract owners
    function withdrawAll() public payable onlyOwner {
        uint charityAmt = address(this).balance / 2; // 50% to charity
        uint foundersAmt = address(this).balance / 4; // 25% to each creator
        require(            
            payable(rainforestCharity).send(charityAmt)
            && payable(creator2).send(foundersAmt)
            && payable(owner()).send(foundersAmt)
            , "Failed to withdraw balance of contract"
        );
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

File 4 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

File 7 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"adoptAmount","type":"uint256"}],"name":"adoptMonkeys","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"determineCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"determinePriceForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rainforestCharity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000cd7565b506000600c60006101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280600d81526020017f46756e6b79204d6f6e6b657973000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d4f4e4b455953000000000000000000000000000000000000000000000000008152508160009080519060200190620000d992919062000cd7565b508060019080519060200190620000f292919062000cd7565b505050600062000107620001be60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b86019620001c660201b60201c565b62001307565b600033905090565b6000620001d86200022f60201b60201c565b905060005b828110156200022a5762000214620001fa6200023c60201b60201c565b828462000208919062000fd2565b6200026660201b60201c565b8080620002219062001140565b915050620001dd565b505050565b6000600980549050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002888282604051806020016040528060008152506200028c60201b60201c565b5050565b6200029e8383620002fa60201b60201c565b620002b36000848484620004e060201b60201c565b620002f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ec9062000f1d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200036d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003649062000f83565b60405180910390fd5b6200037e816200069a60201b60201c565b15620003c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b89062000f3f565b60405180910390fd5b620003d5600083836200070660201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000427919062000fd2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200050e8473ffffffffffffffffffffffffffffffffffffffff166200072360201b62001c621760201c565b156200068d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000540620001be60201b60201c565b8786866040518563ffffffff1660e01b815260040162000564949392919062000ec9565b602060405180830381600087803b1580156200057f57600080fd5b505af1925050508015620005b357506040513d601f19601f82011682018060405250810190620005b0919062000d9e565b60015b6200063c573d8060008114620005e6576040519150601f19603f3d011682016040523d82523d6000602084013e620005eb565b606091505b5060008151141562000634576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062b9062000f1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000692565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200071e8383836200073660201b62001c751760201c565b505050565b600080823b905060008111915050919050565b6200074e8383836200087d60201b62001d891760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200079b5762000795816200088260201b60201c565b620007e3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007e257620007e18382620008cb60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000830576200082a8162000a4860201b60201c565b62000878565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008775762000876828262000b9060201b60201c565b5b5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008e58462000c1c60201b62000dfb1760201c565b620008f191906200102f565b9050600060086000848152602001908152602001600020549050818114620009d7576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000a5e91906200102f565b90506000600a600084815260200190815260200160002054905060006009838154811062000ab5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806009838154811062000afe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548062000b74577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000ba88362000c1c60201b62000dfb1760201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c879062000f61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ce5906200110a565b90600052602060002090601f01602090048101928262000d09576000855562000d55565b82601f1062000d2457805160ff191683800117855562000d55565b8280016001018555821562000d55579182015b8281111562000d5457825182559160200191906001019062000d37565b5b50905062000d64919062000d68565b5090565b5b8082111562000d8357600081600090555060010162000d69565b5090565b60008151905062000d9881620012ed565b92915050565b60006020828403121562000db157600080fd5b600062000dc18482850162000d87565b91505092915050565b62000dd5816200106a565b82525050565b600062000de88262000fa5565b62000df4818562000fb0565b935062000e06818560208601620010d4565b62000e1181620011ec565b840191505092915050565b600062000e2b60328362000fc1565b915062000e3882620011fd565b604082019050919050565b600062000e52601c8362000fc1565b915062000e5f826200124c565b602082019050919050565b600062000e79602a8362000fc1565b915062000e868262001275565b604082019050919050565b600062000ea060208362000fc1565b915062000ead82620012c4565b602082019050919050565b62000ec381620010ca565b82525050565b600060808201905062000ee0600083018762000dca565b62000eef602083018662000dca565b62000efe604083018562000eb8565b818103606083015262000f12818462000ddb565b905095945050505050565b6000602082019050818103600083015262000f388162000e1c565b9050919050565b6000602082019050818103600083015262000f5a8162000e43565b9050919050565b6000602082019050818103600083015262000f7c8162000e6a565b9050919050565b6000602082019050818103600083015262000f9e8162000e91565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000fdf82620010ca565b915062000fec83620010ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200102457620010236200118e565b5b828201905092915050565b60006200103c82620010ca565b91506200104983620010ca565b9250828210156200105f576200105e6200118e565b5b828203905092915050565b60006200107782620010aa565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010f4578082015181840152602081019050620010d7565b8381111562001104576000848401525b50505050565b600060028204905060018216806200112357607f821691505b602082108114156200113a5762001139620011bd565b5b50919050565b60006200114d82620010ca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200118357620011826200118e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620012f8816200107e565b81146200130457600080fd5b50565b61469780620013176000396000f3fe6080604052600436106101e35760003560e01c80637a037c2a11610102578063b88d4fde11610095578063eb8d244411610064578063eb8d2444146106e7578063f2fde38b14610712578063f47c84c51461073b578063fa1fc31b14610766576101e3565b8063b88d4fde14610619578063c87b56dd14610642578063e15d901d1461067f578063e985e9c5146106aa576101e3565b80638ea4ffc2116100d15780638ea4ffc21461058357806395d89b41146105ae578063a22cb465146105d9578063b66a0e5d14610602576101e3565b80637a037c2a146104d45780638462151c14610511578063853828b61461054e5780638da5cb5b14610558576101e3565b80634f6ccce71161017a5780636c0360eb116101495780636c0360eb1461042a57806370a0823114610455578063715018a614610492578063756a5cb4146104a9576101e3565b80634f6ccce71461037057806355367ba9146103ad57806355f804b3146103c45780636352211e146103ed576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a57806342842e0e14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061313f565b610782565b60405161021c9190613768565b60405180910390f35b34801561023157600080fd5b5061023a610794565b6040516102479190613783565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131d2565b610826565b60405161028491906136df565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613103565b6108ab565b005b3480156102c257600080fd5b506102cb6109c3565b6040516102d89190613ac5565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ffd565b6109d0565b005b34801561031657600080fd5b50610331600480360381019061032c9190613103565b610a30565b60405161033e9190613ac5565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612ffd565b610ad5565b005b34801561037c57600080fd5b50610397600480360381019061039291906131d2565b610af5565b6040516103a49190613ac5565b60405180910390f35b3480156103b957600080fd5b506103c2610b8c565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613191565b610c25565b005b3480156103f957600080fd5b50610414600480360381019061040f91906131d2565b610cbb565b60405161042191906136df565b60405180910390f35b34801561043657600080fd5b5061043f610d6d565b60405161044c9190613783565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612f98565b610dfb565b6040516104899190613ac5565b60405180910390f35b34801561049e57600080fd5b506104a7610eb3565b005b3480156104b557600080fd5b506104be610ff0565b6040516104cb9190613ac5565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906131d2565b611007565b6040516105089190613ac5565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190612f98565b6110f0565b6040516105459190613746565b60405180910390f35b61055661126c565b005b34801561056457600080fd5b5061056d61142b565b60405161057a91906136df565b60405180910390f35b34801561058f57600080fd5b50610598611455565b6040516105a591906136df565b60405180910390f35b3480156105ba57600080fd5b506105c361146d565b6040516105d09190613783565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906130c7565b6114ff565b005b34801561060e57600080fd5b50610617611680565b005b34801561062557600080fd5b50610640600480360381019061063b919061304c565b611719565b005b34801561064e57600080fd5b50610669600480360381019061066491906131d2565b61177b565b6040516106769190613783565b60405180910390f35b34801561068b57600080fd5b50610694611822565b6040516106a191906136df565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190612fc1565b61183a565b6040516106de9190613768565b60405180910390f35b3480156106f357600080fd5b506106fc6118ce565b6040516107099190613768565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612f98565b6118e1565b005b34801561074757600080fd5b50610750611a8d565b60405161075d9190613ac5565b60405180910390f35b610780600480360381019061077b91906131d2565b611a93565b005b600061078d82611d8e565b9050919050565b6060600080546107a390613dae565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90613dae565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b600061083182611e08565b610870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610867906139a5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b682610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613a25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610946611e74565b73ffffffffffffffffffffffffffffffffffffffff16148061097557506109748161096f611e74565b61183a565b5b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906138e5565b60405180910390fd5b6109be8383611e7c565b505050565b6000600980549050905090565b6109e16109db611e74565b82611f35565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613a45565b60405180910390fd5b610a2b838383612013565b505050565b6000610a3b83610dfb565b8210610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906137a5565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af083838360405180602001604052806000815250611719565b505050565b6000610aff6109c3565b8210610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790613a65565b60405180910390fd5b60098281548110610b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b94611e74565b73ffffffffffffffffffffffffffffffffffffffff16610bb261142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906139c5565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b610c2d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c4b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906139c5565b60405180910390fd5b80600b9080519060200190610cb7929190612dbc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613925565b60405180910390fd5b80915050919050565b600b8054610d7a90613dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610da690613dae565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613905565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610ed961142b565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906139c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611002610ffd6109c3565b611007565b905090565b60006103e8821061104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906138a5565b60405180910390fd5b6103b6821061106657670de0b6b3a764000090506110eb565b610320821061107f576708e1bc9bf040000090506110eb565b61028a821061109857670470de4df820000090506110eb565b6101c282106110b1576702386f26fc10000090506110eb565b60fa82106110c95767011c37937e08000090506110eb565b603282106110e057668e1bc9bf04000090506110eb565b66470de4df82000090505b919050565b606060006110fd83610dfb565b9050600081141561118057600067ffffffffffffffff811115611149577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111775781602001602082028036833780820191505090505b50915050611267565b60008167ffffffffffffffff8111156111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111f05781602001602082028036833780820191505090505b50905060005b82811015611260576112088582610a30565b828281518110611241577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061125890613e11565b9150506111f6565b5080925050505b919050565b611274611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129261142b565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df906139c5565b60405180910390fd5b60006002476112f79190613c39565b905060006004476113089190613c39565b90507354334ebc8c9ef04bc28d614caa557143ed8afc8773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505080156113a4575073af9c4391d3459c8b06429bc0a1717c7c362d125c73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505b80156113e857506113b361142b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613945565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73af9c4391d3459c8b06429bc0a1717c7c362d125c81565b60606001805461147c90613dae565b80601f01602080910402602001604051908101604052809291908181526020018280546114a890613dae565b80156114f55780601f106114ca576101008083540402835291602001916114f5565b820191906000526020600020905b8154815290600101906020018083116114d857829003601f168201915b5050505050905090565b611507611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613865565b60405180910390fd5b8060056000611582611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162f611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116749190613768565b60405180910390a35050565b611688611e74565b73ffffffffffffffffffffffffffffffffffffffff166116a661142b565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906139c5565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61172a611724611e74565b83611f35565b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613a45565b60405180910390fd5b6117758484848461226f565b50505050565b606061178682611e08565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613a05565b60405180910390fd5b60006117cf6122cb565b905060008151116117ef576040518060200160405280600081525061181a565b806117f98461235d565b60405160200161180a9291906136bb565b6040516020818303038152906040525b915050919050565b7354334ebc8c9ef04bc28d614caa557143ed8afc8781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6118e9611e74565b73ffffffffffffffffffffffffffffffffffffffff1661190761142b565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906139c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906137e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b600c60009054906101000a900460ff16611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906138c5565b60405180910390fd5b6103e8611aed6109c3565b10611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613825565b60405180910390fd5b600081118015611b3e575060148111155b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613a85565b60405180910390fd5b6103e881611b896109c3565b611b939190613be3565b1115611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90613aa5565b60405180910390fd5b80611bdd610ff0565b611be79190613c6a565b341015611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613965565b60405180910390fd5b60005b81811015611c5e576000611c3e6109c3565b9050611c4a338261250a565b508080611c5690613e11565b915050611c2c565b5050565b600080823b905060008111915050919050565b611c80838383611d89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cc357611cbe81612528565b611d02565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611d0157611d008382612571565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4557611d40816126de565b611d84565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d8357611d828282612821565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e015750611e00826128a0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eef83610cbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4082611e08565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613885565b60405180910390fd5b6000611f8a83610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff957508373ffffffffffffffffffffffffffffffffffffffff16611fe184610826565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200a5750612009818561183a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203382610cbb565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906139e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f090613845565b60405180910390fd5b612104838383612982565b61210f600082611e7c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215f9190613cc4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b69190613be3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61227a848484612013565b61228684848484612992565b6122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906137c5565b60405180910390fd5b50505050565b6060600b80546122da90613dae565b80601f016020809104026020016040519081016040528092919081815260200182805461230690613dae565b80156123535780601f1061232857610100808354040283529160200191612353565b820191906000526020600020905b81548152906001019060200180831161233657829003601f168201915b5050505050905090565b606060008214156123a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612505565b600082905060005b600082146123d75780806123c090613e11565b915050600a826123d09190613c39565b91506123ad565b60008167ffffffffffffffff811115612419577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561244b5781602001600182028036833780820191505090505b5090505b600085146124fe576001826124649190613cc4565b9150600a856124739190613e5a565b603061247f9190613be3565b60f81b8183815181106124bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124f79190613c39565b945061244f565b8093505050505b919050565b612524828260405180602001604052806000815250612b29565b5050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161257e84610dfb565b6125889190613cc4565b905060006008600084815260200190815260200160002054905081811461266d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506126f29190613cc4565b90506000600a6000848152602001908152602001600020549050600060098381548110612748577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612790577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612805577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061282c83610dfb565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061297b575061297a82612b84565b5b9050919050565b61298d838383611c75565b505050565b60006129b38473ffffffffffffffffffffffffffffffffffffffff16611c62565b15612b1c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129dc611e74565b8786866040518563ffffffff1660e01b81526004016129fe94939291906136fa565b602060405180830381600087803b158015612a1857600080fd5b505af1925050508015612a4957506040513d601f19601f82011682018060405250810190612a469190613168565b60015b612acc573d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b50600081511415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906137c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b21565b600190505b949350505050565b612b338383612bee565b612b406000848484612992565b612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b76906137c5565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590613985565b60405180910390fd5b612c6781611e08565b15612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613805565b60405180910390fd5b612cb360008383612982565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d039190613be3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612dc890613dae565b90600052602060002090601f016020900481019282612dea5760008555612e31565b82601f10612e0357805160ff1916838001178555612e31565b82800160010185558215612e31579182015b82811115612e30578251825591602001919060010190612e15565b5b509050612e3e9190612e42565b5090565b5b80821115612e5b576000816000905550600101612e43565b5090565b6000612e72612e6d84613b05565b613ae0565b905082815260208101848484011115612e8a57600080fd5b612e95848285613d6c565b509392505050565b6000612eb0612eab84613b36565b613ae0565b905082815260208101848484011115612ec857600080fd5b612ed3848285613d6c565b509392505050565b600081359050612eea81614605565b92915050565b600081359050612eff8161461c565b92915050565b600081359050612f1481614633565b92915050565b600081519050612f2981614633565b92915050565b600082601f830112612f4057600080fd5b8135612f50848260208601612e5f565b91505092915050565b600082601f830112612f6a57600080fd5b8135612f7a848260208601612e9d565b91505092915050565b600081359050612f928161464a565b92915050565b600060208284031215612faa57600080fd5b6000612fb884828501612edb565b91505092915050565b60008060408385031215612fd457600080fd5b6000612fe285828601612edb565b9250506020612ff385828601612edb565b9150509250929050565b60008060006060848603121561301257600080fd5b600061302086828701612edb565b935050602061303186828701612edb565b925050604061304286828701612f83565b9150509250925092565b6000806000806080858703121561306257600080fd5b600061307087828801612edb565b945050602061308187828801612edb565b935050604061309287828801612f83565b925050606085013567ffffffffffffffff8111156130af57600080fd5b6130bb87828801612f2f565b91505092959194509250565b600080604083850312156130da57600080fd5b60006130e885828601612edb565b92505060206130f985828601612ef0565b9150509250929050565b6000806040838503121561311657600080fd5b600061312485828601612edb565b925050602061313585828601612f83565b9150509250929050565b60006020828403121561315157600080fd5b600061315f84828501612f05565b91505092915050565b60006020828403121561317a57600080fd5b600061318884828501612f1a565b91505092915050565b6000602082840312156131a357600080fd5b600082013567ffffffffffffffff8111156131bd57600080fd5b6131c984828501612f59565b91505092915050565b6000602082840312156131e457600080fd5b60006131f284828501612f83565b91505092915050565b6000613207838361369d565b60208301905092915050565b61321c81613cf8565b82525050565b600061322d82613b77565b6132378185613ba5565b935061324283613b67565b8060005b8381101561327357815161325a88826131fb565b975061326583613b98565b925050600181019050613246565b5085935050505092915050565b61328981613d0a565b82525050565b600061329a82613b82565b6132a48185613bb6565b93506132b4818560208601613d7b565b6132bd81613f47565b840191505092915050565b60006132d382613b8d565b6132dd8185613bc7565b93506132ed818560208601613d7b565b6132f681613f47565b840191505092915050565b600061330c82613b8d565b6133168185613bd8565b9350613326818560208601613d7b565b80840191505092915050565b600061333f602b83613bc7565b915061334a82613f58565b604082019050919050565b6000613362603283613bc7565b915061336d82613fa7565b604082019050919050565b6000613385602683613bc7565b915061339082613ff6565b604082019050919050565b60006133a8601c83613bc7565b91506133b382614045565b602082019050919050565b60006133cb600e83613bc7565b91506133d68261406e565b602082019050919050565b60006133ee602483613bc7565b91506133f982614097565b604082019050919050565b6000613411601983613bc7565b915061341c826140e6565b602082019050919050565b6000613434602c83613bc7565b915061343f8261410f565b604082019050919050565b6000613457602483613bc7565b91506134628261415e565b604082019050919050565b600061347a601883613bc7565b9150613485826141ad565b602082019050919050565b600061349d603883613bc7565b91506134a8826141d6565b604082019050919050565b60006134c0602a83613bc7565b91506134cb82614225565b604082019050919050565b60006134e3602983613bc7565b91506134ee82614274565b604082019050919050565b6000613506602683613bc7565b9150613511826142c3565b604082019050919050565b6000613529602383613bc7565b915061353482614312565b604082019050919050565b600061354c602083613bc7565b915061355782614361565b602082019050919050565b600061356f602c83613bc7565b915061357a8261438a565b604082019050919050565b6000613592602083613bc7565b915061359d826143d9565b602082019050919050565b60006135b5602983613bc7565b91506135c082614402565b604082019050919050565b60006135d8602f83613bc7565b91506135e382614451565b604082019050919050565b60006135fb602183613bc7565b9150613606826144a0565b604082019050919050565b600061361e603183613bc7565b9150613629826144ef565b604082019050919050565b6000613641602c83613bc7565b915061364c8261453e565b604082019050919050565b6000613664602d83613bc7565b915061366f8261458d565b604082019050919050565b6000613687601283613bc7565b9150613692826145dc565b602082019050919050565b6136a681613d62565b82525050565b6136b581613d62565b82525050565b60006136c78285613301565b91506136d38284613301565b91508190509392505050565b60006020820190506136f46000830184613213565b92915050565b600060808201905061370f6000830187613213565b61371c6020830186613213565b61372960408301856136ac565b818103606083015261373b818461328f565b905095945050505050565b600060208201905081810360008301526137608184613222565b905092915050565b600060208201905061377d6000830184613280565b92915050565b6000602082019050818103600083015261379d81846132c8565b905092915050565b600060208201905081810360008301526137be81613332565b9050919050565b600060208201905081810360008301526137de81613355565b9050919050565b600060208201905081810360008301526137fe81613378565b9050919050565b6000602082019050818103600083015261381e8161339b565b9050919050565b6000602082019050818103600083015261383e816133be565b9050919050565b6000602082019050818103600083015261385e816133e1565b9050919050565b6000602082019050818103600083015261387e81613404565b9050919050565b6000602082019050818103600083015261389e81613427565b9050919050565b600060208201905081810360008301526138be8161344a565b9050919050565b600060208201905081810360008301526138de8161346d565b9050919050565b600060208201905081810360008301526138fe81613490565b9050919050565b6000602082019050818103600083015261391e816134b3565b9050919050565b6000602082019050818103600083015261393e816134d6565b9050919050565b6000602082019050818103600083015261395e816134f9565b9050919050565b6000602082019050818103600083015261397e8161351c565b9050919050565b6000602082019050818103600083015261399e8161353f565b9050919050565b600060208201905081810360008301526139be81613562565b9050919050565b600060208201905081810360008301526139de81613585565b9050919050565b600060208201905081810360008301526139fe816135a8565b9050919050565b60006020820190508181036000830152613a1e816135cb565b9050919050565b60006020820190508181036000830152613a3e816135ee565b9050919050565b60006020820190508181036000830152613a5e81613611565b9050919050565b60006020820190508181036000830152613a7e81613634565b9050919050565b60006020820190508181036000830152613a9e81613657565b9050919050565b60006020820190508181036000830152613abe8161367a565b9050919050565b6000602082019050613ada60008301846136ac565b92915050565b6000613aea613afb565b9050613af68282613de0565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2057613b1f613f18565b5b613b2982613f47565b9050602081019050919050565b600067ffffffffffffffff821115613b5157613b50613f18565b5b613b5a82613f47565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bee82613d62565b9150613bf983613d62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2e57613c2d613e8b565b5b828201905092915050565b6000613c4482613d62565b9150613c4f83613d62565b925082613c5f57613c5e613eba565b5b828204905092915050565b6000613c7582613d62565b9150613c8083613d62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb957613cb8613e8b565b5b828202905092915050565b6000613ccf82613d62565b9150613cda83613d62565b925082821015613ced57613cec613e8b565b5b828203905092915050565b6000613d0382613d42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d99578082015181840152602081019050613d7e565b83811115613da8576000848401525b50505050565b60006002820490506001821680613dc657607f821691505b60208210811415613dda57613dd9613ee9565b5b50919050565b613de982613f47565b810181811067ffffffffffffffff82111715613e0857613e07613f18565b5b80604052505050565b6000613e1c82613d62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4f57613e4e613e8b565b5b600182019050919050565b6000613e6582613d62565b9150613e7083613d62565b925082613e8057613e7f613eba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e646564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f537570706c69656420746f6b656e2049442065786365656473204d41585f544f60008201527f4b454e5300000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652069732063757272656e746c79207061757365640000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2077697468647261772062616c616e6365206f6620636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f20323020617420612074696d6500000000000000000000000000000000000000602082015250565b7f45786365656473204d41585f544f4b454e530000000000000000000000000000600082015250565b61460e81613cf8565b811461461957600080fd5b50565b61462581613d0a565b811461463057600080fd5b50565b61463c81613d16565b811461464757600080fd5b50565b61465381613d62565b811461465e57600080fd5b5056fea2646970667358221220e6ff94b4f6405ff47758114669085662614e194f9e425f119b71d1a322fe3d7c64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637a037c2a11610102578063b88d4fde11610095578063eb8d244411610064578063eb8d2444146106e7578063f2fde38b14610712578063f47c84c51461073b578063fa1fc31b14610766576101e3565b8063b88d4fde14610619578063c87b56dd14610642578063e15d901d1461067f578063e985e9c5146106aa576101e3565b80638ea4ffc2116100d15780638ea4ffc21461058357806395d89b41146105ae578063a22cb465146105d9578063b66a0e5d14610602576101e3565b80637a037c2a146104d45780638462151c14610511578063853828b61461054e5780638da5cb5b14610558576101e3565b80634f6ccce71161017a5780636c0360eb116101495780636c0360eb1461042a57806370a0823114610455578063715018a614610492578063756a5cb4146104a9576101e3565b80634f6ccce71461037057806355367ba9146103ad57806355f804b3146103c45780636352211e146103ed576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a57806342842e0e14610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061313f565b610782565b60405161021c9190613768565b60405180910390f35b34801561023157600080fd5b5061023a610794565b6040516102479190613783565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131d2565b610826565b60405161028491906136df565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613103565b6108ab565b005b3480156102c257600080fd5b506102cb6109c3565b6040516102d89190613ac5565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ffd565b6109d0565b005b34801561031657600080fd5b50610331600480360381019061032c9190613103565b610a30565b60405161033e9190613ac5565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612ffd565b610ad5565b005b34801561037c57600080fd5b50610397600480360381019061039291906131d2565b610af5565b6040516103a49190613ac5565b60405180910390f35b3480156103b957600080fd5b506103c2610b8c565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613191565b610c25565b005b3480156103f957600080fd5b50610414600480360381019061040f91906131d2565b610cbb565b60405161042191906136df565b60405180910390f35b34801561043657600080fd5b5061043f610d6d565b60405161044c9190613783565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612f98565b610dfb565b6040516104899190613ac5565b60405180910390f35b34801561049e57600080fd5b506104a7610eb3565b005b3480156104b557600080fd5b506104be610ff0565b6040516104cb9190613ac5565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906131d2565b611007565b6040516105089190613ac5565b60405180910390f35b34801561051d57600080fd5b5061053860048036038101906105339190612f98565b6110f0565b6040516105459190613746565b60405180910390f35b61055661126c565b005b34801561056457600080fd5b5061056d61142b565b60405161057a91906136df565b60405180910390f35b34801561058f57600080fd5b50610598611455565b6040516105a591906136df565b60405180910390f35b3480156105ba57600080fd5b506105c361146d565b6040516105d09190613783565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906130c7565b6114ff565b005b34801561060e57600080fd5b50610617611680565b005b34801561062557600080fd5b50610640600480360381019061063b919061304c565b611719565b005b34801561064e57600080fd5b50610669600480360381019061066491906131d2565b61177b565b6040516106769190613783565b60405180910390f35b34801561068b57600080fd5b50610694611822565b6040516106a191906136df565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190612fc1565b61183a565b6040516106de9190613768565b60405180910390f35b3480156106f357600080fd5b506106fc6118ce565b6040516107099190613768565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612f98565b6118e1565b005b34801561074757600080fd5b50610750611a8d565b60405161075d9190613ac5565b60405180910390f35b610780600480360381019061077b91906131d2565b611a93565b005b600061078d82611d8e565b9050919050565b6060600080546107a390613dae565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90613dae565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b600061083182611e08565b610870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610867906139a5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b682610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613a25565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610946611e74565b73ffffffffffffffffffffffffffffffffffffffff16148061097557506109748161096f611e74565b61183a565b5b6109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906138e5565b60405180910390fd5b6109be8383611e7c565b505050565b6000600980549050905090565b6109e16109db611e74565b82611f35565b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790613a45565b60405180910390fd5b610a2b838383612013565b505050565b6000610a3b83610dfb565b8210610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906137a5565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610af083838360405180602001604052806000815250611719565b505050565b6000610aff6109c3565b8210610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790613a65565b60405180910390fd5b60098281548110610b7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b94611e74565b73ffffffffffffffffffffffffffffffffffffffff16610bb261142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906139c5565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b610c2d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c4b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906139c5565b60405180910390fd5b80600b9080519060200190610cb7929190612dbc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90613925565b60405180910390fd5b80915050919050565b600b8054610d7a90613dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610da690613dae565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613905565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610ed961142b565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906139c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611002610ffd6109c3565b611007565b905090565b60006103e8821061104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906138a5565b60405180910390fd5b6103b6821061106657670de0b6b3a764000090506110eb565b610320821061107f576708e1bc9bf040000090506110eb565b61028a821061109857670470de4df820000090506110eb565b6101c282106110b1576702386f26fc10000090506110eb565b60fa82106110c95767011c37937e08000090506110eb565b603282106110e057668e1bc9bf04000090506110eb565b66470de4df82000090505b919050565b606060006110fd83610dfb565b9050600081141561118057600067ffffffffffffffff811115611149577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111775781602001602082028036833780820191505090505b50915050611267565b60008167ffffffffffffffff8111156111c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111f05781602001602082028036833780820191505090505b50905060005b82811015611260576112088582610a30565b828281518110611241577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061125890613e11565b9150506111f6565b5080925050505b919050565b611274611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129261142b565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df906139c5565b60405180910390fd5b60006002476112f79190613c39565b905060006004476113089190613c39565b90507354334ebc8c9ef04bc28d614caa557143ed8afc8773ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505080156113a4575073af9c4391d3459c8b06429bc0a1717c7c362d125c73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505b80156113e857506113b361142b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050505b611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613945565b60405180910390fd5b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73af9c4391d3459c8b06429bc0a1717c7c362d125c81565b60606001805461147c90613dae565b80601f01602080910402602001604051908101604052809291908181526020018280546114a890613dae565b80156114f55780601f106114ca576101008083540402835291602001916114f5565b820191906000526020600020905b8154815290600101906020018083116114d857829003601f168201915b5050505050905090565b611507611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613865565b60405180910390fd5b8060056000611582611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661162f611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116749190613768565b60405180910390a35050565b611688611e74565b73ffffffffffffffffffffffffffffffffffffffff166116a661142b565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906139c5565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61172a611724611e74565b83611f35565b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613a45565b60405180910390fd5b6117758484848461226f565b50505050565b606061178682611e08565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613a05565b60405180910390fd5b60006117cf6122cb565b905060008151116117ef576040518060200160405280600081525061181a565b806117f98461235d565b60405160200161180a9291906136bb565b6040516020818303038152906040525b915050919050565b7354334ebc8c9ef04bc28d614caa557143ed8afc8781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b6118e9611e74565b73ffffffffffffffffffffffffffffffffffffffff1661190761142b565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906139c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906137e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6103e881565b600c60009054906101000a900460ff16611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906138c5565b60405180910390fd5b6103e8611aed6109c3565b10611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613825565b60405180910390fd5b600081118015611b3e575060148111155b611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7490613a85565b60405180910390fd5b6103e881611b896109c3565b611b939190613be3565b1115611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90613aa5565b60405180910390fd5b80611bdd610ff0565b611be79190613c6a565b341015611c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2090613965565b60405180910390fd5b60005b81811015611c5e576000611c3e6109c3565b9050611c4a338261250a565b508080611c5690613e11565b915050611c2c565b5050565b600080823b905060008111915050919050565b611c80838383611d89565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cc357611cbe81612528565b611d02565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611d0157611d008382612571565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d4557611d40816126de565b611d84565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d8357611d828282612821565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e015750611e00826128a0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eef83610cbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4082611e08565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613885565b60405180910390fd5b6000611f8a83610cbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff957508373ffffffffffffffffffffffffffffffffffffffff16611fe184610826565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200a5750612009818561183a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203382610cbb565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612080906139e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f090613845565b60405180910390fd5b612104838383612982565b61210f600082611e7c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215f9190613cc4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b69190613be3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61227a848484612013565b61228684848484612992565b6122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906137c5565b60405180910390fd5b50505050565b6060600b80546122da90613dae565b80601f016020809104026020016040519081016040528092919081815260200182805461230690613dae565b80156123535780601f1061232857610100808354040283529160200191612353565b820191906000526020600020905b81548152906001019060200180831161233657829003601f168201915b5050505050905090565b606060008214156123a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612505565b600082905060005b600082146123d75780806123c090613e11565b915050600a826123d09190613c39565b91506123ad565b60008167ffffffffffffffff811115612419577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561244b5781602001600182028036833780820191505090505b5090505b600085146124fe576001826124649190613cc4565b9150600a856124739190613e5a565b603061247f9190613be3565b60f81b8183815181106124bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124f79190613c39565b945061244f565b8093505050505b919050565b612524828260405180602001604052806000815250612b29565b5050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161257e84610dfb565b6125889190613cc4565b905060006008600084815260200190815260200160002054905081811461266d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506126f29190613cc4565b90506000600a6000848152602001908152602001600020549050600060098381548110612748577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612790577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612805577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061282c83610dfb565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061297b575061297a82612b84565b5b9050919050565b61298d838383611c75565b505050565b60006129b38473ffffffffffffffffffffffffffffffffffffffff16611c62565b15612b1c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129dc611e74565b8786866040518563ffffffff1660e01b81526004016129fe94939291906136fa565b602060405180830381600087803b158015612a1857600080fd5b505af1925050508015612a4957506040513d601f19601f82011682018060405250810190612a469190613168565b60015b612acc573d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b50600081511415612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb906137c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b21565b600190505b949350505050565b612b338383612bee565b612b406000848484612992565b612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b76906137c5565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590613985565b60405180910390fd5b612c6781611e08565b15612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613805565b60405180910390fd5b612cb360008383612982565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d039190613be3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612dc890613dae565b90600052602060002090601f016020900481019282612dea5760008555612e31565b82601f10612e0357805160ff1916838001178555612e31565b82800160010185558215612e31579182015b82811115612e30578251825591602001919060010190612e15565b5b509050612e3e9190612e42565b5090565b5b80821115612e5b576000816000905550600101612e43565b5090565b6000612e72612e6d84613b05565b613ae0565b905082815260208101848484011115612e8a57600080fd5b612e95848285613d6c565b509392505050565b6000612eb0612eab84613b36565b613ae0565b905082815260208101848484011115612ec857600080fd5b612ed3848285613d6c565b509392505050565b600081359050612eea81614605565b92915050565b600081359050612eff8161461c565b92915050565b600081359050612f1481614633565b92915050565b600081519050612f2981614633565b92915050565b600082601f830112612f4057600080fd5b8135612f50848260208601612e5f565b91505092915050565b600082601f830112612f6a57600080fd5b8135612f7a848260208601612e9d565b91505092915050565b600081359050612f928161464a565b92915050565b600060208284031215612faa57600080fd5b6000612fb884828501612edb565b91505092915050565b60008060408385031215612fd457600080fd5b6000612fe285828601612edb565b9250506020612ff385828601612edb565b9150509250929050565b60008060006060848603121561301257600080fd5b600061302086828701612edb565b935050602061303186828701612edb565b925050604061304286828701612f83565b9150509250925092565b6000806000806080858703121561306257600080fd5b600061307087828801612edb565b945050602061308187828801612edb565b935050604061309287828801612f83565b925050606085013567ffffffffffffffff8111156130af57600080fd5b6130bb87828801612f2f565b91505092959194509250565b600080604083850312156130da57600080fd5b60006130e885828601612edb565b92505060206130f985828601612ef0565b9150509250929050565b6000806040838503121561311657600080fd5b600061312485828601612edb565b925050602061313585828601612f83565b9150509250929050565b60006020828403121561315157600080fd5b600061315f84828501612f05565b91505092915050565b60006020828403121561317a57600080fd5b600061318884828501612f1a565b91505092915050565b6000602082840312156131a357600080fd5b600082013567ffffffffffffffff8111156131bd57600080fd5b6131c984828501612f59565b91505092915050565b6000602082840312156131e457600080fd5b60006131f284828501612f83565b91505092915050565b6000613207838361369d565b60208301905092915050565b61321c81613cf8565b82525050565b600061322d82613b77565b6132378185613ba5565b935061324283613b67565b8060005b8381101561327357815161325a88826131fb565b975061326583613b98565b925050600181019050613246565b5085935050505092915050565b61328981613d0a565b82525050565b600061329a82613b82565b6132a48185613bb6565b93506132b4818560208601613d7b565b6132bd81613f47565b840191505092915050565b60006132d382613b8d565b6132dd8185613bc7565b93506132ed818560208601613d7b565b6132f681613f47565b840191505092915050565b600061330c82613b8d565b6133168185613bd8565b9350613326818560208601613d7b565b80840191505092915050565b600061333f602b83613bc7565b915061334a82613f58565b604082019050919050565b6000613362603283613bc7565b915061336d82613fa7565b604082019050919050565b6000613385602683613bc7565b915061339082613ff6565b604082019050919050565b60006133a8601c83613bc7565b91506133b382614045565b602082019050919050565b60006133cb600e83613bc7565b91506133d68261406e565b602082019050919050565b60006133ee602483613bc7565b91506133f982614097565b604082019050919050565b6000613411601983613bc7565b915061341c826140e6565b602082019050919050565b6000613434602c83613bc7565b915061343f8261410f565b604082019050919050565b6000613457602483613bc7565b91506134628261415e565b604082019050919050565b600061347a601883613bc7565b9150613485826141ad565b602082019050919050565b600061349d603883613bc7565b91506134a8826141d6565b604082019050919050565b60006134c0602a83613bc7565b91506134cb82614225565b604082019050919050565b60006134e3602983613bc7565b91506134ee82614274565b604082019050919050565b6000613506602683613bc7565b9150613511826142c3565b604082019050919050565b6000613529602383613bc7565b915061353482614312565b604082019050919050565b600061354c602083613bc7565b915061355782614361565b602082019050919050565b600061356f602c83613bc7565b915061357a8261438a565b604082019050919050565b6000613592602083613bc7565b915061359d826143d9565b602082019050919050565b60006135b5602983613bc7565b91506135c082614402565b604082019050919050565b60006135d8602f83613bc7565b91506135e382614451565b604082019050919050565b60006135fb602183613bc7565b9150613606826144a0565b604082019050919050565b600061361e603183613bc7565b9150613629826144ef565b604082019050919050565b6000613641602c83613bc7565b915061364c8261453e565b604082019050919050565b6000613664602d83613bc7565b915061366f8261458d565b604082019050919050565b6000613687601283613bc7565b9150613692826145dc565b602082019050919050565b6136a681613d62565b82525050565b6136b581613d62565b82525050565b60006136c78285613301565b91506136d38284613301565b91508190509392505050565b60006020820190506136f46000830184613213565b92915050565b600060808201905061370f6000830187613213565b61371c6020830186613213565b61372960408301856136ac565b818103606083015261373b818461328f565b905095945050505050565b600060208201905081810360008301526137608184613222565b905092915050565b600060208201905061377d6000830184613280565b92915050565b6000602082019050818103600083015261379d81846132c8565b905092915050565b600060208201905081810360008301526137be81613332565b9050919050565b600060208201905081810360008301526137de81613355565b9050919050565b600060208201905081810360008301526137fe81613378565b9050919050565b6000602082019050818103600083015261381e8161339b565b9050919050565b6000602082019050818103600083015261383e816133be565b9050919050565b6000602082019050818103600083015261385e816133e1565b9050919050565b6000602082019050818103600083015261387e81613404565b9050919050565b6000602082019050818103600083015261389e81613427565b9050919050565b600060208201905081810360008301526138be8161344a565b9050919050565b600060208201905081810360008301526138de8161346d565b9050919050565b600060208201905081810360008301526138fe81613490565b9050919050565b6000602082019050818103600083015261391e816134b3565b9050919050565b6000602082019050818103600083015261393e816134d6565b9050919050565b6000602082019050818103600083015261395e816134f9565b9050919050565b6000602082019050818103600083015261397e8161351c565b9050919050565b6000602082019050818103600083015261399e8161353f565b9050919050565b600060208201905081810360008301526139be81613562565b9050919050565b600060208201905081810360008301526139de81613585565b9050919050565b600060208201905081810360008301526139fe816135a8565b9050919050565b60006020820190508181036000830152613a1e816135cb565b9050919050565b60006020820190508181036000830152613a3e816135ee565b9050919050565b60006020820190508181036000830152613a5e81613611565b9050919050565b60006020820190508181036000830152613a7e81613634565b9050919050565b60006020820190508181036000830152613a9e81613657565b9050919050565b60006020820190508181036000830152613abe8161367a565b9050919050565b6000602082019050613ada60008301846136ac565b92915050565b6000613aea613afb565b9050613af68282613de0565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2057613b1f613f18565b5b613b2982613f47565b9050602081019050919050565b600067ffffffffffffffff821115613b5157613b50613f18565b5b613b5a82613f47565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bee82613d62565b9150613bf983613d62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2e57613c2d613e8b565b5b828201905092915050565b6000613c4482613d62565b9150613c4f83613d62565b925082613c5f57613c5e613eba565b5b828204905092915050565b6000613c7582613d62565b9150613c8083613d62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb957613cb8613e8b565b5b828202905092915050565b6000613ccf82613d62565b9150613cda83613d62565b925082821015613ced57613cec613e8b565b5b828203905092915050565b6000613d0382613d42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d99578082015181840152602081019050613d7e565b83811115613da8576000848401525b50505050565b60006002820490506001821680613dc657607f821691505b60208210811415613dda57613dd9613ee9565b5b50919050565b613de982613f47565b810181811067ffffffffffffffff82111715613e0857613e07613f18565b5b80604052505050565b6000613e1c82613d62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e4f57613e4e613e8b565b5b600182019050919050565b6000613e6582613d62565b9150613e7083613d62565b925082613e8057613e7f613eba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e646564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f537570706c69656420746f6b656e2049442065786365656473204d41585f544f60008201527f4b454e5300000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652069732063757272656e746c79207061757365640000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2077697468647261772062616c616e6365206f6620636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f20323020617420612074696d6500000000000000000000000000000000000000602082015250565b7f45786365656473204d41585f544f4b454e530000000000000000000000000000600082015250565b61460e81613cf8565b811461461957600080fd5b50565b61462581613d0a565b811461463057600080fd5b50565b61463c81613d16565b811461464757600080fd5b50565b61465381613d62565b811461465e57600080fd5b5056fea2646970667358221220e6ff94b4f6405ff47758114669085662614e194f9e425f119b71d1a322fe3d7c64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.