ETH Price: $2,357.45 (+0.70%)

Token

PizzaPuffers (ZAPUFS)
 

Overview

Max Total Supply

179 ZAPUFS

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ZAPUFS
0x957f8e6ad17233f57a06d1bc42f17f606121b42b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PizzaPuffers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PizzaPuffers.sol
//SPDX-License-Identifier: BSD 
pragma solidity ^0.8.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/////////////////////////////////////

contract PizzaPuffers is ERC721A, Ownable, ReentrancyGuard {
    uint16 public constant MAX_TOTAL_TOKENS = 5555;

    uint16 public constant MAX_OG_TOKENS = 1000;
    uint16 public constant MAX_WL_TOKENS = 2000;

    uint16 public constant MAX_OG_FREE_TOKENS = 400;
    uint16 public constant MAX_WL_FREE_TOKENS = 100;
    uint16 public constant MAX_TOTAL_FREE_TOKENS = MAX_OG_FREE_TOKENS + MAX_WL_FREE_TOKENS;

    // same slot
    uint16 public constant OG_MINT_DURATION = 60*30; // 30 minutes 
    uint16 public constant WL_MINT_DURATION = 60*60; // 60 minutes 

    uint256 public constant MAX_OG_MINTS_PER_WALLET = 2;
    uint256 public constant MAX_WL_MINTS_PER_WALLET = 2;

    // prices
    uint256 public constant MINT_PRICE_OG = 0.055 ether;
    uint256 public constant MINT_PRICE_WL = 0.066 ether;
    uint256 public constant MINT_PRICE_PUBLIC = 0.077 ether;
    // end constants

    // writer: contract
    // reader: contract
    mapping (address => bool) private __has_minted_free;
    uint16 private __og_free_claimed;
    uint16 private __wl_free_claimed;

    uint16 private __total_og_claimed;
    mapping (address => uint8) private __n_og_minted;

    uint16 private __total_wl_claimed;
    mapping (address => uint8) private __n_wl_minted;

    // writer: owner
    // reader: contract 
    uint256 private _mint_start;
    bytes32 private _merkle_root_og;
    bytes32 private _merkle_root_wl;
    bool private _halt_mint = true;
    bool private _is_revealed;
    string private _URI;

    constructor() public ERC721A("PizzaPuffers", "ZAPUFS") payable {}

    function mint_og(uint256 quantity, bytes32[] memory proof) internal {
        // are on the OG list
        require(MerkleProof.verify(proof, _merkle_root_og, keccak256(abi.encodePacked(msg.sender))), "u!WL"); 

        // not minting too much
        require(quantity <= MAX_OG_MINTS_PER_WALLET, ">quantity");

        // need to have enough ETH to mint
        require(quantity*MINT_PRICE_OG == msg.value, "$ETH<");

        // per user check
        require((__n_og_minted[msg.sender] + quantity) <= MAX_OG_MINTS_PER_WALLET, "overminting"); 

        // global mint check
        require((__total_og_claimed + quantity) <= MAX_OG_TOKENS, "overminting:supply");

        // free eligibility
        if ((__has_minted_free[msg.sender] == false) && ((__og_free_claimed + 1) <= MAX_OG_FREE_TOKENS)) {
            require((__og_free_claimed + 1) <= MAX_OG_FREE_TOKENS, "over free total.");

            unchecked{
                __og_free_claimed++;
            }
            __has_minted_free[msg.sender] = true;

            // refund one tokens value
            (bool sent, ) = payable(msg.sender).call{value: MINT_PRICE_OG}("");
            require(sent, "!refund");
        }

        // increment
        unchecked {
            // per user bought
            __n_og_minted[msg.sender] += uint8(quantity);

            // global minted
            __total_og_claimed += uint16(quantity);
        }

        _safeMint(msg.sender, quantity);
    } 

    function mint_wl(uint256 quantity, bytes32[] memory proof) internal {
        // are on the wl
        require(MerkleProof.verify(proof, _merkle_root_wl, keccak256(abi.encodePacked(msg.sender))), "u!WL"); 

        // not minting too much
        require(quantity <= MAX_WL_MINTS_PER_WALLET, ">quantity");

        // need to have enough ETH to mint
        require(quantity*MINT_PRICE_WL == msg.value, "$ETH<");

        // per user check
        require((__n_wl_minted[msg.sender] + quantity) <= MAX_WL_MINTS_PER_WALLET, "overminting"); 

        // global mint check
        require((__total_wl_claimed + quantity) <= MAX_WL_TOKENS, "overminting:supply");

        // free eligibility
        if ((__has_minted_free[msg.sender] == false) && ((__og_free_claimed + __wl_free_claimed + 1) <= MAX_TOTAL_FREE_TOKENS)) {
            require((__og_free_claimed + __wl_free_claimed + 1) <= MAX_TOTAL_FREE_TOKENS, "over free total.");

            unchecked{
                __wl_free_claimed++;
            }
            __has_minted_free[msg.sender] = true;

            // refund one tokens value
            (bool sent, ) = payable(msg.sender).call{value: MINT_PRICE_WL}("");
            require(sent, "!refund");
        }

        // increment
        unchecked {
            // per user bought
            __n_wl_minted[msg.sender] = __n_wl_minted[msg.sender] + uint8(quantity);

            // global minted
            __total_wl_claimed = __total_wl_claimed + uint16(quantity);
        }

        _safeMint(msg.sender, quantity);
    } 

    function mint_public(uint256 quantity) internal {
        // its the public mint
        require(quantity * MINT_PRICE_PUBLIC == msg.value, "$ETH<"); 

        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity, bytes32[] memory proof) external payable nonReentrant {
        require(_halt_mint == false, "Halted");

        require(quantity > 0, "q<0");
        require(quantity < 10, "q>9");

        require((totalSupply() + quantity) <= MAX_TOTAL_TOKENS, ">maxTokens");

        require(_mint_start != 0, "!r:E0");
        require(block.timestamp >= _mint_start, "!r:E1");

        // og mint
        // [T, T+Xmin) 
        if ((block.timestamp >= _mint_start) && (block.timestamp < (_mint_start + OG_MINT_DURATION))) {
            require(proof.length > 0, "!p");
            mint_og(quantity, proof);    
            return;
        }

        // wl mint
        // [T+Xmin, T+Xmin+Ymin) 
        if ((block.timestamp >= (_mint_start + OG_MINT_DURATION)) && (block.timestamp < (_mint_start + OG_MINT_DURATION + WL_MINT_DURATION))) {
            require(proof.length > 0, "!p");
            mint_wl(quantity, proof);
            return;
        }

        // public mint
        // [T+Xmin+Ymin, \inf+)
        mint_public(quantity);
    }

    function getMintInfo() public view virtual returns (uint8, uint256, uint256) {
        if ((block.timestamp >= _mint_start) && (block.timestamp < (_mint_start + OG_MINT_DURATION))) {
            return (1, MINT_PRICE_OG, totalSupply());
        }

        if ((block.timestamp >= (_mint_start + OG_MINT_DURATION)) && (block.timestamp < (_mint_start + OG_MINT_DURATION + WL_MINT_DURATION))) {
            return (2, MINT_PRICE_WL, totalSupply());
        }

        if (block.timestamp >= (_mint_start + OG_MINT_DURATION + WL_MINT_DURATION)) {
            return (3, MINT_PRICE_PUBLIC, totalSupply());
        }

        return (0, MINT_PRICE_PUBLIC, 0);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        // Include the token index if revealed
        if (_is_revealed) {
            require(_exists(tokenId), 'tokenId?');
            return string(abi.encodePacked(_URI, toString(tokenId)));
        } 

        // Otherwise return the URI
        return string(_URI);
    }

    /**
     * @dev Withdraw ether from this contract (Callable by owner)
    **/
    function withdraw() public onlyOwner() {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    //////////////////////////////////////////////////////////////////////////
    // Begin setter onlyOwner functions
    /**
     * @dev Set _mint_start
    **/
    function setMintStart(uint256 v) public onlyOwner() {
        _mint_start = v;
    }

    /**
     * @dev Set halt minting 
    */
    function setHaltMint(bool v) public onlyOwner() {
        _halt_mint = v;
    }

    /**
     * @dev Set merkle og root 
    */
    function setMerkleRootOG(bytes32 v) public onlyOwner() {
        _merkle_root_og = v;
    }

    /**
     * @dev Set merkle root wl 
    */
    function setMerkleRootWL(bytes32 v) public onlyOwner() {
        _merkle_root_wl = v;
    }

    /**
     * @dev Set URI 
    */
    function setURI(string memory v) public onlyOwner() {
        _URI = v;
    }

    /**
     * @dev Set reveal 
    */
    function setIsReveal(bool v) public onlyOwner() {
        _is_revealed = v;
    }
    // End setter onlyOwner functions
    //////////////////////////////////////////////////////////////////////////

    //////////////////////////////////////////////////////////////////////////
	// Begin util functions
	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);
	}
    // end util functions
    //////////////////////////////////////////////////////////////////////////
}

File 2 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 4 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 6 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 7 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_OG_FREE_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_FREE_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_FREE_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_MINT_DURATION","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_DURATION","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintInfo","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"v","type":"bool"}],"name":"setHaltMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"v","type":"bool"}],"name":"setIsReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"v","type":"bytes32"}],"name":"setMerkleRootOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"v","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"v","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001601160006101000a81548160ff0219169083151502179055506040518060400160405280600c81526020017f50697a7a615075666665727300000000000000000000000000000000000000008152506040518060400160405280600681526020017f5a415055465300000000000000000000000000000000000000000000000000008152508160019080519060200190620000a3929190620001bb565b508060029080519060200190620000bc929190620001bb565b505050620000df620000d3620000ed60201b60201c565b620000f560201b60201c565b6001600881905550620002d0565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c9906200026b565b90600052602060002090601f016020900481019282620001ed576000855562000239565b82601f106200020857805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002385782518255916020019190600101906200021b565b5b5090506200024891906200024c565b5090565b5b80821115620002675760008160009055506001016200024d565b5090565b600060028204905060018216806200028457607f821691505b602082108114156200029b576200029a620002a1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61588880620002e06000396000f3fe6080604052600436106102465760003560e01c80637622345f11610139578063b88d4fde116100b6578063d0520c231161007a578063d0520c231461085f578063dc875c991461088c578063e04f7ed7146108b7578063e4d2f45d146108e0578063e985e9c51461090b578063f2fde38b1461094857610246565b8063b88d4fde14610787578063ba41b0c6146107b0578063bdeadcb0146107cc578063c3151fed146107f7578063c87b56dd1461082257610246565b806395d89b41116100fd57806395d89b41146106b65780639c7415e3146106e1578063a22cb4651461070c578063a58fdc1114610735578063ad3e31b71461075e57610246565b80637622345f146105e15780637960c27f1461060c578063796e3330146106355780637df06077146106605780638da5cb5b1461068b57610246565b806339fc3ee3116101c7578063571d0ba81161018b578063571d0ba8146104fa578063611c4c81146105255780636352211e1461055057806370a082311461058d578063715018a6146105ca57610246565b806339fc3ee3146104295780633ccfd60b1461045457806342842e0e1461046b5780634f6ccce71461049457806352349f52146104d157610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d5780631fd09e131461039857806323b872dd146103c35780632f745c59146103ec57610246565b806301ffc9a71461024b57806302fe53051461028857806306fdde03146102b157806307fbaadb146102dc578063081812fc14610307575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613f6d565b610971565b60405161027f9190614df9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613fbf565b610abb565b005b3480156102bd57600080fd5b506102c6610b51565b6040516102d39190614e14565b60405180910390f35b3480156102e857600080fd5b506102f1610be3565b6040516102fe9190615291565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190614000565b610be8565b60405161033b9190614d92565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613edf565b610c6d565b005b34801561037957600080fd5b50610382610d86565b60405161038f9190615291565b60405180910390f35b3480156103a457600080fd5b506103ad610d8f565b6040516103ba9190615276565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613dd9565b610d95565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613edf565b610da5565b6040516104209190615291565b60405180910390f35b34801561043557600080fd5b5061043e610f97565b60405161044b9190615276565b60405180910390f35b34801561046057600080fd5b50610469610f9d565b005b34801561047757600080fd5b50610492600480360381019061048d9190613dd9565b611068565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190614000565b611088565b6040516104c89190615291565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613f1b565b6110db565b005b34801561050657600080fd5b5061050f611174565b60405161051c9190615291565b60405180910390f35b34801561053157600080fd5b5061053a61117f565b6040516105479190615276565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614000565b611185565b6040516105849190614d92565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613d74565b61119b565b6040516105c19190615291565b60405180910390f35b3480156105d657600080fd5b506105df611284565b005b3480156105ed57600080fd5b506105f661130c565b6040516106039190615291565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190614000565b611317565b005b34801561064157600080fd5b5061064a61139d565b6040516106579190615276565b60405180910390f35b34801561066c57600080fd5b506106756113a3565b6040516106829190615276565b60405180910390f35b34801561069757600080fd5b506106a06113a8565b6040516106ad9190614d92565b60405180910390f35b3480156106c257600080fd5b506106cb6113d2565b6040516106d89190614e14565b60405180910390f35b3480156106ed57600080fd5b506106f6611464565b6040516107039190615276565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613ea3565b611476565b005b34801561074157600080fd5b5061075c60048036038101906107579190613f44565b6115f7565b005b34801561076a57600080fd5b5061078560048036038101906107809190613f44565b61167d565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613e28565b611703565b005b6107ca60048036038101906107c59190614029565b61175f565b005b3480156107d857600080fd5b506107e1611a9f565b6040516107ee9190615276565b60405180910390f35b34801561080357600080fd5b5061080c611aa5565b6040516108199190615291565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614000565b611ab1565b6040516108569190614e14565b60405180910390f35b34801561086b57600080fd5b50610874611bd5565b604051610883939291906152ac565b60405180910390f35b34801561089857600080fd5b506108a1611cea565b6040516108ae9190615291565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190613f1b565b611cef565b005b3480156108ec57600080fd5b506108f5611d88565b6040516109029190615276565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613d9d565b611d8e565b60405161093f9190614df9565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613d74565b611e22565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab45750610ab382611f1a565b5b9050919050565b610ac3611f84565b73ffffffffffffffffffffffffffffffffffffffff16610ae16113a8565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90615056565b60405180910390fd5b8060129080519060200190610b4d929190613ab3565b5050565b606060018054610b609061562b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c9061562b565b8015610bd95780601f10610bae57610100808354040283529160200191610bd9565b820191906000526020600020905b815481529060010190602001808311610bbc57829003601f168201915b5050505050905090565b600281565b6000610bf382611f8c565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990615256565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7882611185565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906150f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08611f84565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d31611f84565b611d8e565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614f96565b60405180910390fd5b610d81838383611f99565b505050565b60008054905090565b61070881565b610da083838361204b565b505050565b6000610db08361119b565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890614e36565b60405180910390fd5b6000610dfb610d86565b905060008060005b83811015610f55576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f475786841415610f3e578195505050505050610f91565b83806001019450505b508080600101915050610e03565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890615196565b60405180910390fd5b92915050565b6107d081565b610fa5611f84565b73ffffffffffffffffffffffffffffffffffffffff16610fc36113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090615056565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611064573d6000803e3d6000fd5b5050565b61108383838360405180602001604052806000815250611703565b505050565b6000611092610d86565b82106110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614f16565b60405180910390fd5b819050919050565b6110e3611f84565b73ffffffffffffffffffffffffffffffffffffffff166111016113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90615056565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b66c3663566a5800081565b6103e881565b60006111908261258b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614fd6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128c611f84565b73ffffffffffffffffffffffffffffffffffffffff166112aa6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790615056565b60405180910390fd5b61130a6000612725565b565b66ea7aa67b2d000081565b61131f611f84565b73ffffffffffffffffffffffffffffffffffffffff1661133d6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90615056565b60405180910390fd5b80600e8190555050565b61019081565b606481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e19061562b565b80601f016020809104026020016040519081016040528092919081815260200182805461140d9061562b565b801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b60646101906114739190615403565b81565b61147e611f84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390615096565b60405180910390fd5b80600660006114f9611f84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a6611f84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115eb9190614df9565b60405180910390a35050565b6115ff611f84565b73ffffffffffffffffffffffffffffffffffffffff1661161d6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90615056565b60405180910390fd5b80600f8190555050565b611685611f84565b73ffffffffffffffffffffffffffffffffffffffff166116a36113a8565b73ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090615056565b60405180910390fd5b8060108190555050565b61170e84848461204b565b61171a848484846127eb565b611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090615116565b60405180910390fd5b50505050565b600260085414156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906151d6565b60405180910390fd5b600260088190555060001515601160009054906101000a900460ff16151514611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614fb6565b60405180910390fd5b60008211611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906151b6565b60405180910390fd5b600a8210611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614e96565b60405180910390fd5b6115b361ffff1682611899610d86565b6118a3919061543b565b11156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90615016565b60405180910390fd5b6000600e54141561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614ff6565b60405180910390fd5b600e5442101561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690615076565b60405180910390fd5b600e544210158015611993575061070861ffff16600e54611990919061543b565b42105b156119eb5760008151116119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614f76565b60405180910390fd5b6119e68282612982565b611a93565b61070861ffff16600e546119ff919061543b565b4210158015611a315750610e1061ffff1661070861ffff16600e54611a24919061543b565b611a2e919061543b565b42105b15611a89576000815111611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614f76565b60405180910390fd5b611a848282612e70565b611a93565b611a92826133e7565b5b60016008819055505050565b6115b381565b6701118f178fb4800081565b6060601160019054906101000a900460ff1615611b4257611ad182611f8c565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790615216565b60405180910390fd5b6012611b1b83613449565b604051602001611b2c929190614d59565b6040516020818303038152906040529050611bd0565b60128054611b4f9061562b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b9061562b565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b505050505090505b919050565b6000806000600e544210158015611bfe575061070861ffff16600e54611bfb919061543b565b42105b15611c2057600166c3663566a58000611c15610d86565b925092509250611ce5565b61070861ffff16600e54611c34919061543b565b4210158015611c665750610e1061ffff1661070861ffff16600e54611c59919061543b565b611c63919061543b565b42105b15611c8857600266ea7aa67b2d0000611c7d610d86565b925092509250611ce5565b610e1061ffff1661070861ffff16600e54611ca3919061543b565b611cad919061543b565b4210611cd15760036701118f178fb48000611cc6610d86565b925092509250611ce5565b60006701118f178fb4800060009250925092505b909192565b600281565b611cf7611f84565b73ffffffffffffffffffffffffffffffffffffffff16611d156113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290615056565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610e1081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2a611f84565b73ffffffffffffffffffffffffffffffffffffffff16611e486113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9590615056565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590614ed6565b60405180910390fd5b611f1781612725565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120568261258b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661207d611f84565b73ffffffffffffffffffffffffffffffffffffffff1614806120d957506120a2611f84565b73ffffffffffffffffffffffffffffffffffffffff166120c184610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f557506120f482600001516120ef611f84565b611d8e565b5b905080612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e906150b6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090615036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614f36565b60405180910390fd5b61222685858560016135f6565b6122366000848460000151611f99565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561251b5761247a81611f8c565b1561251a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258485858560016135fc565b5050505050565b612593613b39565b61259c82611f8c565b6125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290614ef6565b60405180910390fd5b60008290505b600081106126e4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d5578092505050612720565b508080600190039150506125e1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612717906151f6565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061280c8473ffffffffffffffffffffffffffffffffffffffff16613602565b15612975578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612835611f84565b8786866040518563ffffffff1660e01b81526004016128579493929190614dad565b602060405180830381600087803b15801561287157600080fd5b505af19250505080156128a257506040513d601f19601f8201168201806040525081019061289f9190613f96565b60015b612925573d80600081146128d2576040519150601f19603f3d011682016040523d82523d6000602084013e6128d7565b606091505b5060008151141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490615116565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061297a565b600190505b949350505050565b6129b581600f543360405160200161299a9190614d12565b60405160208183030381529060405280519060200120613615565b6129f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129eb90614e56565b60405180910390fd5b6002821115612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614e76565b60405180910390fd5b3466c3663566a5800083612a4c91906154c2565b14612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614f56565b60405180910390fd5b600282600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16612ae9919061543b565b1115612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190615136565b60405180910390fd5b6103e861ffff1682600a60049054906101000a900461ffff1661ffff16612b51919061543b565b1115612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b89906150d6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612c18575061019061ffff166001600a60009054906101000a900461ffff16612c119190615403565b61ffff1611155b15612dc85761019061ffff166001600a60009054906101000a900461ffff16612c419190615403565b61ffff161115612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90615236565b60405180910390fd5b600a600081819054906101000a900461ffff168092919060010191906101000a81548161ffff021916908361ffff160217905550506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff1666c3663566a58000604051612d4090614d7d565b60006040518083038185875af1925050503d8060008114612d7d576040519150601f19603f3d011682016040523d82523d6000602084013e612d82565b606091505b5050905080612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90614eb6565b60405180910390fd5b505b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160192506101000a81548160ff021916908360ff16021790555081600a60048282829054906101000a900461ffff160192506101000a81548161ffff021916908361ffff160217905550612e6c338361362c565b5050565b612ea38160105433604051602001612e889190614d12565b60405160208183030381529060405280519060200120613615565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614e56565b60405180910390fd5b6002821115612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614e76565b60405180910390fd5b3466ea7aa67b2d000083612f3a91906154c2565b14612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190614f56565b60405180910390fd5b600282600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16612fd7919061543b565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f90615136565b60405180910390fd5b6107d061ffff1682600c60009054906101000a900461ffff1661ffff1661303f919061543b565b1115613080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613077906150d6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561312d575060646101906130ea9190615403565b61ffff166001600a60029054906101000a900461ffff16600a60009054906101000a900461ffff1661311c9190615403565b6131269190615403565b61ffff1611155b156133045760646101906131419190615403565b61ffff166001600a60029054906101000a900461ffff16600a60009054906101000a900461ffff166131739190615403565b61317d9190615403565b61ffff1611156131c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b990615236565b60405180910390fd5b600a600281819054906101000a900461ffff168092919060010191906101000a81548161ffff021916908361ffff160217905550506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff1666ea7aa67b2d000060405161327c90614d7d565b60006040518083038185875af1925050503d80600081146132b9576040519150601f19603f3d011682016040523d82523d6000602084013e6132be565b606091505b5050905080613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614eb6565b60405180910390fd5b505b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1601600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555081600c60009054906101000a900461ffff1601600c60006101000a81548161ffff021916908361ffff1602179055506133e3338361362c565b5050565b346701118f178fb48000826133fc91906154c2565b1461343c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343390614f56565b60405180910390fd5b613446338261362c565b50565b60606000821415613491576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135f1565b600082905060005b600082146134c35780806134ac9061565d565b915050600a826134bc9190615491565b9150613499565b60008167ffffffffffffffff811115613505577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135375781602001600182028036833780820191505090505b5090505b600085146135ea57600182613550919061551c565b9150600a8561355f91906156d4565b603061356b919061543b565b60f81b8183815181106135a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135e39190615491565b945061353b565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613622858461364a565b1490509392505050565b613646828260405180602001604052806000815250613723565b5050565b60008082905060005b8451811015613718576000858281518110613697577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116136d85782816040516020016136bb929190614d2d565b604051602081830303815290604052805190602001209250613704565b80836040516020016136eb929190614d2d565b6040516020818303038152906040528051906020012092505b5080806137109061565d565b915050613653565b508091505092915050565b6137308383836001613735565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a290615156565b60405180910390fd5b60008414156137ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e690615176565b60405180910390fd5b6137fc60008683876135f6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a9657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a8157613a4160008884886127eb565b613a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7790615116565b60405180910390fd5b5b818060010192505080806001019150506139ca565b508060008190555050613aac60008683876135fc565b5050505050565b828054613abf9061562b565b90600052602060002090601f016020900481019282613ae15760008555613b28565b82601f10613afa57805160ff1916838001178555613b28565b82800160010185558215613b28579182015b82811115613b27578251825591602001919060010190613b0c565b5b509050613b359190613b73565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b8c576000816000905550600101613b74565b5090565b6000613ba3613b9e84615314565b6152e3565b90508083825260208201905082856020860282011115613bc257600080fd5b60005b85811015613bf25781613bd88882613ccc565b845260208401935060208301925050600181019050613bc5565b5050509392505050565b6000613c0f613c0a84615340565b6152e3565b905082815260208101848484011115613c2757600080fd5b613c328482856155e9565b509392505050565b6000613c4d613c4884615370565b6152e3565b905082815260208101848484011115613c6557600080fd5b613c708482856155e9565b509392505050565b600081359050613c87816157df565b92915050565b600082601f830112613c9e57600080fd5b8135613cae848260208601613b90565b91505092915050565b600081359050613cc6816157f6565b92915050565b600081359050613cdb8161580d565b92915050565b600081359050613cf081615824565b92915050565b600081519050613d0581615824565b92915050565b600082601f830112613d1c57600080fd5b8135613d2c848260208601613bfc565b91505092915050565b600082601f830112613d4657600080fd5b8135613d56848260208601613c3a565b91505092915050565b600081359050613d6e8161583b565b92915050565b600060208284031215613d8657600080fd5b6000613d9484828501613c78565b91505092915050565b60008060408385031215613db057600080fd5b6000613dbe85828601613c78565b9250506020613dcf85828601613c78565b9150509250929050565b600080600060608486031215613dee57600080fd5b6000613dfc86828701613c78565b9350506020613e0d86828701613c78565b9250506040613e1e86828701613d5f565b9150509250925092565b60008060008060808587031215613e3e57600080fd5b6000613e4c87828801613c78565b9450506020613e5d87828801613c78565b9350506040613e6e87828801613d5f565b925050606085013567ffffffffffffffff811115613e8b57600080fd5b613e9787828801613d0b565b91505092959194509250565b60008060408385031215613eb657600080fd5b6000613ec485828601613c78565b9250506020613ed585828601613cb7565b9150509250929050565b60008060408385031215613ef257600080fd5b6000613f0085828601613c78565b9250506020613f1185828601613d5f565b9150509250929050565b600060208284031215613f2d57600080fd5b6000613f3b84828501613cb7565b91505092915050565b600060208284031215613f5657600080fd5b6000613f6484828501613ccc565b91505092915050565b600060208284031215613f7f57600080fd5b6000613f8d84828501613ce1565b91505092915050565b600060208284031215613fa857600080fd5b6000613fb684828501613cf6565b91505092915050565b600060208284031215613fd157600080fd5b600082013567ffffffffffffffff811115613feb57600080fd5b613ff784828501613d35565b91505092915050565b60006020828403121561401257600080fd5b600061402084828501613d5f565b91505092915050565b6000806040838503121561403c57600080fd5b600061404a85828601613d5f565b925050602083013567ffffffffffffffff81111561406757600080fd5b61407385828601613c8d565b9150509250929050565b61408681615550565b82525050565b61409d61409882615550565b6156a6565b82525050565b6140ac81615562565b82525050565b6140c36140be8261556e565b6156b8565b82525050565b60006140d4826153b5565b6140de81856153cb565b93506140ee8185602086016155f8565b6140f7816157c1565b840191505092915050565b600061410d826153c0565b61411781856153e7565b93506141278185602086016155f8565b614130816157c1565b840191505092915050565b6000614146826153c0565b61415081856153f8565b93506141608185602086016155f8565b80840191505092915050565b600081546141798161562b565b61418381866153f8565b9450600182166000811461419e57600181146141af576141e2565b60ff198316865281860193506141e2565b6141b8856153a0565b60005b838110156141da578154818901526001820191506020810190506141bb565b838801955050505b50505092915050565b60006141f86022836153e7565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061425e6004836153e7565b91507f7521574c000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061429e6009836153e7565b91507f3e7175616e7469747900000000000000000000000000000000000000000000006000830152602082019050919050565b60006142de6003836153e7565b91507f713e3900000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061431e6007836153e7565b91507f21726566756e64000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061435e6026836153e7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143c4602a836153e7565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061442a6023836153e7565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144906025836153e7565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144f66005836153e7565b91507f244554483c0000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006145366002836153e7565b91507f21700000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006145766039836153e7565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006145dc6006836153e7565b91507f48616c74656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061461c602b836153e7565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006146826005836153e7565b91507f21723a45300000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006146c2600a836153e7565b91507f3e6d6178546f6b656e73000000000000000000000000000000000000000000006000830152602082019050919050565b60006147026026836153e7565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147686020836153e7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006147a86005836153e7565b91507f21723a45310000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006147e8601a836153e7565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006148286032836153e7565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061488e6012836153e7565b91507f6f7665726d696e74696e673a737570706c7900000000000000000000000000006000830152602082019050919050565b60006148ce6022836153e7565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149346000836153dc565b9150600082019050919050565b600061494e6033836153e7565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006149b4600b836153e7565b91507f6f7665726d696e74696e670000000000000000000000000000000000000000006000830152602082019050919050565b60006149f46021836153e7565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5a6028836153e7565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac0602e836153e7565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614b266003836153e7565b91507f713c3000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614b66601f836153e7565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614ba6602f836153e7565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c0c6008836153e7565b91507f746f6b656e49643f0000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c4c6010836153e7565b91507f6f766572206672656520746f74616c2e000000000000000000000000000000006000830152602082019050919050565b6000614c8c602d836153e7565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b614cee816155a4565b82525050565b614cfd816155d2565b82525050565b614d0c816155dc565b82525050565b6000614d1e828461408c565b60148201915081905092915050565b6000614d3982856140b2565b602082019150614d4982846140b2565b6020820191508190509392505050565b6000614d65828561416c565b9150614d71828461413b565b91508190509392505050565b6000614d8882614927565b9150819050919050565b6000602082019050614da7600083018461407d565b92915050565b6000608082019050614dc2600083018761407d565b614dcf602083018661407d565b614ddc6040830185614cf4565b8181036060830152614dee81846140c9565b905095945050505050565b6000602082019050614e0e60008301846140a3565b92915050565b60006020820190508181036000830152614e2e8184614102565b905092915050565b60006020820190508181036000830152614e4f816141eb565b9050919050565b60006020820190508181036000830152614e6f81614251565b9050919050565b60006020820190508181036000830152614e8f81614291565b9050919050565b60006020820190508181036000830152614eaf816142d1565b9050919050565b60006020820190508181036000830152614ecf81614311565b9050919050565b60006020820190508181036000830152614eef81614351565b9050919050565b60006020820190508181036000830152614f0f816143b7565b9050919050565b60006020820190508181036000830152614f2f8161441d565b9050919050565b60006020820190508181036000830152614f4f81614483565b9050919050565b60006020820190508181036000830152614f6f816144e9565b9050919050565b60006020820190508181036000830152614f8f81614529565b9050919050565b60006020820190508181036000830152614faf81614569565b9050919050565b60006020820190508181036000830152614fcf816145cf565b9050919050565b60006020820190508181036000830152614fef8161460f565b9050919050565b6000602082019050818103600083015261500f81614675565b9050919050565b6000602082019050818103600083015261502f816146b5565b9050919050565b6000602082019050818103600083015261504f816146f5565b9050919050565b6000602082019050818103600083015261506f8161475b565b9050919050565b6000602082019050818103600083015261508f8161479b565b9050919050565b600060208201905081810360008301526150af816147db565b9050919050565b600060208201905081810360008301526150cf8161481b565b9050919050565b600060208201905081810360008301526150ef81614881565b9050919050565b6000602082019050818103600083015261510f816148c1565b9050919050565b6000602082019050818103600083015261512f81614941565b9050919050565b6000602082019050818103600083015261514f816149a7565b9050919050565b6000602082019050818103600083015261516f816149e7565b9050919050565b6000602082019050818103600083015261518f81614a4d565b9050919050565b600060208201905081810360008301526151af81614ab3565b9050919050565b600060208201905081810360008301526151cf81614b19565b9050919050565b600060208201905081810360008301526151ef81614b59565b9050919050565b6000602082019050818103600083015261520f81614b99565b9050919050565b6000602082019050818103600083015261522f81614bff565b9050919050565b6000602082019050818103600083015261524f81614c3f565b9050919050565b6000602082019050818103600083015261526f81614c7f565b9050919050565b600060208201905061528b6000830184614ce5565b92915050565b60006020820190506152a66000830184614cf4565b92915050565b60006060820190506152c16000830186614d03565b6152ce6020830185614cf4565b6152db6040830184614cf4565b949350505050565b6000604051905081810181811067ffffffffffffffff8211171561530a57615309615792565b5b8060405250919050565b600067ffffffffffffffff82111561532f5761532e615792565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561535b5761535a615792565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561538b5761538a615792565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061540e826155a4565b9150615419836155a4565b92508261ffff038211156154305761542f615705565b5b828201905092915050565b6000615446826155d2565b9150615451836155d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561548657615485615705565b5b828201905092915050565b600061549c826155d2565b91506154a7836155d2565b9250826154b7576154b6615734565b5b828204905092915050565b60006154cd826155d2565b91506154d8836155d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551157615510615705565b5b828202905092915050565b6000615527826155d2565b9150615532836155d2565b92508282101561554557615544615705565b5b828203905092915050565b600061555b826155b2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156156165780820151818401526020810190506155fb565b83811115615625576000848401525b50505050565b6000600282049050600182168061564357607f821691505b6020821081141561565757615656615763565b5b50919050565b6000615668826155d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561569b5761569a615705565b5b600182019050919050565b60006156b1826156c2565b9050919050565b6000819050919050565b60006156cd826157d2565b9050919050565b60006156df826155d2565b91506156ea836155d2565b9250826156fa576156f9615734565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6157e881615550565b81146157f357600080fd5b50565b6157ff81615562565b811461580a57600080fd5b50565b6158168161556e565b811461582157600080fd5b50565b61582d81615578565b811461583857600080fd5b50565b615844816155d2565b811461584f57600080fd5b5056fea2646970667358221220d7daaa159fb783307e1dcbb223b74c03213d55d01cacb7eb3c9ad2c9e932d47764736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637622345f11610139578063b88d4fde116100b6578063d0520c231161007a578063d0520c231461085f578063dc875c991461088c578063e04f7ed7146108b7578063e4d2f45d146108e0578063e985e9c51461090b578063f2fde38b1461094857610246565b8063b88d4fde14610787578063ba41b0c6146107b0578063bdeadcb0146107cc578063c3151fed146107f7578063c87b56dd1461082257610246565b806395d89b41116100fd57806395d89b41146106b65780639c7415e3146106e1578063a22cb4651461070c578063a58fdc1114610735578063ad3e31b71461075e57610246565b80637622345f146105e15780637960c27f1461060c578063796e3330146106355780637df06077146106605780638da5cb5b1461068b57610246565b806339fc3ee3116101c7578063571d0ba81161018b578063571d0ba8146104fa578063611c4c81146105255780636352211e1461055057806370a082311461058d578063715018a6146105ca57610246565b806339fc3ee3146104295780633ccfd60b1461045457806342842e0e1461046b5780634f6ccce71461049457806352349f52146104d157610246565b8063095ea7b31161020e578063095ea7b31461034457806318160ddd1461036d5780631fd09e131461039857806323b872dd146103c35780632f745c59146103ec57610246565b806301ffc9a71461024b57806302fe53051461028857806306fdde03146102b157806307fbaadb146102dc578063081812fc14610307575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613f6d565b610971565b60405161027f9190614df9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613fbf565b610abb565b005b3480156102bd57600080fd5b506102c6610b51565b6040516102d39190614e14565b60405180910390f35b3480156102e857600080fd5b506102f1610be3565b6040516102fe9190615291565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190614000565b610be8565b60405161033b9190614d92565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613edf565b610c6d565b005b34801561037957600080fd5b50610382610d86565b60405161038f9190615291565b60405180910390f35b3480156103a457600080fd5b506103ad610d8f565b6040516103ba9190615276565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190613dd9565b610d95565b005b3480156103f857600080fd5b50610413600480360381019061040e9190613edf565b610da5565b6040516104209190615291565b60405180910390f35b34801561043557600080fd5b5061043e610f97565b60405161044b9190615276565b60405180910390f35b34801561046057600080fd5b50610469610f9d565b005b34801561047757600080fd5b50610492600480360381019061048d9190613dd9565b611068565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190614000565b611088565b6040516104c89190615291565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613f1b565b6110db565b005b34801561050657600080fd5b5061050f611174565b60405161051c9190615291565b60405180910390f35b34801561053157600080fd5b5061053a61117f565b6040516105479190615276565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190614000565b611185565b6040516105849190614d92565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613d74565b61119b565b6040516105c19190615291565b60405180910390f35b3480156105d657600080fd5b506105df611284565b005b3480156105ed57600080fd5b506105f661130c565b6040516106039190615291565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190614000565b611317565b005b34801561064157600080fd5b5061064a61139d565b6040516106579190615276565b60405180910390f35b34801561066c57600080fd5b506106756113a3565b6040516106829190615276565b60405180910390f35b34801561069757600080fd5b506106a06113a8565b6040516106ad9190614d92565b60405180910390f35b3480156106c257600080fd5b506106cb6113d2565b6040516106d89190614e14565b60405180910390f35b3480156106ed57600080fd5b506106f6611464565b6040516107039190615276565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613ea3565b611476565b005b34801561074157600080fd5b5061075c60048036038101906107579190613f44565b6115f7565b005b34801561076a57600080fd5b5061078560048036038101906107809190613f44565b61167d565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613e28565b611703565b005b6107ca60048036038101906107c59190614029565b61175f565b005b3480156107d857600080fd5b506107e1611a9f565b6040516107ee9190615276565b60405180910390f35b34801561080357600080fd5b5061080c611aa5565b6040516108199190615291565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614000565b611ab1565b6040516108569190614e14565b60405180910390f35b34801561086b57600080fd5b50610874611bd5565b604051610883939291906152ac565b60405180910390f35b34801561089857600080fd5b506108a1611cea565b6040516108ae9190615291565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d99190613f1b565b611cef565b005b3480156108ec57600080fd5b506108f5611d88565b6040516109029190615276565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613d9d565b611d8e565b60405161093f9190614df9565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a9190613d74565b611e22565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ab45750610ab382611f1a565b5b9050919050565b610ac3611f84565b73ffffffffffffffffffffffffffffffffffffffff16610ae16113a8565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90615056565b60405180910390fd5b8060129080519060200190610b4d929190613ab3565b5050565b606060018054610b609061562b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c9061562b565b8015610bd95780601f10610bae57610100808354040283529160200191610bd9565b820191906000526020600020905b815481529060010190602001808311610bbc57829003601f168201915b5050505050905090565b600281565b6000610bf382611f8c565b610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990615256565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c7882611185565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce0906150f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d08611f84565b73ffffffffffffffffffffffffffffffffffffffff161480610d375750610d3681610d31611f84565b611d8e565b5b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614f96565b60405180910390fd5b610d81838383611f99565b505050565b60008054905090565b61070881565b610da083838361204b565b505050565b6000610db08361119b565b8210610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890614e36565b60405180910390fd5b6000610dfb610d86565b905060008060005b83811015610f55576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ef557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f475786841415610f3e578195505050505050610f91565b83806001019450505b508080600101915050610e03565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890615196565b60405180910390fd5b92915050565b6107d081565b610fa5611f84565b73ffffffffffffffffffffffffffffffffffffffff16610fc36113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090615056565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611064573d6000803e3d6000fd5b5050565b61108383838360405180602001604052806000815250611703565b505050565b6000611092610d86565b82106110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614f16565b60405180910390fd5b819050919050565b6110e3611f84565b73ffffffffffffffffffffffffffffffffffffffff166111016113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90615056565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b66c3663566a5800081565b6103e881565b60006111908261258b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614fd6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128c611f84565b73ffffffffffffffffffffffffffffffffffffffff166112aa6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790615056565b60405180910390fd5b61130a6000612725565b565b66ea7aa67b2d000081565b61131f611f84565b73ffffffffffffffffffffffffffffffffffffffff1661133d6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90615056565b60405180910390fd5b80600e8190555050565b61019081565b606481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113e19061562b565b80601f016020809104026020016040519081016040528092919081815260200182805461140d9061562b565b801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b60646101906114739190615403565b81565b61147e611f84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390615096565b60405180910390fd5b80600660006114f9611f84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a6611f84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115eb9190614df9565b60405180910390a35050565b6115ff611f84565b73ffffffffffffffffffffffffffffffffffffffff1661161d6113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90615056565b60405180910390fd5b80600f8190555050565b611685611f84565b73ffffffffffffffffffffffffffffffffffffffff166116a36113a8565b73ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090615056565b60405180910390fd5b8060108190555050565b61170e84848461204b565b61171a848484846127eb565b611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090615116565b60405180910390fd5b50505050565b600260085414156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c906151d6565b60405180910390fd5b600260088190555060001515601160009054906101000a900460ff16151514611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa90614fb6565b60405180910390fd5b60008211611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906151b6565b60405180910390fd5b600a8210611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614e96565b60405180910390fd5b6115b361ffff1682611899610d86565b6118a3919061543b565b11156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db90615016565b60405180910390fd5b6000600e54141561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614ff6565b60405180910390fd5b600e5442101561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690615076565b60405180910390fd5b600e544210158015611993575061070861ffff16600e54611990919061543b565b42105b156119eb5760008151116119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614f76565b60405180910390fd5b6119e68282612982565b611a93565b61070861ffff16600e546119ff919061543b565b4210158015611a315750610e1061ffff1661070861ffff16600e54611a24919061543b565b611a2e919061543b565b42105b15611a89576000815111611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614f76565b60405180910390fd5b611a848282612e70565b611a93565b611a92826133e7565b5b60016008819055505050565b6115b381565b6701118f178fb4800081565b6060601160019054906101000a900460ff1615611b4257611ad182611f8c565b611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0790615216565b60405180910390fd5b6012611b1b83613449565b604051602001611b2c929190614d59565b6040516020818303038152906040529050611bd0565b60128054611b4f9061562b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7b9061562b565b8015611bc85780601f10611b9d57610100808354040283529160200191611bc8565b820191906000526020600020905b815481529060010190602001808311611bab57829003601f168201915b505050505090505b919050565b6000806000600e544210158015611bfe575061070861ffff16600e54611bfb919061543b565b42105b15611c2057600166c3663566a58000611c15610d86565b925092509250611ce5565b61070861ffff16600e54611c34919061543b565b4210158015611c665750610e1061ffff1661070861ffff16600e54611c59919061543b565b611c63919061543b565b42105b15611c8857600266ea7aa67b2d0000611c7d610d86565b925092509250611ce5565b610e1061ffff1661070861ffff16600e54611ca3919061543b565b611cad919061543b565b4210611cd15760036701118f178fb48000611cc6610d86565b925092509250611ce5565b60006701118f178fb4800060009250925092505b909192565b600281565b611cf7611f84565b73ffffffffffffffffffffffffffffffffffffffff16611d156113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290615056565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610e1081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2a611f84565b73ffffffffffffffffffffffffffffffffffffffff16611e486113a8565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9590615056565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590614ed6565b60405180910390fd5b611f1781612725565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120568261258b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661207d611f84565b73ffffffffffffffffffffffffffffffffffffffff1614806120d957506120a2611f84565b73ffffffffffffffffffffffffffffffffffffffff166120c184610be8565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f557506120f482600001516120ef611f84565b611d8e565b5b905080612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e906150b6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090615036565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221090614f36565b60405180910390fd5b61222685858560016135f6565b6122366000848460000151611f99565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561251b5761247a81611f8c565b1561251a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258485858560016135fc565b5050505050565b612593613b39565b61259c82611f8c565b6125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290614ef6565b60405180910390fd5b60008290505b600081106126e4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126d5578092505050612720565b508080600190039150506125e1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612717906151f6565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061280c8473ffffffffffffffffffffffffffffffffffffffff16613602565b15612975578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612835611f84565b8786866040518563ffffffff1660e01b81526004016128579493929190614dad565b602060405180830381600087803b15801561287157600080fd5b505af19250505080156128a257506040513d601f19601f8201168201806040525081019061289f9190613f96565b60015b612925573d80600081146128d2576040519150601f19603f3d011682016040523d82523d6000602084013e6128d7565b606091505b5060008151141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490615116565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061297a565b600190505b949350505050565b6129b581600f543360405160200161299a9190614d12565b60405160208183030381529060405280519060200120613615565b6129f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129eb90614e56565b60405180910390fd5b6002821115612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614e76565b60405180910390fd5b3466c3663566a5800083612a4c91906154c2565b14612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614f56565b60405180910390fd5b600282600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16612ae9919061543b565b1115612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190615136565b60405180910390fd5b6103e861ffff1682600a60049054906101000a900461ffff1661ffff16612b51919061543b565b1115612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b89906150d6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612c18575061019061ffff166001600a60009054906101000a900461ffff16612c119190615403565b61ffff1611155b15612dc85761019061ffff166001600a60009054906101000a900461ffff16612c419190615403565b61ffff161115612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90615236565b60405180910390fd5b600a600081819054906101000a900461ffff168092919060010191906101000a81548161ffff021916908361ffff160217905550506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff1666c3663566a58000604051612d4090614d7d565b60006040518083038185875af1925050503d8060008114612d7d576040519150601f19603f3d011682016040523d82523d6000602084013e612d82565b606091505b5050905080612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90614eb6565b60405180910390fd5b505b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff160192506101000a81548160ff021916908360ff16021790555081600a60048282829054906101000a900461ffff160192506101000a81548161ffff021916908361ffff160217905550612e6c338361362c565b5050565b612ea38160105433604051602001612e889190614d12565b60405160208183030381529060405280519060200120613615565b612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614e56565b60405180910390fd5b6002821115612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90614e76565b60405180910390fd5b3466ea7aa67b2d000083612f3a91906154c2565b14612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190614f56565b60405180910390fd5b600282600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16612fd7919061543b565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f90615136565b60405180910390fd5b6107d061ffff1682600c60009054906101000a900461ffff1661ffff1661303f919061543b565b1115613080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613077906150d6565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561312d575060646101906130ea9190615403565b61ffff166001600a60029054906101000a900461ffff16600a60009054906101000a900461ffff1661311c9190615403565b6131269190615403565b61ffff1611155b156133045760646101906131419190615403565b61ffff166001600a60029054906101000a900461ffff16600a60009054906101000a900461ffff166131739190615403565b61317d9190615403565b61ffff1611156131c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b990615236565b60405180910390fd5b600a600281819054906101000a900461ffff168092919060010191906101000a81548161ffff021916908361ffff160217905550506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060003373ffffffffffffffffffffffffffffffffffffffff1666ea7aa67b2d000060405161327c90614d7d565b60006040518083038185875af1925050503d80600081146132b9576040519150601f19603f3d011682016040523d82523d6000602084013e6132be565b606091505b5050905080613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614eb6565b60405180910390fd5b505b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1601600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555081600c60009054906101000a900461ffff1601600c60006101000a81548161ffff021916908361ffff1602179055506133e3338361362c565b5050565b346701118f178fb48000826133fc91906154c2565b1461343c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343390614f56565b60405180910390fd5b613446338261362c565b50565b60606000821415613491576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135f1565b600082905060005b600082146134c35780806134ac9061565d565b915050600a826134bc9190615491565b9150613499565b60008167ffffffffffffffff811115613505577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135375781602001600182028036833780820191505090505b5090505b600085146135ea57600182613550919061551c565b9150600a8561355f91906156d4565b603061356b919061543b565b60f81b8183815181106135a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135e39190615491565b945061353b565b8093505050505b919050565b50505050565b50505050565b600080823b905060008111915050919050565b600082613622858461364a565b1490509392505050565b613646828260405180602001604052806000815250613723565b5050565b60008082905060005b8451811015613718576000858281518110613697577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116136d85782816040516020016136bb929190614d2d565b604051602081830303815290604052805190602001209250613704565b80836040516020016136eb929190614d2d565b6040516020818303038152906040528051906020012092505b5080806137109061565d565b915050613653565b508091505092915050565b6137308383836001613735565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a290615156565b60405180910390fd5b60008414156137ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e690615176565b60405180910390fd5b6137fc60008683876135f6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a9657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a8157613a4160008884886127eb565b613a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7790615116565b60405180910390fd5b5b818060010192505080806001019150506139ca565b508060008190555050613aac60008683876135fc565b5050505050565b828054613abf9061562b565b90600052602060002090601f016020900481019282613ae15760008555613b28565b82601f10613afa57805160ff1916838001178555613b28565b82800160010185558215613b28579182015b82811115613b27578251825591602001919060010190613b0c565b5b509050613b359190613b73565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b8c576000816000905550600101613b74565b5090565b6000613ba3613b9e84615314565b6152e3565b90508083825260208201905082856020860282011115613bc257600080fd5b60005b85811015613bf25781613bd88882613ccc565b845260208401935060208301925050600181019050613bc5565b5050509392505050565b6000613c0f613c0a84615340565b6152e3565b905082815260208101848484011115613c2757600080fd5b613c328482856155e9565b509392505050565b6000613c4d613c4884615370565b6152e3565b905082815260208101848484011115613c6557600080fd5b613c708482856155e9565b509392505050565b600081359050613c87816157df565b92915050565b600082601f830112613c9e57600080fd5b8135613cae848260208601613b90565b91505092915050565b600081359050613cc6816157f6565b92915050565b600081359050613cdb8161580d565b92915050565b600081359050613cf081615824565b92915050565b600081519050613d0581615824565b92915050565b600082601f830112613d1c57600080fd5b8135613d2c848260208601613bfc565b91505092915050565b600082601f830112613d4657600080fd5b8135613d56848260208601613c3a565b91505092915050565b600081359050613d6e8161583b565b92915050565b600060208284031215613d8657600080fd5b6000613d9484828501613c78565b91505092915050565b60008060408385031215613db057600080fd5b6000613dbe85828601613c78565b9250506020613dcf85828601613c78565b9150509250929050565b600080600060608486031215613dee57600080fd5b6000613dfc86828701613c78565b9350506020613e0d86828701613c78565b9250506040613e1e86828701613d5f565b9150509250925092565b60008060008060808587031215613e3e57600080fd5b6000613e4c87828801613c78565b9450506020613e5d87828801613c78565b9350506040613e6e87828801613d5f565b925050606085013567ffffffffffffffff811115613e8b57600080fd5b613e9787828801613d0b565b91505092959194509250565b60008060408385031215613eb657600080fd5b6000613ec485828601613c78565b9250506020613ed585828601613cb7565b9150509250929050565b60008060408385031215613ef257600080fd5b6000613f0085828601613c78565b9250506020613f1185828601613d5f565b9150509250929050565b600060208284031215613f2d57600080fd5b6000613f3b84828501613cb7565b91505092915050565b600060208284031215613f5657600080fd5b6000613f6484828501613ccc565b91505092915050565b600060208284031215613f7f57600080fd5b6000613f8d84828501613ce1565b91505092915050565b600060208284031215613fa857600080fd5b6000613fb684828501613cf6565b91505092915050565b600060208284031215613fd157600080fd5b600082013567ffffffffffffffff811115613feb57600080fd5b613ff784828501613d35565b91505092915050565b60006020828403121561401257600080fd5b600061402084828501613d5f565b91505092915050565b6000806040838503121561403c57600080fd5b600061404a85828601613d5f565b925050602083013567ffffffffffffffff81111561406757600080fd5b61407385828601613c8d565b9150509250929050565b61408681615550565b82525050565b61409d61409882615550565b6156a6565b82525050565b6140ac81615562565b82525050565b6140c36140be8261556e565b6156b8565b82525050565b60006140d4826153b5565b6140de81856153cb565b93506140ee8185602086016155f8565b6140f7816157c1565b840191505092915050565b600061410d826153c0565b61411781856153e7565b93506141278185602086016155f8565b614130816157c1565b840191505092915050565b6000614146826153c0565b61415081856153f8565b93506141608185602086016155f8565b80840191505092915050565b600081546141798161562b565b61418381866153f8565b9450600182166000811461419e57600181146141af576141e2565b60ff198316865281860193506141e2565b6141b8856153a0565b60005b838110156141da578154818901526001820191506020810190506141bb565b838801955050505b50505092915050565b60006141f86022836153e7565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061425e6004836153e7565b91507f7521574c000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061429e6009836153e7565b91507f3e7175616e7469747900000000000000000000000000000000000000000000006000830152602082019050919050565b60006142de6003836153e7565b91507f713e3900000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061431e6007836153e7565b91507f21726566756e64000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061435e6026836153e7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143c4602a836153e7565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061442a6023836153e7565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144906025836153e7565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144f66005836153e7565b91507f244554483c0000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006145366002836153e7565b91507f21700000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006145766039836153e7565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b60006145dc6006836153e7565b91507f48616c74656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061461c602b836153e7565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006146826005836153e7565b91507f21723a45300000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006146c2600a836153e7565b91507f3e6d6178546f6b656e73000000000000000000000000000000000000000000006000830152602082019050919050565b60006147026026836153e7565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147686020836153e7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006147a86005836153e7565b91507f21723a45310000000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006147e8601a836153e7565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b60006148286032836153e7565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b600061488e6012836153e7565b91507f6f7665726d696e74696e673a737570706c7900000000000000000000000000006000830152602082019050919050565b60006148ce6022836153e7565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149346000836153dc565b9150600082019050919050565b600061494e6033836153e7565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006149b4600b836153e7565b91507f6f7665726d696e74696e670000000000000000000000000000000000000000006000830152602082019050919050565b60006149f46021836153e7565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5a6028836153e7565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ac0602e836153e7565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614b266003836153e7565b91507f713c3000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614b66601f836153e7565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000614ba6602f836153e7565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c0c6008836153e7565b91507f746f6b656e49643f0000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c4c6010836153e7565b91507f6f766572206672656520746f74616c2e000000000000000000000000000000006000830152602082019050919050565b6000614c8c602d836153e7565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b614cee816155a4565b82525050565b614cfd816155d2565b82525050565b614d0c816155dc565b82525050565b6000614d1e828461408c565b60148201915081905092915050565b6000614d3982856140b2565b602082019150614d4982846140b2565b6020820191508190509392505050565b6000614d65828561416c565b9150614d71828461413b565b91508190509392505050565b6000614d8882614927565b9150819050919050565b6000602082019050614da7600083018461407d565b92915050565b6000608082019050614dc2600083018761407d565b614dcf602083018661407d565b614ddc6040830185614cf4565b8181036060830152614dee81846140c9565b905095945050505050565b6000602082019050614e0e60008301846140a3565b92915050565b60006020820190508181036000830152614e2e8184614102565b905092915050565b60006020820190508181036000830152614e4f816141eb565b9050919050565b60006020820190508181036000830152614e6f81614251565b9050919050565b60006020820190508181036000830152614e8f81614291565b9050919050565b60006020820190508181036000830152614eaf816142d1565b9050919050565b60006020820190508181036000830152614ecf81614311565b9050919050565b60006020820190508181036000830152614eef81614351565b9050919050565b60006020820190508181036000830152614f0f816143b7565b9050919050565b60006020820190508181036000830152614f2f8161441d565b9050919050565b60006020820190508181036000830152614f4f81614483565b9050919050565b60006020820190508181036000830152614f6f816144e9565b9050919050565b60006020820190508181036000830152614f8f81614529565b9050919050565b60006020820190508181036000830152614faf81614569565b9050919050565b60006020820190508181036000830152614fcf816145cf565b9050919050565b60006020820190508181036000830152614fef8161460f565b9050919050565b6000602082019050818103600083015261500f81614675565b9050919050565b6000602082019050818103600083015261502f816146b5565b9050919050565b6000602082019050818103600083015261504f816146f5565b9050919050565b6000602082019050818103600083015261506f8161475b565b9050919050565b6000602082019050818103600083015261508f8161479b565b9050919050565b600060208201905081810360008301526150af816147db565b9050919050565b600060208201905081810360008301526150cf8161481b565b9050919050565b600060208201905081810360008301526150ef81614881565b9050919050565b6000602082019050818103600083015261510f816148c1565b9050919050565b6000602082019050818103600083015261512f81614941565b9050919050565b6000602082019050818103600083015261514f816149a7565b9050919050565b6000602082019050818103600083015261516f816149e7565b9050919050565b6000602082019050818103600083015261518f81614a4d565b9050919050565b600060208201905081810360008301526151af81614ab3565b9050919050565b600060208201905081810360008301526151cf81614b19565b9050919050565b600060208201905081810360008301526151ef81614b59565b9050919050565b6000602082019050818103600083015261520f81614b99565b9050919050565b6000602082019050818103600083015261522f81614bff565b9050919050565b6000602082019050818103600083015261524f81614c3f565b9050919050565b6000602082019050818103600083015261526f81614c7f565b9050919050565b600060208201905061528b6000830184614ce5565b92915050565b60006020820190506152a66000830184614cf4565b92915050565b60006060820190506152c16000830186614d03565b6152ce6020830185614cf4565b6152db6040830184614cf4565b949350505050565b6000604051905081810181811067ffffffffffffffff8211171561530a57615309615792565b5b8060405250919050565b600067ffffffffffffffff82111561532f5761532e615792565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561535b5761535a615792565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561538b5761538a615792565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061540e826155a4565b9150615419836155a4565b92508261ffff038211156154305761542f615705565b5b828201905092915050565b6000615446826155d2565b9150615451836155d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561548657615485615705565b5b828201905092915050565b600061549c826155d2565b91506154a7836155d2565b9250826154b7576154b6615734565b5b828204905092915050565b60006154cd826155d2565b91506154d8836155d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561551157615510615705565b5b828202905092915050565b6000615527826155d2565b9150615532836155d2565b92508282101561554557615544615705565b5b828203905092915050565b600061555b826155b2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156156165780820151818401526020810190506155fb565b83811115615625576000848401525b50505050565b6000600282049050600182168061564357607f821691505b6020821081141561565757615656615763565b5b50919050565b6000615668826155d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561569b5761569a615705565b5b600182019050919050565b60006156b1826156c2565b9050919050565b6000819050919050565b60006156cd826157d2565b9050919050565b60006156df826155d2565b91506156ea836155d2565b9250826156fa576156f9615734565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b6157e881615550565b81146157f357600080fd5b50565b6157ff81615562565b811461580a57600080fd5b50565b6158168161556e565b811461582157600080fd5b50565b61582d81615578565b811461583857600080fd5b50565b615844816155d2565b811461584f57600080fd5b5056fea2646970667358221220d7daaa159fb783307e1dcbb223b74c03213d55d01cacb7eb3c9ad2c9e932d47764736f6c63430008000033

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.