ETH Price: $3,384.24 (-1.55%)
Gas: 1 Gwei

Token

Schroot (SCHROOT)
 

Overview

Max Total Supply

8,337 SCHROOT

Holders

1,792

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
teddybomber.eth
Balance
1 SCHROOT
0x08a4f7C5b0021ca15D65e410b22825AAdC84aba1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Schroot NFT is a collection of 8337 Schroots living on the blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Schroot

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.8.0 <0.9.0;
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';

contract Schroot is ERC721Burnable, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 private price = .02 * 1e18;
    uint256 private totalSchroots = 8337;
    bool public saleStart;
    bool public whitelistSale;
    bool public openForWhitelist;
    uint256 public maxWhitelist = 500;
    uint256 public whitelisted;

    uint256 maxMint = 20;
    uint256 maxMintWhitelist = 5;

    string private baseUri = 'https://api.schroot.io/json/';

    address private sara            = 0x00796e910Bd0228ddF4cd79e3f353871a61C351C;
    address private gotrilla        = 0x3546BD99767246C358ff1497f1580C8365b25AC8;
    address private robooverlord    = 0x30119E6DA1578F721cf5e9945b148Ae2E512ca01;
    address private roborambo       = 0xe0Ea9a993870eA3c8E883DC3Ecc9596D5073C8Cb;
    address private brett           = 0xc9CF4E3E13c4a7e45F4689a9b20E038C7BeF328E;
    address private community       = 0xC14da9a159a5CA7ade851F9A9C33a2D1E5D22724;

    mapping (address => bool) public Whitelist;
    mapping (address => uint256) public MintsPerWallet;

    constructor() ERC721("Schroot", "SCHROOT") {
        uint256 i;
        for(i=0; i<5; i++) {
            _tokenIds.increment();
            _safeMint(sara, _tokenIds.current());
        }
        for(i=0; i<5; i++) {
            _tokenIds.increment();
            _safeMint(gotrilla, _tokenIds.current());
        }
        for(i=0; i<5; i++) {
            _tokenIds.increment();
            _safeMint(robooverlord, _tokenIds.current());
        }
        for(i=0; i<5; i++) {
            _tokenIds.increment();
            _safeMint(roborambo, _tokenIds.current());
        }
        for(i=0; i<5; i++) {
            _tokenIds.increment();
            _safeMint(brett, _tokenIds.current());
        }
        for(i=0; i<15; i++) {
            _tokenIds.increment();
            _safeMint(community, _tokenIds.current());
        }
    }

    function mint(uint256 amount) public payable {
        require(saleStart, "Sale has not started yet.");
        require(price * amount <= msg.value, "Price not correct.");
        require(totalSupply() + amount <= totalSchroots, "Exceeds max supply.");
        require(amount <= maxMint, "Exceeds max mint.");
        if(whitelistSale) {
            require(Whitelist[msg.sender], "Not on the whitelist.");
            require(MintsPerWallet[msg.sender]+amount <= maxMintWhitelist, "Exceeds max mint for whitelist.");
        }
        for(uint256 i=0; i<amount; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current());
            MintsPerWallet[msg.sender]++;
        }
    }

    function addSelfToWhitelist() public {
        require(openForWhitelist && whitelisted+1 <= maxWhitelist && !Whitelist[msg.sender], "Not eligible for whitelist.");
        Whitelist[msg.sender] = true;
        whitelisted++;
    }

    function addToWhitelist(address user) public onlyOwner {
        Whitelist[user] = true;
        whitelisted++;
    }

    /**
    *   External function for getting all tokens by a specific owner.
    */
    function getByOwner(address _owner) view public returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTokens = _tokenIds.current();
            uint256 resultIndex = 0;
            for (uint256 t = 1; t <= totalTokens; t++) {
                if (_exists(t) && ownerOf(t) == _owner) {
                    result[resultIndex] = t;
                    resultIndex++;
                }
            }
            return result;
        }
    }

    function exists(uint256 tokenId) public view returns(bool) {
        return _exists(tokenId);
    }

    function totalSupply() public view returns(uint256) {
        return _tokenIds.current();
    }

    /*
    *   Owner setters.
    */
    function setBaseUri(string memory _baseUri) public onlyOwner {
        baseUri = _baseUri;
    }

    function setSaleStart(bool _saleStart) public onlyOwner {
        saleStart = _saleStart;
    }

    function setWhitelistSale(bool _whitelistSale) public onlyOwner {
        whitelistSale = _whitelistSale;
    }

    function setOpenForWhitelist(bool _openForWhitelist) public onlyOwner {
        openForWhitelist = _openForWhitelist;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    /*
    *   Money management.
    */
    function withdraw() public payable onlyOwner {

        uint256 _community = (address(this).balance * 33) / 100;
        uint256 _each = (address(this).balance - _community) / 5;
        require(payable(sara).send(_each));   // sara
        require(payable(robooverlord).send(_each));   // robo overlord
        require(payable(gotrilla).send(_each));   // gotrilla
        require(payable(roborambo).send(_each));   // robo rambo
        require(payable(brett).send(_each));   // robo rambo
        require(payable(community).send(_community));   // community
    }

    function forwardERC20s(IERC20 _token, uint256 _amount) public onlyOwner {
        _token.transfer(msg.sender, _amount);
    }

    /*
    *   Overrides
    */
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    receive () external payable virtual {}

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 4 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 14 : 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 6 of 14 : 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 7 of 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 8 of 14 : 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 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 11 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : 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 14 of 14 : 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",
        "devdoc",
        "userdoc",
        "metadata",
        "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":[{"internalType":"address","name":"","type":"address"}],"name":"MintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addSelfToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openForWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","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":[{"internalType":"bool","name":"_openForWhitelist","type":"bool"}],"name":"setOpenForWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleStart","type":"bool"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistSale","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266470de4df8200006008556120916009556101f4600b556014600d556005600e556040518060400160405280601c81526020017f68747470733a2f2f6170692e736368726f6f742e696f2f6a736f6e2f00000000815250600f90805190602001906200007292919062000c11565b5072796e910bd0228ddf4cd79e3f353871a61c351c601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733546bd99767246c358ff1497f1580c8365b25ac8601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507330119e6da1578f721cf5e9945b148ae2e512ca01601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e0ea9a993870ea3c8e883dc3ecc9596d5073c8cb601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c9cf4e3e13c4a7e45f4689a9b20e038c7bef328e601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c14da9a159a5ca7ade851f9a9c33a2d1e5d22724601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200027d57600080fd5b506040518060400160405280600781526020017f536368726f6f74000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534348524f4f540000000000000000000000000000000000000000000000000081525081600090805190602001906200030292919062000c11565b5080600190805190602001906200031b92919062000c11565b5050506200033e620003326200066760201b60201c565b6200066f60201b60201c565b60005b6005811015620003c2576200036260076200073560201b620021e51760201c565b620003ac601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003a060076200074b60201b620021fb1760201c565b6200075960201b60201c565b8080620003b99062000ff6565b91505062000341565b600090505b60058110156200044857620003e860076200073560201b620021e51760201c565b62000432601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200042660076200074b60201b620021fb1760201c565b6200075960201b60201c565b80806200043f9062000ff6565b915050620003c7565b600090505b6005811015620004ce576200046e60076200073560201b620021e51760201c565b620004b8601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620004ac60076200074b60201b620021fb1760201c565b6200075960201b60201c565b8080620004c59062000ff6565b9150506200044d565b600090505b60058110156200055457620004f460076200073560201b620021e51760201c565b6200053e601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200053260076200074b60201b620021fb1760201c565b6200075960201b60201c565b80806200054b9062000ff6565b915050620004d3565b600090505b6005811015620005da576200057a60076200073560201b620021e51760201c565b620005c4601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620005b860076200074b60201b620021fb1760201c565b6200075960201b60201c565b8080620005d19062000ff6565b91505062000559565b600090505b600f81101562000660576200060060076200073560201b620021e51760201c565b6200064a601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200063e60076200074b60201b620021fb1760201c565b6200075960201b60201c565b8080620006579062000ff6565b915050620005df565b506200116e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6200077b8282604051806020016040528060008152506200077f60201b60201c565b5050565b620007918383620007ed60201b60201c565b620007a66000848484620009d360201b60201c565b620007e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007df9062000e30565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008579062000e74565b60405180910390fd5b620008718162000b8d60201b60201c565b15620008b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ab9062000e52565b60405180910390fd5b620008c86000838362000bf960201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200091a919062000ec3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000a018473ffffffffffffffffffffffffffffffffffffffff1662000bfe60201b620022091760201c565b1562000b80578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000a336200066760201b60201c565b8786866040518563ffffffff1660e01b815260040162000a57949392919062000ddc565b602060405180830381600087803b15801562000a7257600080fd5b505af192505050801562000aa657506040513d601f19601f8201168201806040525081019062000aa3919062000cd8565b60015b62000b2f573d806000811462000ad9576040519150601f19603f3d011682016040523d82523d6000602084013e62000ade565b606091505b5060008151141562000b27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b1e9062000e30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000b85565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000c1f9062000fc0565b90600052602060002090601f01602090048101928262000c43576000855562000c8f565b82601f1062000c5e57805160ff191683800117855562000c8f565b8280016001018555821562000c8f579182015b8281111562000c8e57825182559160200191906001019062000c71565b5b50905062000c9e919062000ca2565b5090565b5b8082111562000cbd57600081600090555060010162000ca3565b5090565b60008151905062000cd28162001154565b92915050565b60006020828403121562000ceb57600080fd5b600062000cfb8482850162000cc1565b91505092915050565b62000d0f8162000f20565b82525050565b600062000d228262000e96565b62000d2e818562000ea1565b935062000d4081856020860162000f8a565b62000d4b81620010a2565b840191505092915050565b600062000d6560328362000eb2565b915062000d7282620010b3565b604082019050919050565b600062000d8c601c8362000eb2565b915062000d998262001102565b602082019050919050565b600062000db360208362000eb2565b915062000dc0826200112b565b602082019050919050565b62000dd68162000f80565b82525050565b600060808201905062000df3600083018762000d04565b62000e02602083018662000d04565b62000e11604083018562000dcb565b818103606083015262000e25818462000d15565b905095945050505050565b6000602082019050818103600083015262000e4b8162000d56565b9050919050565b6000602082019050818103600083015262000e6d8162000d7d565b9050919050565b6000602082019050818103600083015262000e8f8162000da4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000ed08262000f80565b915062000edd8362000f80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f155762000f1462001044565b5b828201905092915050565b600062000f2d8262000f60565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000faa57808201518184015260208101905062000f8d565b8381111562000fba576000848401525b50505050565b6000600282049050600182168062000fd957607f821691505b6020821081141562000ff05762000fef62001073565b5b50919050565b6000620010038262000f80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001039576200103862001044565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200115f8162000f34565b81146200116b57600080fd5b50565b6147fd806200117e6000396000f3fe60806040526004361061021e5760003560e01c806370a0823111610123578063a22cb465116100ab578063ca7ce3ec1161006f578063ca7ce3ec146107ac578063e43252d7146107d5578063e985e9c5146107fe578063eb73900b1461083b578063f2fde38b1461087857610225565b8063a22cb465146106c7578063ab0bcc41146106f0578063b88d4fde1461071b578063bf0d96c314610744578063c87b56dd1461076f57610225565b806391b7f5ed116100f257806391b7f5ed1461060557806395d89b411461062e5780639727151a14610659578063a0712d6814610682578063a0bcfc7f1461069e57610225565b806370a082311461055b578063715018a61461059857806382554489146105af5780638da5cb5b146105da57610225565b8063379c5131116101a657806342966c681161017557806342966c68146104665780634f558e791461048f57806350ce044a146104cc5780636352211e146104f55780636c9119181461053257610225565b8063379c5131146103cb5780633ccfd60b146104085780633d9287fa1461041257806342842e0e1461043d57610225565b8063095ea7b3116101ed578063095ea7b31461030c57806318160ddd146103355780631d1468d41461036057806323b872dd1461037757806331ffd6f1146103a057610225565b806301ffc9a71461022a578063039924d01461026757806306fdde03146102a4578063081812fc146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613341565b6108a1565b60405161025e91906139ac565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613148565b610983565b60405161029b9190613ce9565b60405180910390f35b3480156102b057600080fd5b506102b961099b565b6040516102c691906139c7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613410565b610a2d565b60405161030391906138fa565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906132b3565b610ab2565b005b34801561034157600080fd5b5061034a610bca565b6040516103579190613ce9565b60405180910390f35b34801561036c57600080fd5b50610375610bdb565b005b34801561038357600080fd5b5061039e600480360381019061039991906131ad565b610d0e565b005b3480156103ac57600080fd5b506103b5610d6e565b6040516103c291906139ac565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613148565b610d81565b6040516103ff919061398a565b60405180910390f35b610410610f64565b005b34801561041e57600080fd5b5061042761125d565b6040516104349190613ce9565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906131ad565b611263565b005b34801561047257600080fd5b5061048d60048036038101906104889190613410565b611283565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613410565b6112df565b6040516104c391906139ac565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906132ef565b6112f1565b005b34801561050157600080fd5b5061051c60048036038101906105179190613410565b61138a565b60405161052991906138fa565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906132ef565b61143c565b005b34801561056757600080fd5b50610582600480360381019061057d9190613148565b6114d5565b60405161058f9190613ce9565b60405180910390f35b3480156105a457600080fd5b506105ad61158d565b005b3480156105bb57600080fd5b506105c4611615565b6040516105d191906139ac565b60405180910390f35b3480156105e657600080fd5b506105ef611628565b6040516105fc91906138fa565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613410565b611652565b005b34801561063a57600080fd5b506106436116d8565b60405161065091906139c7565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613393565b61176a565b005b61069c60048036038101906106979190613410565b611878565b005b3480156106aa57600080fd5b506106c560048036038101906106c091906133cf565b611b78565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613277565b611c0e565b005b3480156106fc57600080fd5b50610705611d8f565b60405161071291906139ac565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906131fc565b611da2565b005b34801561075057600080fd5b50610759611e04565b6040516107669190613ce9565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613410565b611e0a565b6040516107a391906139c7565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906132ef565b611eb1565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613148565b611f4a565b005b34801561080a57600080fd5b5061082560048036038101906108209190613171565b612039565b60405161083291906139ac565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613148565b6120cd565b60405161086f91906139ac565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613148565b6120ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b8261221c565b5b9050919050565b60176020528060005260406000206000915090505481565b6060600080546109aa90613fe4565b80601f01602080910402602001604051908101604052809291908181526020018280546109d690613fe4565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b5050505050905090565b6000610a3882612286565b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90613b89565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abd8261138a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613c69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4d6122f2565b73ffffffffffffffffffffffffffffffffffffffff161480610b7c5750610b7b81610b766122f2565b612039565b5b610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613b09565b60405180910390fd5b610bc583836122fa565b505050565b6000610bd660076121fb565b905090565b600a60029054906101000a900460ff168015610c075750600b546001600c54610c049190613e07565b11155b8015610c5d5750601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906139e9565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190610d0790614047565b9190505550565b610d1f610d196122f2565b826123b3565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613c89565b60405180910390fd5b610d69838383612491565b505050565b600a60019054906101000a900460ff1681565b60606000610d8e836114d5565b90506000811415610e1157600067ffffffffffffffff811115610dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e085781602001602082028036833780820191505090505b50915050610f5f565b60008167ffffffffffffffff811115610e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e815781602001602082028036833780820191505090505b5090506000610e9060076121fb565b9050600080600190505b828111610f5657610eaa81612286565b8015610ee957508673ffffffffffffffffffffffffffffffffffffffff16610ed18261138a565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f435780848381518110610f28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f3f90614047565b9250505b8080610f4e90614047565b915050610e9a565b50829450505050505b919050565b610f6c6122f2565b73ffffffffffffffffffffffffffffffffffffffff16610f8a611628565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613ba9565b60405180910390fd5b60006064602147610ff19190613e8e565b610ffb9190613e5d565b905060006005824761100d9190613ee8565b6110179190613e5d565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107957600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110d957600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061113957600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119957600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111f957600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061125957600080fd5b5050565b600c5481565b61127e83838360405180602001604052806000815250611da2565b505050565b61129461128e6122f2565b826123b3565b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613cc9565b60405180910390fd5b6112dc816126ed565b50565b60006112ea82612286565b9050919050565b6112f96122f2565b73ffffffffffffffffffffffffffffffffffffffff16611317611628565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613ba9565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613b49565b60405180910390fd5b80915050919050565b6114446122f2565b73ffffffffffffffffffffffffffffffffffffffff16611462611628565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613ba9565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613b29565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115956122f2565b73ffffffffffffffffffffffffffffffffffffffff166115b3611628565b73ffffffffffffffffffffffffffffffffffffffff1614611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090613ba9565b60405180910390fd5b61161360006127fe565b565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61165a6122f2565b73ffffffffffffffffffffffffffffffffffffffff16611678611628565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613ba9565b60405180910390fd5b8060088190555050565b6060600180546116e790613fe4565b80601f016020809104026020016040519081016040528092919081815260200182805461171390613fe4565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726122f2565b73ffffffffffffffffffffffffffffffffffffffff16611790611628565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613ba9565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611821929190613961565b602060405180830381600087803b15801561183b57600080fd5b505af115801561184f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118739190613318565b505050565b600a60009054906101000a900460ff166118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613c29565b60405180910390fd5b34816008546118d69190613e8e565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613a89565b60405180910390fd5b60095481611923610bca565b61192d9190613e07565b111561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613c09565b60405180910390fd5b600d548111156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613c49565b60405180910390fd5b600a60019054906101000a900460ff1615611ae457601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613ca9565b60405180910390fd5b600e5481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa29190613e07565b1115611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613a09565b60405180910390fd5b5b60005b81811015611b7457611af960076121e5565b611b0c33611b0760076121fb565b6128c4565b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b5c90614047565b91905055508080611b6c90614047565b915050611ae7565b5050565b611b806122f2565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611628565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613ba9565b60405180910390fd5b80600f9080519060200190611c0a929190612f42565b5050565b611c166122f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613ac9565b60405180910390fd5b8060056000611c916122f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3e6122f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8391906139ac565b60405180910390a35050565b600a60009054906101000a900460ff1681565b611db3611dad6122f2565b836123b3565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613c89565b60405180910390fd5b611dfe848484846128e2565b50505050565b600b5481565b6060611e1582612286565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613be9565b60405180910390fd5b6000611e5e61293e565b90506000815111611e7e5760405180602001604052806000815250611ea9565b80611e88846129d0565b604051602001611e999291906138d6565b6040516020818303038152906040525b915050919050565b611eb96122f2565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611628565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613ba9565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b611f526122f2565b73ffffffffffffffffffffffffffffffffffffffff16611f70611628565b73ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613ba9565b60405180910390fd5b6001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061203190614047565b919050555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b6120f56122f2565b73ffffffffffffffffffffffffffffffffffffffff16612113611628565b73ffffffffffffffffffffffffffffffffffffffff1614612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613a49565b60405180910390fd5b6121e2816127fe565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661236d8361138a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123be82612286565b6123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490613ae9565b60405180910390fd5b60006124088361138a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247757508373ffffffffffffffffffffffffffffffffffffffff1661245f84610a2d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248857506124878185612039565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124b18261138a565b73ffffffffffffffffffffffffffffffffffffffff1614612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613aa9565b60405180910390fd5b612582838383612b7d565b61258d6000826122fa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125dd9190613ee8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126349190613e07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126f88261138a565b905061270681600084612b7d565b6127116000836122fa565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127619190613ee8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128de828260405180602001604052806000815250612b82565b5050565b6128ed848484612491565b6128f984848484612bdd565b612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90613a29565b60405180910390fd5b50505050565b6060600f805461294d90613fe4565b80601f016020809104026020016040519081016040528092919081815260200182805461297990613fe4565b80156129c65780601f1061299b576101008083540402835291602001916129c6565b820191906000526020600020905b8154815290600101906020018083116129a957829003601f168201915b5050505050905090565b60606000821415612a18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b78565b600082905060005b60008214612a4a578080612a3390614047565b915050600a82612a439190613e5d565b9150612a20565b60008167ffffffffffffffff811115612a8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abe5781602001600182028036833780820191505090505b5090505b60008514612b7157600182612ad79190613ee8565b9150600a85612ae69190614090565b6030612af29190613e07565b60f81b818381518110612b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b6a9190613e5d565b9450612ac2565b8093505050505b919050565b505050565b612b8c8383612d74565b612b996000848484612bdd565b612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf90613a29565b60405180910390fd5b505050565b6000612bfe8473ffffffffffffffffffffffffffffffffffffffff16612209565b15612d67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c276122f2565b8786866040518563ffffffff1660e01b8152600401612c499493929190613915565b602060405180830381600087803b158015612c6357600080fd5b505af1925050508015612c9457506040513d601f19601f82011682018060405250810190612c91919061336a565b60015b612d17573d8060008114612cc4576040519150601f19603f3d011682016040523d82523d6000602084013e612cc9565b606091505b50600081511415612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690613a29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90613b69565b60405180910390fd5b612ded81612286565b15612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490613a69565b60405180910390fd5b612e3960008383612b7d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e899190613e07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f4e90613fe4565b90600052602060002090601f016020900481019282612f705760008555612fb7565b82601f10612f8957805160ff1916838001178555612fb7565b82800160010185558215612fb7579182015b82811115612fb6578251825591602001919060010190612f9b565b5b509050612fc49190612fc8565b5090565b5b80821115612fe1576000816000905550600101612fc9565b5090565b6000612ff8612ff384613d29565b613d04565b90508281526020810184848401111561301057600080fd5b61301b848285613fa2565b509392505050565b600061303661303184613d5a565b613d04565b90508281526020810184848401111561304e57600080fd5b613059848285613fa2565b509392505050565b60008135905061307081614754565b92915050565b6000813590506130858161476b565b92915050565b60008151905061309a8161476b565b92915050565b6000813590506130af81614782565b92915050565b6000815190506130c481614782565b92915050565b600082601f8301126130db57600080fd5b81356130eb848260208601612fe5565b91505092915050565b60008135905061310381614799565b92915050565b600082601f83011261311a57600080fd5b813561312a848260208601613023565b91505092915050565b600081359050613142816147b0565b92915050565b60006020828403121561315a57600080fd5b600061316884828501613061565b91505092915050565b6000806040838503121561318457600080fd5b600061319285828601613061565b92505060206131a385828601613061565b9150509250929050565b6000806000606084860312156131c257600080fd5b60006131d086828701613061565b93505060206131e186828701613061565b92505060406131f286828701613133565b9150509250925092565b6000806000806080858703121561321257600080fd5b600061322087828801613061565b945050602061323187828801613061565b935050604061324287828801613133565b925050606085013567ffffffffffffffff81111561325f57600080fd5b61326b878288016130ca565b91505092959194509250565b6000806040838503121561328a57600080fd5b600061329885828601613061565b92505060206132a985828601613076565b9150509250929050565b600080604083850312156132c657600080fd5b60006132d485828601613061565b92505060206132e585828601613133565b9150509250929050565b60006020828403121561330157600080fd5b600061330f84828501613076565b91505092915050565b60006020828403121561332a57600080fd5b60006133388482850161308b565b91505092915050565b60006020828403121561335357600080fd5b6000613361848285016130a0565b91505092915050565b60006020828403121561337c57600080fd5b600061338a848285016130b5565b91505092915050565b600080604083850312156133a657600080fd5b60006133b4858286016130f4565b92505060206133c585828601613133565b9150509250929050565b6000602082840312156133e157600080fd5b600082013567ffffffffffffffff8111156133fb57600080fd5b61340784828501613109565b91505092915050565b60006020828403121561342257600080fd5b600061343084828501613133565b91505092915050565b600061344583836138b8565b60208301905092915050565b61345a81613f1c565b82525050565b600061346b82613d9b565b6134758185613dc9565b935061348083613d8b565b8060005b838110156134b15781516134988882613439565b97506134a383613dbc565b925050600181019050613484565b5085935050505092915050565b6134c781613f2e565b82525050565b60006134d882613da6565b6134e28185613dda565b93506134f2818560208601613fb1565b6134fb8161417d565b840191505092915050565b600061351182613db1565b61351b8185613deb565b935061352b818560208601613fb1565b6135348161417d565b840191505092915050565b600061354a82613db1565b6135548185613dfc565b9350613564818560208601613fb1565b80840191505092915050565b600061357d601b83613deb565b91506135888261418e565b602082019050919050565b60006135a0601f83613deb565b91506135ab826141b7565b602082019050919050565b60006135c3603283613deb565b91506135ce826141e0565b604082019050919050565b60006135e6602683613deb565b91506135f18261422f565b604082019050919050565b6000613609601c83613deb565b91506136148261427e565b602082019050919050565b600061362c601283613deb565b9150613637826142a7565b602082019050919050565b600061364f602483613deb565b915061365a826142d0565b604082019050919050565b6000613672601983613deb565b915061367d8261431f565b602082019050919050565b6000613695602c83613deb565b91506136a082614348565b604082019050919050565b60006136b8603883613deb565b91506136c382614397565b604082019050919050565b60006136db602a83613deb565b91506136e6826143e6565b604082019050919050565b60006136fe602983613deb565b915061370982614435565b604082019050919050565b6000613721602083613deb565b915061372c82614484565b602082019050919050565b6000613744602c83613deb565b915061374f826144ad565b604082019050919050565b6000613767602083613deb565b9150613772826144fc565b602082019050919050565b600061378a602983613deb565b915061379582614525565b604082019050919050565b60006137ad602f83613deb565b91506137b882614574565b604082019050919050565b60006137d0601383613deb565b91506137db826145c3565b602082019050919050565b60006137f3601983613deb565b91506137fe826145ec565b602082019050919050565b6000613816601183613deb565b915061382182614615565b602082019050919050565b6000613839602183613deb565b91506138448261463e565b604082019050919050565b600061385c603183613deb565b91506138678261468d565b604082019050919050565b600061387f601583613deb565b915061388a826146dc565b602082019050919050565b60006138a2603083613deb565b91506138ad82614705565b604082019050919050565b6138c181613f98565b82525050565b6138d081613f98565b82525050565b60006138e2828561353f565b91506138ee828461353f565b91508190509392505050565b600060208201905061390f6000830184613451565b92915050565b600060808201905061392a6000830187613451565b6139376020830186613451565b61394460408301856138c7565b818103606083015261395681846134cd565b905095945050505050565b60006040820190506139766000830185613451565b61398360208301846138c7565b9392505050565b600060208201905081810360008301526139a48184613460565b905092915050565b60006020820190506139c160008301846134be565b92915050565b600060208201905081810360008301526139e18184613506565b905092915050565b60006020820190508181036000830152613a0281613570565b9050919050565b60006020820190508181036000830152613a2281613593565b9050919050565b60006020820190508181036000830152613a42816135b6565b9050919050565b60006020820190508181036000830152613a62816135d9565b9050919050565b60006020820190508181036000830152613a82816135fc565b9050919050565b60006020820190508181036000830152613aa28161361f565b9050919050565b60006020820190508181036000830152613ac281613642565b9050919050565b60006020820190508181036000830152613ae281613665565b9050919050565b60006020820190508181036000830152613b0281613688565b9050919050565b60006020820190508181036000830152613b22816136ab565b9050919050565b60006020820190508181036000830152613b42816136ce565b9050919050565b60006020820190508181036000830152613b62816136f1565b9050919050565b60006020820190508181036000830152613b8281613714565b9050919050565b60006020820190508181036000830152613ba281613737565b9050919050565b60006020820190508181036000830152613bc28161375a565b9050919050565b60006020820190508181036000830152613be28161377d565b9050919050565b60006020820190508181036000830152613c02816137a0565b9050919050565b60006020820190508181036000830152613c22816137c3565b9050919050565b60006020820190508181036000830152613c42816137e6565b9050919050565b60006020820190508181036000830152613c6281613809565b9050919050565b60006020820190508181036000830152613c828161382c565b9050919050565b60006020820190508181036000830152613ca28161384f565b9050919050565b60006020820190508181036000830152613cc281613872565b9050919050565b60006020820190508181036000830152613ce281613895565b9050919050565b6000602082019050613cfe60008301846138c7565b92915050565b6000613d0e613d1f565b9050613d1a8282614016565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4457613d4361414e565b5b613d4d8261417d565b9050602081019050919050565b600067ffffffffffffffff821115613d7557613d7461414e565b5b613d7e8261417d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1282613f98565b9150613e1d83613f98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5257613e516140c1565b5b828201905092915050565b6000613e6882613f98565b9150613e7383613f98565b925082613e8357613e826140f0565b5b828204905092915050565b6000613e9982613f98565b9150613ea483613f98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613edd57613edc6140c1565b5b828202905092915050565b6000613ef382613f98565b9150613efe83613f98565b925082821015613f1157613f106140c1565b5b828203905092915050565b6000613f2782613f78565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f7182613f1c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fcf578082015181840152602081019050613fb4565b83811115613fde576000848401525b50505050565b60006002820490506001821680613ffc57607f821691505b602082108114156140105761400f61411f565b5b50919050565b61401f8261417d565b810181811067ffffffffffffffff8211171561403e5761403d61414e565b5b80604052505050565b600061405282613f98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614085576140846140c1565b5b600182019050919050565b600061409b82613f98565b91506140a683613f98565b9250826140b6576140b56140f0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656c696769626c6520666f722077686974656c6973742e0000000000600082015250565b7f45786365656473206d6178206d696e7420666f722077686974656c6973742e00600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072696365206e6f7420636f72726563742e0000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f45786365656473206d6178206d696e742e000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f74206f6e207468652077686974656c6973742e0000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61475d81613f1c565b811461476857600080fd5b50565b61477481613f2e565b811461477f57600080fd5b50565b61478b81613f3a565b811461479657600080fd5b50565b6147a281613f66565b81146147ad57600080fd5b50565b6147b981613f98565b81146147c457600080fd5b5056fea2646970667358221220ec951cca5ce54aa69e766dc8d8014d40b75a84d2bb03608e66783917a9154f1164736f6c63430008040033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806370a0823111610123578063a22cb465116100ab578063ca7ce3ec1161006f578063ca7ce3ec146107ac578063e43252d7146107d5578063e985e9c5146107fe578063eb73900b1461083b578063f2fde38b1461087857610225565b8063a22cb465146106c7578063ab0bcc41146106f0578063b88d4fde1461071b578063bf0d96c314610744578063c87b56dd1461076f57610225565b806391b7f5ed116100f257806391b7f5ed1461060557806395d89b411461062e5780639727151a14610659578063a0712d6814610682578063a0bcfc7f1461069e57610225565b806370a082311461055b578063715018a61461059857806382554489146105af5780638da5cb5b146105da57610225565b8063379c5131116101a657806342966c681161017557806342966c68146104665780634f558e791461048f57806350ce044a146104cc5780636352211e146104f55780636c9119181461053257610225565b8063379c5131146103cb5780633ccfd60b146104085780633d9287fa1461041257806342842e0e1461043d57610225565b8063095ea7b3116101ed578063095ea7b31461030c57806318160ddd146103355780631d1468d41461036057806323b872dd1461037757806331ffd6f1146103a057610225565b806301ffc9a71461022a578063039924d01461026757806306fdde03146102a4578063081812fc146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613341565b6108a1565b60405161025e91906139ac565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613148565b610983565b60405161029b9190613ce9565b60405180910390f35b3480156102b057600080fd5b506102b961099b565b6040516102c691906139c7565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613410565b610a2d565b60405161030391906138fa565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e91906132b3565b610ab2565b005b34801561034157600080fd5b5061034a610bca565b6040516103579190613ce9565b60405180910390f35b34801561036c57600080fd5b50610375610bdb565b005b34801561038357600080fd5b5061039e600480360381019061039991906131ad565b610d0e565b005b3480156103ac57600080fd5b506103b5610d6e565b6040516103c291906139ac565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613148565b610d81565b6040516103ff919061398a565b60405180910390f35b610410610f64565b005b34801561041e57600080fd5b5061042761125d565b6040516104349190613ce9565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906131ad565b611263565b005b34801561047257600080fd5b5061048d60048036038101906104889190613410565b611283565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613410565b6112df565b6040516104c391906139ac565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906132ef565b6112f1565b005b34801561050157600080fd5b5061051c60048036038101906105179190613410565b61138a565b60405161052991906138fa565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906132ef565b61143c565b005b34801561056757600080fd5b50610582600480360381019061057d9190613148565b6114d5565b60405161058f9190613ce9565b60405180910390f35b3480156105a457600080fd5b506105ad61158d565b005b3480156105bb57600080fd5b506105c4611615565b6040516105d191906139ac565b60405180910390f35b3480156105e657600080fd5b506105ef611628565b6040516105fc91906138fa565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613410565b611652565b005b34801561063a57600080fd5b506106436116d8565b60405161065091906139c7565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613393565b61176a565b005b61069c60048036038101906106979190613410565b611878565b005b3480156106aa57600080fd5b506106c560048036038101906106c091906133cf565b611b78565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613277565b611c0e565b005b3480156106fc57600080fd5b50610705611d8f565b60405161071291906139ac565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906131fc565b611da2565b005b34801561075057600080fd5b50610759611e04565b6040516107669190613ce9565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613410565b611e0a565b6040516107a391906139c7565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906132ef565b611eb1565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613148565b611f4a565b005b34801561080a57600080fd5b5061082560048036038101906108209190613171565b612039565b60405161083291906139ac565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613148565b6120cd565b60405161086f91906139ac565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a9190613148565b6120ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097c575061097b8261221c565b5b9050919050565b60176020528060005260406000206000915090505481565b6060600080546109aa90613fe4565b80601f01602080910402602001604051908101604052809291908181526020018280546109d690613fe4565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b5050505050905090565b6000610a3882612286565b610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90613b89565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abd8261138a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613c69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4d6122f2565b73ffffffffffffffffffffffffffffffffffffffff161480610b7c5750610b7b81610b766122f2565b612039565b5b610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613b09565b60405180910390fd5b610bc583836122fa565b505050565b6000610bd660076121fb565b905090565b600a60029054906101000a900460ff168015610c075750600b546001600c54610c049190613e07565b11155b8015610c5d5750601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906139e9565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c6000815480929190610d0790614047565b9190505550565b610d1f610d196122f2565b826123b3565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613c89565b60405180910390fd5b610d69838383612491565b505050565b600a60019054906101000a900460ff1681565b60606000610d8e836114d5565b90506000811415610e1157600067ffffffffffffffff811115610dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e085781602001602082028036833780820191505090505b50915050610f5f565b60008167ffffffffffffffff811115610e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610e815781602001602082028036833780820191505090505b5090506000610e9060076121fb565b9050600080600190505b828111610f5657610eaa81612286565b8015610ee957508673ffffffffffffffffffffffffffffffffffffffff16610ed18261138a565b73ffffffffffffffffffffffffffffffffffffffff16145b15610f435780848381518110610f28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610f3f90614047565b9250505b8080610f4e90614047565b915050610e9a565b50829450505050505b919050565b610f6c6122f2565b73ffffffffffffffffffffffffffffffffffffffff16610f8a611628565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613ba9565b60405180910390fd5b60006064602147610ff19190613e8e565b610ffb9190613e5d565b905060006005824761100d9190613ee8565b6110179190613e5d565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061107957600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506110d957600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061113957600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061119957600080fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506111f957600080fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061125957600080fd5b5050565b600c5481565b61127e83838360405180602001604052806000815250611da2565b505050565b61129461128e6122f2565b826123b3565b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613cc9565b60405180910390fd5b6112dc816126ed565b50565b60006112ea82612286565b9050919050565b6112f96122f2565b73ffffffffffffffffffffffffffffffffffffffff16611317611628565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613ba9565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613b49565b60405180910390fd5b80915050919050565b6114446122f2565b73ffffffffffffffffffffffffffffffffffffffff16611462611628565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613ba9565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613b29565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115956122f2565b73ffffffffffffffffffffffffffffffffffffffff166115b3611628565b73ffffffffffffffffffffffffffffffffffffffff1614611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090613ba9565b60405180910390fd5b61161360006127fe565b565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61165a6122f2565b73ffffffffffffffffffffffffffffffffffffffff16611678611628565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613ba9565b60405180910390fd5b8060088190555050565b6060600180546116e790613fe4565b80601f016020809104026020016040519081016040528092919081815260200182805461171390613fe4565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726122f2565b73ffffffffffffffffffffffffffffffffffffffff16611790611628565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613ba9565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611821929190613961565b602060405180830381600087803b15801561183b57600080fd5b505af115801561184f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118739190613318565b505050565b600a60009054906101000a900460ff166118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613c29565b60405180910390fd5b34816008546118d69190613e8e565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613a89565b60405180910390fd5b60095481611923610bca565b61192d9190613e07565b111561196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613c09565b60405180910390fd5b600d548111156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613c49565b60405180910390fd5b600a60019054906101000a900460ff1615611ae457601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613ca9565b60405180910390fd5b600e5481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aa29190613e07565b1115611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613a09565b60405180910390fd5b5b60005b81811015611b7457611af960076121e5565b611b0c33611b0760076121fb565b6128c4565b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b5c90614047565b91905055508080611b6c90614047565b915050611ae7565b5050565b611b806122f2565b73ffffffffffffffffffffffffffffffffffffffff16611b9e611628565b73ffffffffffffffffffffffffffffffffffffffff1614611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613ba9565b60405180910390fd5b80600f9080519060200190611c0a929190612f42565b5050565b611c166122f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613ac9565b60405180910390fd5b8060056000611c916122f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3e6122f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8391906139ac565b60405180910390a35050565b600a60009054906101000a900460ff1681565b611db3611dad6122f2565b836123b3565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613c89565b60405180910390fd5b611dfe848484846128e2565b50505050565b600b5481565b6060611e1582612286565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90613be9565b60405180910390fd5b6000611e5e61293e565b90506000815111611e7e5760405180602001604052806000815250611ea9565b80611e88846129d0565b604051602001611e999291906138d6565b6040516020818303038152906040525b915050919050565b611eb96122f2565b73ffffffffffffffffffffffffffffffffffffffff16611ed7611628565b73ffffffffffffffffffffffffffffffffffffffff1614611f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2490613ba9565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b611f526122f2565b73ffffffffffffffffffffffffffffffffffffffff16611f70611628565b73ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613ba9565b60405180910390fd5b6001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061203190614047565b919050555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b6120f56122f2565b73ffffffffffffffffffffffffffffffffffffffff16612113611628565b73ffffffffffffffffffffffffffffffffffffffff1614612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613a49565b60405180910390fd5b6121e2816127fe565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661236d8361138a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123be82612286565b6123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490613ae9565b60405180910390fd5b60006124088361138a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247757508373ffffffffffffffffffffffffffffffffffffffff1661245f84610a2d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248857506124878185612039565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124b18261138a565b73ffffffffffffffffffffffffffffffffffffffff1614612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe90613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613aa9565b60405180910390fd5b612582838383612b7d565b61258d6000826122fa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125dd9190613ee8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126349190613e07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006126f88261138a565b905061270681600084612b7d565b6127116000836122fa565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127619190613ee8565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128de828260405180602001604052806000815250612b82565b5050565b6128ed848484612491565b6128f984848484612bdd565b612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90613a29565b60405180910390fd5b50505050565b6060600f805461294d90613fe4565b80601f016020809104026020016040519081016040528092919081815260200182805461297990613fe4565b80156129c65780601f1061299b576101008083540402835291602001916129c6565b820191906000526020600020905b8154815290600101906020018083116129a957829003601f168201915b5050505050905090565b60606000821415612a18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b78565b600082905060005b60008214612a4a578080612a3390614047565b915050600a82612a439190613e5d565b9150612a20565b60008167ffffffffffffffff811115612a8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abe5781602001600182028036833780820191505090505b5090505b60008514612b7157600182612ad79190613ee8565b9150600a85612ae69190614090565b6030612af29190613e07565b60f81b818381518110612b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b6a9190613e5d565b9450612ac2565b8093505050505b919050565b505050565b612b8c8383612d74565b612b996000848484612bdd565b612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf90613a29565b60405180910390fd5b505050565b6000612bfe8473ffffffffffffffffffffffffffffffffffffffff16612209565b15612d67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c276122f2565b8786866040518563ffffffff1660e01b8152600401612c499493929190613915565b602060405180830381600087803b158015612c6357600080fd5b505af1925050508015612c9457506040513d601f19601f82011682018060405250810190612c91919061336a565b60015b612d17573d8060008114612cc4576040519150601f19603f3d011682016040523d82523d6000602084013e612cc9565b606091505b50600081511415612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690613a29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90613b69565b60405180910390fd5b612ded81612286565b15612e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2490613a69565b60405180910390fd5b612e3960008383612b7d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e899190613e07565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612f4e90613fe4565b90600052602060002090601f016020900481019282612f705760008555612fb7565b82601f10612f8957805160ff1916838001178555612fb7565b82800160010185558215612fb7579182015b82811115612fb6578251825591602001919060010190612f9b565b5b509050612fc49190612fc8565b5090565b5b80821115612fe1576000816000905550600101612fc9565b5090565b6000612ff8612ff384613d29565b613d04565b90508281526020810184848401111561301057600080fd5b61301b848285613fa2565b509392505050565b600061303661303184613d5a565b613d04565b90508281526020810184848401111561304e57600080fd5b613059848285613fa2565b509392505050565b60008135905061307081614754565b92915050565b6000813590506130858161476b565b92915050565b60008151905061309a8161476b565b92915050565b6000813590506130af81614782565b92915050565b6000815190506130c481614782565b92915050565b600082601f8301126130db57600080fd5b81356130eb848260208601612fe5565b91505092915050565b60008135905061310381614799565b92915050565b600082601f83011261311a57600080fd5b813561312a848260208601613023565b91505092915050565b600081359050613142816147b0565b92915050565b60006020828403121561315a57600080fd5b600061316884828501613061565b91505092915050565b6000806040838503121561318457600080fd5b600061319285828601613061565b92505060206131a385828601613061565b9150509250929050565b6000806000606084860312156131c257600080fd5b60006131d086828701613061565b93505060206131e186828701613061565b92505060406131f286828701613133565b9150509250925092565b6000806000806080858703121561321257600080fd5b600061322087828801613061565b945050602061323187828801613061565b935050604061324287828801613133565b925050606085013567ffffffffffffffff81111561325f57600080fd5b61326b878288016130ca565b91505092959194509250565b6000806040838503121561328a57600080fd5b600061329885828601613061565b92505060206132a985828601613076565b9150509250929050565b600080604083850312156132c657600080fd5b60006132d485828601613061565b92505060206132e585828601613133565b9150509250929050565b60006020828403121561330157600080fd5b600061330f84828501613076565b91505092915050565b60006020828403121561332a57600080fd5b60006133388482850161308b565b91505092915050565b60006020828403121561335357600080fd5b6000613361848285016130a0565b91505092915050565b60006020828403121561337c57600080fd5b600061338a848285016130b5565b91505092915050565b600080604083850312156133a657600080fd5b60006133b4858286016130f4565b92505060206133c585828601613133565b9150509250929050565b6000602082840312156133e157600080fd5b600082013567ffffffffffffffff8111156133fb57600080fd5b61340784828501613109565b91505092915050565b60006020828403121561342257600080fd5b600061343084828501613133565b91505092915050565b600061344583836138b8565b60208301905092915050565b61345a81613f1c565b82525050565b600061346b82613d9b565b6134758185613dc9565b935061348083613d8b565b8060005b838110156134b15781516134988882613439565b97506134a383613dbc565b925050600181019050613484565b5085935050505092915050565b6134c781613f2e565b82525050565b60006134d882613da6565b6134e28185613dda565b93506134f2818560208601613fb1565b6134fb8161417d565b840191505092915050565b600061351182613db1565b61351b8185613deb565b935061352b818560208601613fb1565b6135348161417d565b840191505092915050565b600061354a82613db1565b6135548185613dfc565b9350613564818560208601613fb1565b80840191505092915050565b600061357d601b83613deb565b91506135888261418e565b602082019050919050565b60006135a0601f83613deb565b91506135ab826141b7565b602082019050919050565b60006135c3603283613deb565b91506135ce826141e0565b604082019050919050565b60006135e6602683613deb565b91506135f18261422f565b604082019050919050565b6000613609601c83613deb565b91506136148261427e565b602082019050919050565b600061362c601283613deb565b9150613637826142a7565b602082019050919050565b600061364f602483613deb565b915061365a826142d0565b604082019050919050565b6000613672601983613deb565b915061367d8261431f565b602082019050919050565b6000613695602c83613deb565b91506136a082614348565b604082019050919050565b60006136b8603883613deb565b91506136c382614397565b604082019050919050565b60006136db602a83613deb565b91506136e6826143e6565b604082019050919050565b60006136fe602983613deb565b915061370982614435565b604082019050919050565b6000613721602083613deb565b915061372c82614484565b602082019050919050565b6000613744602c83613deb565b915061374f826144ad565b604082019050919050565b6000613767602083613deb565b9150613772826144fc565b602082019050919050565b600061378a602983613deb565b915061379582614525565b604082019050919050565b60006137ad602f83613deb565b91506137b882614574565b604082019050919050565b60006137d0601383613deb565b91506137db826145c3565b602082019050919050565b60006137f3601983613deb565b91506137fe826145ec565b602082019050919050565b6000613816601183613deb565b915061382182614615565b602082019050919050565b6000613839602183613deb565b91506138448261463e565b604082019050919050565b600061385c603183613deb565b91506138678261468d565b604082019050919050565b600061387f601583613deb565b915061388a826146dc565b602082019050919050565b60006138a2603083613deb565b91506138ad82614705565b604082019050919050565b6138c181613f98565b82525050565b6138d081613f98565b82525050565b60006138e2828561353f565b91506138ee828461353f565b91508190509392505050565b600060208201905061390f6000830184613451565b92915050565b600060808201905061392a6000830187613451565b6139376020830186613451565b61394460408301856138c7565b818103606083015261395681846134cd565b905095945050505050565b60006040820190506139766000830185613451565b61398360208301846138c7565b9392505050565b600060208201905081810360008301526139a48184613460565b905092915050565b60006020820190506139c160008301846134be565b92915050565b600060208201905081810360008301526139e18184613506565b905092915050565b60006020820190508181036000830152613a0281613570565b9050919050565b60006020820190508181036000830152613a2281613593565b9050919050565b60006020820190508181036000830152613a42816135b6565b9050919050565b60006020820190508181036000830152613a62816135d9565b9050919050565b60006020820190508181036000830152613a82816135fc565b9050919050565b60006020820190508181036000830152613aa28161361f565b9050919050565b60006020820190508181036000830152613ac281613642565b9050919050565b60006020820190508181036000830152613ae281613665565b9050919050565b60006020820190508181036000830152613b0281613688565b9050919050565b60006020820190508181036000830152613b22816136ab565b9050919050565b60006020820190508181036000830152613b42816136ce565b9050919050565b60006020820190508181036000830152613b62816136f1565b9050919050565b60006020820190508181036000830152613b8281613714565b9050919050565b60006020820190508181036000830152613ba281613737565b9050919050565b60006020820190508181036000830152613bc28161375a565b9050919050565b60006020820190508181036000830152613be28161377d565b9050919050565b60006020820190508181036000830152613c02816137a0565b9050919050565b60006020820190508181036000830152613c22816137c3565b9050919050565b60006020820190508181036000830152613c42816137e6565b9050919050565b60006020820190508181036000830152613c6281613809565b9050919050565b60006020820190508181036000830152613c828161382c565b9050919050565b60006020820190508181036000830152613ca28161384f565b9050919050565b60006020820190508181036000830152613cc281613872565b9050919050565b60006020820190508181036000830152613ce281613895565b9050919050565b6000602082019050613cfe60008301846138c7565b92915050565b6000613d0e613d1f565b9050613d1a8282614016565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4457613d4361414e565b5b613d4d8261417d565b9050602081019050919050565b600067ffffffffffffffff821115613d7557613d7461414e565b5b613d7e8261417d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1282613f98565b9150613e1d83613f98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5257613e516140c1565b5b828201905092915050565b6000613e6882613f98565b9150613e7383613f98565b925082613e8357613e826140f0565b5b828204905092915050565b6000613e9982613f98565b9150613ea483613f98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613edd57613edc6140c1565b5b828202905092915050565b6000613ef382613f98565b9150613efe83613f98565b925082821015613f1157613f106140c1565b5b828203905092915050565b6000613f2782613f78565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613f7182613f1c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fcf578082015181840152602081019050613fb4565b83811115613fde576000848401525b50505050565b60006002820490506001821680613ffc57607f821691505b602082108114156140105761400f61411f565b5b50919050565b61401f8261417d565b810181811067ffffffffffffffff8211171561403e5761403d61414e565b5b80604052505050565b600061405282613f98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614085576140846140c1565b5b600182019050919050565b600061409b82613f98565b91506140a683613f98565b9250826140b6576140b56140f0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656c696769626c6520666f722077686974656c6973742e0000000000600082015250565b7f45786365656473206d6178206d696e7420666f722077686974656c6973742e00600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072696365206e6f7420636f72726563742e0000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f45786365656473206d6178206d696e742e000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f74206f6e207468652077686974656c6973742e0000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61475d81613f1c565b811461476857600080fd5b50565b61477481613f2e565b811461477f57600080fd5b50565b61478b81613f3a565b811461479657600080fd5b50565b6147a281613f66565b81146147ad57600080fd5b50565b6147b981613f98565b81146147c457600080fd5b5056fea2646970667358221220ec951cca5ce54aa69e766dc8d8014d40b75a84d2bb03608e66783917a9154f1164736f6c63430008040033

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.