ETH Price: $3,464.83 (+4.11%)

Token

Boredsone Genesis (BSG)
 

Overview

Max Total Supply

545 BSG

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BSG
0x719835d6bd68fe2ca75be83b1bbeff15bcc0755a
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:
BoredsoneGenesis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : BoredsoneGenesis.sol
// Boredsone is The First Metaverse Theme Park!

// Boredsone Genesis collection replace Boredsone Park collection



// 88888888ba                                                 88
// 88      "8b                                                88
// 88      ,8P                                                88
// 88aaaaaa8P'   ,adPPYba,   8b,dPPYba,   ,adPPYba,   ,adPPYb,88  ,adPPYba,   ,adPPYba,   8b,dPPYba,    ,adPPYba,
// 88""""""8b,  a8"     "8a  88P'   "Y8  a8P_____88  a8"    `Y88  I8[    ""  a8"     "8a  88P'   `"8a  a8P_____88
// 88      `8b  8b       d8  88          8PP"""""""  8b       88   `"Y8ba,   8b       d8  88       88  8PP"""""""
// 88      a8P  "8a,   ,a8"  88          "8b,   ,aa  "8a,   ,d88  aa    ]8I  "8a,   ,a8"  88       88  "8b,   ,aa
// 88888888P"    `"YbbdP"'   88           `"Ybbd8"'   `"8bbdP"Y8  `"YbbdP"'   `"YbbdP"'   88       88   `"Ybbd8"'

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "erc721a/contracts/extensions/ERC721ABurnable.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";

contract BoredsoneGenesis is ERC721A("Boredsone Genesis", "BSG"), ERC721AQueryable, ERC721ABurnable, ERC2981, Ownable, ReentrancyGuard {
    string baseURI = "ipfs://QmNQnbjuesfcSMzcDShxZU1oGQjXaQWvYXchNYWHeieonh/";
    uint256 saleActiveTime = 1650297600;

    uint256 constant maxSupply = 4999;
    uint256 itemPrice = 0.12 ether;

    constructor() { 
        _setDefaultRoyalty(msg.sender, 10_00); // 10.00%
    }

    /// @notice Purchase multiple NFTs at once
    function purchaseTokens(uint256 _howMany) external payable nonReentrant {
        _safeMint(msg.sender, _howMany);

        require(totalSupply() <= maxSupply, "Try mint less");
        require(tx.origin == msg.sender, "The caller is a contract");
        require(_howMany <= 50, "Mint min 1, max 50");
        require(block.timestamp > saleActiveTime, "Sale is not active");
        require(msg.value == _howMany * itemPrice, "Try to send more ETH");
    }

    /// @notice Owner can withdraw from here
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /// @notice Change price in case of ETH price changes too much
    function setPrice(uint256 _newPrice) external onlyOwner {
        itemPrice = _newPrice;
    }

    /// @notice set sale active time
    function setSaleActiveTime(uint256 _saleActiveTime) external onlyOwner {
        saleActiveTime = _saleActiveTime;
    }

    /// @notice Hide identity or show identity from here, put images folder here, ipfs folder cid
    function setBaseURI(string memory __baseURI) external onlyOwner {
        baseURI = __baseURI;
    }

    /// @notice Send NFTs to a list of addresses
    function giftNft(address[] calldata _sendNftsTo, uint256 _howMany) external onlyOwner {
        for (uint256 i = 0; i < _sendNftsTo.length; i++) _safeMint(_sendNftsTo[i], _howMany);
        require(totalSupply() <= maxSupply, "Try minting less");
    }

    ////////////////////
    // HELPER METHOD  //
    ////////////////////

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

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function burn(uint256 tokenId) public override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }

    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external onlyOwner {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    function receiveCoin() external payable {}

    receive() external payable {}

    ///////////////////////////////
    // AUTO APPROVE MARKETPLACES //
    ///////////////////////////////

    mapping(address => bool) projectProxy;

    function flipProxyState(address proxyAddress) external onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function isApprovedForAll(address _owner, address _operator) public view override returns (bool) {
        return
            projectProxy[_operator] || // Auto Approve any Marketplace,
                _operator == OpenSea(0xa5409ec958C83C3f309868babACA7c86DCB077c1).proxies(_owner) ||
                _operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354 || // Looksrare
                _operator == 0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e || // Rarible
                _operator == 0x4feE7B061C97C9c496b01DbcE9CDb10c02f0a0Be // X2Y2
                ? true
                : super.isApprovedForAll(_owner, _operator);
    }

    //////////////
    // Presale  //
    //////////////

    uint256 presaleActiveTime = 1650297600;
    uint256 itemPricePresale = 0.09 ether;
    bytes32 whitelistMerkleRoot;

    function purchaseTokensPresale(uint256 _howMany, bytes32[] calldata _proof) external payable nonReentrant {
        _safeMint(msg.sender, _howMany);

        require(totalSupply() <= maxSupply, "Try mint less");
        require(tx.origin == msg.sender, "The caller is a contract");
        require(_howMany <= 50, "Mint min 1, max 50");
        require(inWhitelist(msg.sender, _proof), "You are not in presale");
        require(block.timestamp > presaleActiveTime, "Presale is not active");
        require(msg.value == _howMany * itemPricePresale, "Try to send more ETH");
    }

    function inWhitelist(address _owner, bytes32[] memory _proof) public view returns (bool) {
        return MerkleProof.verify(_proof, whitelistMerkleRoot, keccak256(abi.encodePacked(_owner)));
    }

    function setPresaleActiveTime(uint256 _presaleActiveTime) external onlyOwner {
        presaleActiveTime = _presaleActiveTime;
    }

    function setPresaleItemPrice(uint256 _itemPricePresale) external onlyOwner {
        itemPricePresale = _itemPricePresale;
    }

    function setWhitelist(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }
}

interface OpenSea {
    function proxies(address) external view returns (address);
}

File 2 of 20 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 20 : 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 20 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 5 of 20 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 6 of 20 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 7 of 20 : 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 8 of 20 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 20 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 10 of 20 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

File 11 of 20 : 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 12 of 20 : 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 20 : 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 14 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 16 of 20 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 17 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 18 of 20 : 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 19 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 20 of 20 : 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_sendNftsTo","type":"address[]"},{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"giftNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"inWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchaseTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"purchaseTokensPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"receiveCoin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleActiveTime","type":"uint256"}],"name":"setPresaleActiveTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_itemPricePresale","type":"uint256"}],"name":"setPresaleItemPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleActiveTime","type":"uint256"}],"name":"setSaleActiveTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060600160405280603681526020016200608360369139600c908051906020019062000035929190620003e9565b5063625d8b00600d556701aa535d3d0c0000600e5563625d8b0060105567013fbe85edc900006011553480156200006b57600080fd5b506040518060400160405280601181526020017f426f726564736f6e652047656e657369730000000000000000000000000000008152506040518060400160405280600381526020017f42534700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f0929190620003e9565b50806003908051906020019062000109929190620003e9565b506200011a6200016460201b60201c565b600081905550505062000142620001366200016d60201b60201c565b6200017560201b60201c565b6001600b819055506200015e336103e86200023b60201b60201c565b62000619565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024b620003df60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a390620004e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200031f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003169062000509565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620003f7906200053c565b90600052602060002090601f0160209004810192826200041b576000855562000467565b82601f106200043657805160ff191683800117855562000467565b8280016001018555821562000467579182015b828111156200046657825182559160200191906001019062000449565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b6000620004a8602a836200052b565b9150620004b582620005a1565b604082019050919050565b6000620004cf6019836200052b565b9150620004dc82620005f0565b602082019050919050565b60006020820190508181036000830152620005028162000499565b9050919050565b600060208201905081810360008301526200052481620004c0565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055557607f821691505b602082108114156200056c576200056b62000572565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b615a5a80620006296000396000f3fe60806040526004361061021e5760003560e01c80635bbb21771161012357806399a2557a116100ab578063c87b56dd1161006f578063c87b56dd146107be578063e05f1734146107fb578063e985e9c514610824578063f2fde38b14610861578063f73c814b1461088a57610225565b806399a2557a146106c9578063a22cb46514610706578063b4af48b61461072f578063b88d4fde14610758578063c23dc68f1461078157610225565b80637b97008d116100f25780637b97008d146105f15780638462151c1461060d5780638da5cb5b1461064a57806391b7f5ed1461067557806395d89b411461069e57610225565b80635bbb2177146105235780636352211e1461056057806370a082311461059d578063715018a6146105da57610225565b806323b872dd116101a657806342966c681161017557806342966c6814610482578063440bc7f3146104ab578063534dd535146104d457806355f804b3146104de578063574591c61461050757610225565b806323b872dd146103db5780632a55205a146104045780633ccfd60b1461044257806342842e0e1461045957610225565b8063095ea7b3116101ed578063095ea7b3146102f857806310c545731461032157806310fd74701461035e57806318160ddd146103875780631d9a2a55146103b257610225565b806301ffc9a71461022a57806304634d8d1461026757806306fdde0314610290578063081812fc146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061488c565b6108b3565b60405161025e9190614f69565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190614776565b6108c5565b005b34801561029c57600080fd5b506102a561094f565b6040516102b29190614f84565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061492f565b6109e1565b6040516102ef9190614e95565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906146e3565b610a5d565b005b34801561032d57600080fd5b5061034860048036038101906103439190614647565b610b62565b6040516103559190614f69565b60405180910390f35b34801561036a57600080fd5b506103856004803603810190610380919061492f565b610b9f565b005b34801561039357600080fd5b5061039c610c25565b6040516103a99190615161565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d4919061492f565b610c3c565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190614571565b610cc2565b005b34801561041057600080fd5b5061042b600480360381019061042691906149bc565b610cd2565b604051610439929190614efc565b60405180910390f35b34801561044e57600080fd5b50610457610ebd565b005b34801561046557600080fd5b50610480600480360381019061047b9190614571565b610f82565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061492f565b610fa2565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061485f565b610fb7565b005b6104dc61103d565b005b3480156104ea57600080fd5b50610505600480360381019061050091906148e6565b61103f565b005b610521600480360381019061051c919061495c565b6110d5565b005b34801561052f57600080fd5b5061054a60048036038101906105459190614816565b611355565b6040516105579190614f25565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061492f565b611416565b6040516105949190614e95565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906144d7565b61142c565b6040516105d19190615161565b60405180910390f35b3480156105e657600080fd5b506105ef6114fc565b005b61060b6004803603810190610606919061492f565b611584565b005b34801561061957600080fd5b50610634600480360381019061062f91906144d7565b611778565b6040516106419190614f47565b60405180910390f35b34801561065657600080fd5b5061065f61197a565b60405161066c9190614e95565b60405180910390f35b34801561068157600080fd5b5061069c6004803603810190610697919061492f565b6119a4565b005b3480156106aa57600080fd5b506106b3611a2a565b6040516106c09190614f84565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190614723565b611abc565b6040516106fd9190614f47565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906146a3565b611d83565b005b34801561073b57600080fd5b50610756600480360381019061075191906147b6565b611efb565b005b34801561076457600080fd5b5061077f600480360381019061077a91906145c4565b61201b565b005b34801561078d57600080fd5b506107a860048036038101906107a3919061492f565b612093565b6040516107b59190615146565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061492f565b6121b0565b6040516107f29190614f84565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d919061492f565b61224f565b005b34801561083057600080fd5b5061084b60048036038101906108469190614531565b6122d5565b6040516108589190614f69565b60405180910390f35b34801561086d57600080fd5b50610888600480360381019061088391906144d7565b6124f2565b005b34801561089657600080fd5b506108b160048036038101906108ac91906144d7565b6125ea565b005b60006108be8261270d565b9050919050565b6108cd612787565b73ffffffffffffffffffffffffffffffffffffffff166108eb61197a565b73ffffffffffffffffffffffffffffffffffffffff1614610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890615086565b60405180910390fd5b61094b828261278f565b5050565b60606002805461095e90615511565b80601f016020809104026020016040519081016040528092919081815260200182805461098a90615511565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82612925565b610a22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6882611416565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aef612787565b73ffffffffffffffffffffffffffffffffffffffff1614610b5257610b1b81610b16612787565b6122d5565b610b51576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5d838383612973565b505050565b6000610b978260125485604051602001610b7c9190614e56565b60405160208183030381529060405280519060200120612a25565b905092915050565b610ba7612787565b73ffffffffffffffffffffffffffffffffffffffff16610bc561197a565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290615086565b60405180910390fd5b8060108190555050565b6000610c2f612a3c565b6001546000540303905090565b610c44612787565b73ffffffffffffffffffffffffffffffffffffffff16610c6261197a565b73ffffffffffffffffffffffffffffffffffffffff1614610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90615086565b60405180910390fd5b80600d8190555050565b610ccd838383612a45565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e685760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e72612efb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e9e9190615397565b610ea89190615366565b90508160000151819350935050509250929050565b610ec5612787565b73ffffffffffffffffffffffffffffffffffffffff16610ee361197a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090615086565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7f573d6000803e3d6000fd5b50565b610f9d8383836040518060200160405280600081525061201b565b505050565b610fab81612f05565b610fb481612f13565b50565b610fbf612787565b73ffffffffffffffffffffffffffffffffffffffff16610fdd61197a565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90615086565b60405180910390fd5b8060128190555050565b565b611047612787565b73ffffffffffffffffffffffffffffffffffffffff1661106561197a565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290615086565b60405180910390fd5b80600c90805190602001906110d1929190614081565b5050565b6002600b54141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290615106565b60405180910390fd5b6002600b8190555061112d3384612f72565b611387611138610c25565b1115611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090615046565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90615006565b60405180910390fd5b603283111561122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906150c6565b60405180910390fd5b61127633838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610b62565b6112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90615066565b60405180910390fd5b60105442116112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f0906150a6565b60405180910390fd5b601154836113079190615397565b3414611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614fc6565b60405180910390fd5b6001600b81905550505050565b606060008251905060008167ffffffffffffffff811115611379576113786156ce565b5b6040519080825280602002602001820160405280156113b257816020015b61139f614107565b8152602001906001900390816113975790505b50905060005b82811461140b576113e28582815181106113d5576113d461569f565b5b6020026020010151612093565b8282815181106113f5576113f461569f565b5b60200260200101819052508060010190506113b8565b508092505050919050565b600061142182612f90565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611494576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611504612787565b73ffffffffffffffffffffffffffffffffffffffff1661152261197a565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90615086565b60405180910390fd5b611582600061321b565b565b6002600b5414156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190615106565b60405180910390fd5b6002600b819055506115dc3382612f72565b6113876115e7610c25565b1115611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90615046565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90615006565b60405180910390fd5b60328111156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906150c6565b60405180910390fd5b600d54421161171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590615026565b60405180910390fd5b600e548161172c9190615397565b341461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490614fc6565b60405180910390fd5b6001600b8190555050565b606060008060006117888561142c565b905060008167ffffffffffffffff8111156117a6576117a56156ce565b5b6040519080825280602002602001820160405280156117d45781602001602082028036833780820191505090505b5090506117df614107565b60006117e9612a3c565b90505b83861461196c57600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505091508160400151156118c557611961565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461190557816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561196057808387806001019850815181106119535761195261569f565b5b6020026020010181815250505b5b8060010190506117ec565b508195505050505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119ac612787565b73ffffffffffffffffffffffffffffffffffffffff166119ca61197a565b73ffffffffffffffffffffffffffffffffffffffff1614611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790615086565b60405180910390fd5b80600e8190555050565b606060038054611a3990615511565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6590615511565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b6060818310611af7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000549050611b07612a3c565b851015611b1957611b16612a3c565b94505b80841115611b25578093505b6000611b308761142c565b905084861015611b53576000868603905081811015611b4d578091505b50611b58565b600090505b60008167ffffffffffffffff811115611b7457611b736156ce565b5b604051908082528060200260200182016040528015611ba25781602001602082028036833780820191505090505b5090506000821415611bba5780945050505050611d7c565b6000611bc588612093565b905060008160400151611bda57816000015190505b60008990505b888114158015611bf05750848714155b15611d6e57600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509250826040015115611cc757611d63565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611d0757826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d625780848880600101995081518110611d5557611d5461569f565b5b6020026020010181815250505b5b806001019050611be0565b508583528296505050505050505b9392505050565b611d8b612787565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dfd612787565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eaa612787565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eef9190614f69565b60405180910390a35050565b611f03612787565b73ffffffffffffffffffffffffffffffffffffffff16611f2161197a565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90615086565b60405180910390fd5b60005b83839050811015611fc957611fb6848483818110611f9b57611f9a61569f565b5b9050602002016020810190611fb091906144d7565b83612f72565b8080611fc190615574565b915050611f7a565b50611387611fd5610c25565b1115612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90614fe6565b60405180910390fd5b505050565b612026848484612a45565b6120458373ffffffffffffffffffffffffffffffffffffffff166132e1565b1561208d5761205684848484613304565b61208c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61209b614107565b6120a3614107565b6120ab612a3c565b8310806120ba57506000548310155b156120c857809150506121ab565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561219e57809150506121ab565b6121a783612f90565b9150505b919050565b60606121bb82612925565b6121f1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121fb613464565b905060008151141561221c5760405180602001604052806000815250612247565b80612226846134f6565b604051602001612237929190614e71565b6040516020818303038152906040525b915050919050565b612257612787565b73ffffffffffffffffffffffffffffffffffffffff1661227561197a565b73ffffffffffffffffffffffffffffffffffffffff16146122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290615086565b60405180910390fd5b8060118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f6575073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff1663c4552791846040518263ffffffff1660e01b81526004016123779190614e95565b60206040518083038186803b15801561238f57600080fd5b505afa1580156123a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c79190614504565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612440575073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061248a575073f42aa99f011a1fa7cda90e5e98b277e306bca83e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806124d45750734fee7b061c97c9c496b01dbce9cdb10c02f0a0be73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6124e7576124e28383613657565b6124ea565b60015b905092915050565b6124fa612787565b73ffffffffffffffffffffffffffffffffffffffff1661251861197a565b73ffffffffffffffffffffffffffffffffffffffff161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590615086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614fa6565b60405180910390fd5b6125e78161321b565b50565b6125f2612787565b73ffffffffffffffffffffffffffffffffffffffff1661261061197a565b73ffffffffffffffffffffffffffffffffffffffff1614612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90615086565b60405180910390fd5b600f60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612780575061277f826136eb565b5b9050919050565b600033905090565b612797612efb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec906150e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90615126565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612930612a3c565b1115801561293f575060005482105b801561296c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082612a3285846137cd565b1490509392505050565b60006001905090565b6000612a5082612f90565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612adc612787565b73ffffffffffffffffffffffffffffffffffffffff161480612b0b5750612b0a85612b05612787565b6122d5565b5b80612b505750612b19612787565b73ffffffffffffffffffffffffffffffffffffffff16612b38846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfd8585856001613842565b612c0960008487612973565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e89576000548214612e8857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef48585856001613848565b5050505050565b6000612710905090565b612f1081600061384e565b50565b60096000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b612f8c828260405180602001604052806000815250613c3e565b5050565b612f98614107565b600082905080612fa6612a3c565b116131e4576000548110156131e3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516131e157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130c5578092505050613216565b5b6001156131e057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131db578092505050613216565b6130c6565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332a612787565b8786866040518563ffffffff1660e01b815260040161334c9493929190614eb0565b602060405180830381600087803b15801561336657600080fd5b505af192505050801561339757506040513d601f19601f8201168201806040525081019061339491906148b9565b60015b613411573d80600081146133c7576040519150601f19603f3d011682016040523d82523d6000602084013e6133cc565b606091505b50600081511415613409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461347390615511565b80601f016020809104026020016040519081016040528092919081815260200182805461349f90615511565b80156134ec5780601f106134c1576101008083540402835291602001916134ec565b820191906000526020600020905b8154815290600101906020018083116134cf57829003601f168201915b5050505050905090565b6060600082141561353e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613652565b600082905060005b6000821461357057808061355990615574565b915050600a826135699190615366565b9150613546565b60008167ffffffffffffffff81111561358c5761358b6156ce565b5b6040519080825280601f01601f1916602001820160405280156135be5781602001600182028036833780820191505090505b5090505b6000851461364b576001826135d791906153f1565b9150600a856135e691906155e1565b60306135f29190615310565b60f81b8183815181106136085761360761569f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136449190615366565b94506135c2565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806137b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137c657506137c582614000565b5b9050919050565b60008082905060005b84518110156138375760008582815181106137f4576137f361569f565b5b602002602001015190508083116138165761380f838261406a565b9250613823565b613820818461406a565b92505b50808061382f90615574565b9150506137d6565b508091505092915050565b50505050565b50505050565b600061385983612f90565b9050600081600001519050821561393a5760008173ffffffffffffffffffffffffffffffffffffffff1661388b612787565b73ffffffffffffffffffffffffffffffffffffffff1614806138ba57506138b9826138b4612787565b6122d5565b5b806138ff57506138c8612787565b73ffffffffffffffffffffffffffffffffffffffff166138e7866109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613938576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613948816000866001613842565b61395460008583612973565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613bb8576000548214613bb757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c26816000866001613848565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613cab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613ce6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613cf36000858386613842565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613eb48673ffffffffffffffffffffffffffffffffffffffff166132e1565b15613f79575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f296000878480600101955087613304565b613f5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613eba578260005414613f7457600080fd5b613fe4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613f7a575b816000819055505050613ffa6000858386613848565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b82805461408d90615511565b90600052602060002090601f0160209004810192826140af57600085556140f6565b82601f106140c857805160ff19168380011785556140f6565b828001600101855582156140f6579182015b828111156140f55782518255916020019190600101906140da565b5b509050614103919061414a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561416357600081600090555060010161414b565b5090565b600061417a614175846151a1565b61517c565b9050808382526020820190508285602086028201111561419d5761419c615707565b5b60005b858110156141cd57816141b38882614412565b8452602084019350602083019250506001810190506141a0565b5050509392505050565b60006141ea6141e5846151cd565b61517c565b9050808382526020820190508285602086028201111561420d5761420c615707565b5b60005b8581101561423d578161422388826144ad565b845260208401935060208301925050600181019050614210565b5050509392505050565b600061425a614255846151f9565b61517c565b9050828152602081018484840111156142765761427561570c565b5b6142818482856154cf565b509392505050565b600061429c6142978461522a565b61517c565b9050828152602081018484840111156142b8576142b761570c565b5b6142c38482856154cf565b509392505050565b6000813590506142da8161599a565b92915050565b6000815190506142ef8161599a565b92915050565b60008083601f84011261430b5761430a615702565b5b8235905067ffffffffffffffff811115614328576143276156fd565b5b60208301915083602082028301111561434457614343615707565b5b9250929050565b60008083601f84011261436157614360615702565b5b8235905067ffffffffffffffff81111561437e5761437d6156fd565b5b60208301915083602082028301111561439a57614399615707565b5b9250929050565b600082601f8301126143b6576143b5615702565b5b81356143c6848260208601614167565b91505092915050565b600082601f8301126143e4576143e3615702565b5b81356143f48482602086016141d7565b91505092915050565b60008135905061440c816159b1565b92915050565b600081359050614421816159c8565b92915050565b600081359050614436816159df565b92915050565b60008151905061444b816159df565b92915050565b600082601f83011261446657614465615702565b5b8135614476848260208601614247565b91505092915050565b600082601f83011261449457614493615702565b5b81356144a4848260208601614289565b91505092915050565b6000813590506144bc816159f6565b92915050565b6000813590506144d181615a0d565b92915050565b6000602082840312156144ed576144ec615716565b5b60006144fb848285016142cb565b91505092915050565b60006020828403121561451a57614519615716565b5b6000614528848285016142e0565b91505092915050565b6000806040838503121561454857614547615716565b5b6000614556858286016142cb565b9250506020614567858286016142cb565b9150509250929050565b60008060006060848603121561458a57614589615716565b5b6000614598868287016142cb565b93505060206145a9868287016142cb565b92505060406145ba868287016144ad565b9150509250925092565b600080600080608085870312156145de576145dd615716565b5b60006145ec878288016142cb565b94505060206145fd878288016142cb565b935050604061460e878288016144ad565b925050606085013567ffffffffffffffff81111561462f5761462e615711565b5b61463b87828801614451565b91505092959194509250565b6000806040838503121561465e5761465d615716565b5b600061466c858286016142cb565b925050602083013567ffffffffffffffff81111561468d5761468c615711565b5b614699858286016143a1565b9150509250929050565b600080604083850312156146ba576146b9615716565b5b60006146c8858286016142cb565b92505060206146d9858286016143fd565b9150509250929050565b600080604083850312156146fa576146f9615716565b5b6000614708858286016142cb565b9250506020614719858286016144ad565b9150509250929050565b60008060006060848603121561473c5761473b615716565b5b600061474a868287016142cb565b935050602061475b868287016144ad565b925050604061476c868287016144ad565b9150509250925092565b6000806040838503121561478d5761478c615716565b5b600061479b858286016142cb565b92505060206147ac858286016144c2565b9150509250929050565b6000806000604084860312156147cf576147ce615716565b5b600084013567ffffffffffffffff8111156147ed576147ec615711565b5b6147f9868287016142f5565b9350935050602061480c868287016144ad565b9150509250925092565b60006020828403121561482c5761482b615716565b5b600082013567ffffffffffffffff81111561484a57614849615711565b5b614856848285016143cf565b91505092915050565b60006020828403121561487557614874615716565b5b600061488384828501614412565b91505092915050565b6000602082840312156148a2576148a1615716565b5b60006148b084828501614427565b91505092915050565b6000602082840312156148cf576148ce615716565b5b60006148dd8482850161443c565b91505092915050565b6000602082840312156148fc576148fb615716565b5b600082013567ffffffffffffffff81111561491a57614919615711565b5b6149268482850161447f565b91505092915050565b60006020828403121561494557614944615716565b5b6000614953848285016144ad565b91505092915050565b60008060006040848603121561497557614974615716565b5b6000614983868287016144ad565b935050602084013567ffffffffffffffff8111156149a4576149a3615711565b5b6149b08682870161434b565b92509250509250925092565b600080604083850312156149d3576149d2615716565b5b60006149e1858286016144ad565b92505060206149f2858286016144ad565b9150509250929050565b6000614a088383614da5565b60608301905092915050565b6000614a208383614e29565b60208301905092915050565b614a3581615425565b82525050565b614a4481615425565b82525050565b614a5b614a5682615425565b6155bd565b82525050565b6000614a6c8261527b565b614a7681856152c1565b9350614a818361525b565b8060005b83811015614ab2578151614a9988826149fc565b9750614aa4836152a7565b925050600181019050614a85565b5085935050505092915050565b6000614aca82615286565b614ad481856152d2565b9350614adf8361526b565b8060005b83811015614b10578151614af78882614a14565b9750614b02836152b4565b925050600181019050614ae3565b5085935050505092915050565b614b2681615437565b82525050565b614b3581615437565b82525050565b6000614b4682615291565b614b5081856152e3565b9350614b608185602086016154de565b614b698161571b565b840191505092915050565b6000614b7f8261529c565b614b8981856152f4565b9350614b998185602086016154de565b614ba28161571b565b840191505092915050565b6000614bb88261529c565b614bc28185615305565b9350614bd28185602086016154de565b80840191505092915050565b6000614beb6026836152f4565b9150614bf682615739565b604082019050919050565b6000614c0e6014836152f4565b9150614c1982615788565b602082019050919050565b6000614c316010836152f4565b9150614c3c826157b1565b602082019050919050565b6000614c546018836152f4565b9150614c5f826157da565b602082019050919050565b6000614c776012836152f4565b9150614c8282615803565b602082019050919050565b6000614c9a600d836152f4565b9150614ca58261582c565b602082019050919050565b6000614cbd6016836152f4565b9150614cc882615855565b602082019050919050565b6000614ce06020836152f4565b9150614ceb8261587e565b602082019050919050565b6000614d036015836152f4565b9150614d0e826158a7565b602082019050919050565b6000614d266012836152f4565b9150614d31826158d0565b602082019050919050565b6000614d49602a836152f4565b9150614d54826158f9565b604082019050919050565b6000614d6c601f836152f4565b9150614d7782615948565b602082019050919050565b6000614d8f6019836152f4565b9150614d9a82615971565b602082019050919050565b606082016000820151614dbb6000850182614a2c565b506020820151614dce6020850182614e47565b506040820151614de16040850182614b1d565b50505050565b606082016000820151614dfd6000850182614a2c565b506020820151614e106020850182614e47565b506040820151614e236040850182614b1d565b50505050565b614e3281615499565b82525050565b614e4181615499565b82525050565b614e50816154a3565b82525050565b6000614e628284614a4a565b60148201915081905092915050565b6000614e7d8285614bad565b9150614e898284614bad565b91508190509392505050565b6000602082019050614eaa6000830184614a3b565b92915050565b6000608082019050614ec56000830187614a3b565b614ed26020830186614a3b565b614edf6040830185614e38565b8181036060830152614ef18184614b3b565b905095945050505050565b6000604082019050614f116000830185614a3b565b614f1e6020830184614e38565b9392505050565b60006020820190508181036000830152614f3f8184614a61565b905092915050565b60006020820190508181036000830152614f618184614abf565b905092915050565b6000602082019050614f7e6000830184614b2c565b92915050565b60006020820190508181036000830152614f9e8184614b74565b905092915050565b60006020820190508181036000830152614fbf81614bde565b9050919050565b60006020820190508181036000830152614fdf81614c01565b9050919050565b60006020820190508181036000830152614fff81614c24565b9050919050565b6000602082019050818103600083015261501f81614c47565b9050919050565b6000602082019050818103600083015261503f81614c6a565b9050919050565b6000602082019050818103600083015261505f81614c8d565b9050919050565b6000602082019050818103600083015261507f81614cb0565b9050919050565b6000602082019050818103600083015261509f81614cd3565b9050919050565b600060208201905081810360008301526150bf81614cf6565b9050919050565b600060208201905081810360008301526150df81614d19565b9050919050565b600060208201905081810360008301526150ff81614d3c565b9050919050565b6000602082019050818103600083015261511f81614d5f565b9050919050565b6000602082019050818103600083015261513f81614d82565b9050919050565b600060608201905061515b6000830184614de7565b92915050565b60006020820190506151766000830184614e38565b92915050565b6000615186615197565b90506151928282615543565b919050565b6000604051905090565b600067ffffffffffffffff8211156151bc576151bb6156ce565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151e8576151e76156ce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615214576152136156ce565b5b61521d8261571b565b9050602081019050919050565b600067ffffffffffffffff821115615245576152446156ce565b5b61524e8261571b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061531b82615499565b915061532683615499565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561535b5761535a615612565b5b828201905092915050565b600061537182615499565b915061537c83615499565b92508261538c5761538b615641565b5b828204905092915050565b60006153a282615499565b91506153ad83615499565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153e6576153e5615612565b5b828202905092915050565b60006153fc82615499565b915061540783615499565b92508282101561541a57615419615612565b5b828203905092915050565b600061543082615479565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156154fc5780820151818401526020810190506154e1565b8381111561550b576000848401525b50505050565b6000600282049050600182168061552957607f821691505b6020821081141561553d5761553c615670565b5b50919050565b61554c8261571b565b810181811067ffffffffffffffff8211171561556b5761556a6156ce565b5b80604052505050565b600061557f82615499565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b2576155b1615612565b5b600182019050919050565b60006155c8826155cf565b9050919050565b60006155da8261572c565b9050919050565b60006155ec82615499565b91506155f783615499565b92508261560757615606615641565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b7f547279206d696e74696e67206c65737300000000000000000000000000000000600082015250565b7f5468652063616c6c6572206973206120636f6e74726163740000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f547279206d696e74206c65737300000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420696e2070726573616c6500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4d696e74206d696e20312c206d61782035300000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6159a381615425565b81146159ae57600080fd5b50565b6159ba81615437565b81146159c557600080fd5b50565b6159d181615443565b81146159dc57600080fd5b50565b6159e88161544d565b81146159f357600080fd5b50565b6159ff81615499565b8114615a0a57600080fd5b50565b615a16816154b7565b8114615a2157600080fd5b5056fea2646970667358221220c2be7257b1dbd2bf15a6c155cc9bb1d05fd0f2927829e07d0aa476e59760d7bd64736f6c63430008070033697066733a2f2f516d4e516e626a7565736663534d7a63445368785a55316f47516a5861515776595863684e5957486569656f6e682f

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80635bbb21771161012357806399a2557a116100ab578063c87b56dd1161006f578063c87b56dd146107be578063e05f1734146107fb578063e985e9c514610824578063f2fde38b14610861578063f73c814b1461088a57610225565b806399a2557a146106c9578063a22cb46514610706578063b4af48b61461072f578063b88d4fde14610758578063c23dc68f1461078157610225565b80637b97008d116100f25780637b97008d146105f15780638462151c1461060d5780638da5cb5b1461064a57806391b7f5ed1461067557806395d89b411461069e57610225565b80635bbb2177146105235780636352211e1461056057806370a082311461059d578063715018a6146105da57610225565b806323b872dd116101a657806342966c681161017557806342966c6814610482578063440bc7f3146104ab578063534dd535146104d457806355f804b3146104de578063574591c61461050757610225565b806323b872dd146103db5780632a55205a146104045780633ccfd60b1461044257806342842e0e1461045957610225565b8063095ea7b3116101ed578063095ea7b3146102f857806310c545731461032157806310fd74701461035e57806318160ddd146103875780631d9a2a55146103b257610225565b806301ffc9a71461022a57806304634d8d1461026757806306fdde0314610290578063081812fc146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061488c565b6108b3565b60405161025e9190614f69565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190614776565b6108c5565b005b34801561029c57600080fd5b506102a561094f565b6040516102b29190614f84565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061492f565b6109e1565b6040516102ef9190614e95565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906146e3565b610a5d565b005b34801561032d57600080fd5b5061034860048036038101906103439190614647565b610b62565b6040516103559190614f69565b60405180910390f35b34801561036a57600080fd5b506103856004803603810190610380919061492f565b610b9f565b005b34801561039357600080fd5b5061039c610c25565b6040516103a99190615161565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d4919061492f565b610c3c565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190614571565b610cc2565b005b34801561041057600080fd5b5061042b600480360381019061042691906149bc565b610cd2565b604051610439929190614efc565b60405180910390f35b34801561044e57600080fd5b50610457610ebd565b005b34801561046557600080fd5b50610480600480360381019061047b9190614571565b610f82565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061492f565b610fa2565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061485f565b610fb7565b005b6104dc61103d565b005b3480156104ea57600080fd5b50610505600480360381019061050091906148e6565b61103f565b005b610521600480360381019061051c919061495c565b6110d5565b005b34801561052f57600080fd5b5061054a60048036038101906105459190614816565b611355565b6040516105579190614f25565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061492f565b611416565b6040516105949190614e95565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf91906144d7565b61142c565b6040516105d19190615161565b60405180910390f35b3480156105e657600080fd5b506105ef6114fc565b005b61060b6004803603810190610606919061492f565b611584565b005b34801561061957600080fd5b50610634600480360381019061062f91906144d7565b611778565b6040516106419190614f47565b60405180910390f35b34801561065657600080fd5b5061065f61197a565b60405161066c9190614e95565b60405180910390f35b34801561068157600080fd5b5061069c6004803603810190610697919061492f565b6119a4565b005b3480156106aa57600080fd5b506106b3611a2a565b6040516106c09190614f84565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190614723565b611abc565b6040516106fd9190614f47565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906146a3565b611d83565b005b34801561073b57600080fd5b50610756600480360381019061075191906147b6565b611efb565b005b34801561076457600080fd5b5061077f600480360381019061077a91906145c4565b61201b565b005b34801561078d57600080fd5b506107a860048036038101906107a3919061492f565b612093565b6040516107b59190615146565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e0919061492f565b6121b0565b6040516107f29190614f84565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d919061492f565b61224f565b005b34801561083057600080fd5b5061084b60048036038101906108469190614531565b6122d5565b6040516108589190614f69565b60405180910390f35b34801561086d57600080fd5b50610888600480360381019061088391906144d7565b6124f2565b005b34801561089657600080fd5b506108b160048036038101906108ac91906144d7565b6125ea565b005b60006108be8261270d565b9050919050565b6108cd612787565b73ffffffffffffffffffffffffffffffffffffffff166108eb61197a565b73ffffffffffffffffffffffffffffffffffffffff1614610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890615086565b60405180910390fd5b61094b828261278f565b5050565b60606002805461095e90615511565b80601f016020809104026020016040519081016040528092919081815260200182805461098a90615511565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82612925565b610a22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6882611416565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aef612787565b73ffffffffffffffffffffffffffffffffffffffff1614610b5257610b1b81610b16612787565b6122d5565b610b51576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5d838383612973565b505050565b6000610b978260125485604051602001610b7c9190614e56565b60405160208183030381529060405280519060200120612a25565b905092915050565b610ba7612787565b73ffffffffffffffffffffffffffffffffffffffff16610bc561197a565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290615086565b60405180910390fd5b8060108190555050565b6000610c2f612a3c565b6001546000540303905090565b610c44612787565b73ffffffffffffffffffffffffffffffffffffffff16610c6261197a565b73ffffffffffffffffffffffffffffffffffffffff1614610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90615086565b60405180910390fd5b80600d8190555050565b610ccd838383612a45565b505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610e685760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e72612efb565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e9e9190615397565b610ea89190615366565b90508160000151819350935050509250929050565b610ec5612787565b73ffffffffffffffffffffffffffffffffffffffff16610ee361197a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090615086565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f7f573d6000803e3d6000fd5b50565b610f9d8383836040518060200160405280600081525061201b565b505050565b610fab81612f05565b610fb481612f13565b50565b610fbf612787565b73ffffffffffffffffffffffffffffffffffffffff16610fdd61197a565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90615086565b60405180910390fd5b8060128190555050565b565b611047612787565b73ffffffffffffffffffffffffffffffffffffffff1661106561197a565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290615086565b60405180910390fd5b80600c90805190602001906110d1929190614081565b5050565b6002600b54141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290615106565b60405180910390fd5b6002600b8190555061112d3384612f72565b611387611138610c25565b1115611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090615046565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90615006565b60405180910390fd5b603283111561122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906150c6565b60405180910390fd5b61127633838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610b62565b6112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90615066565b60405180910390fd5b60105442116112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f0906150a6565b60405180910390fd5b601154836113079190615397565b3414611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90614fc6565b60405180910390fd5b6001600b81905550505050565b606060008251905060008167ffffffffffffffff811115611379576113786156ce565b5b6040519080825280602002602001820160405280156113b257816020015b61139f614107565b8152602001906001900390816113975790505b50905060005b82811461140b576113e28582815181106113d5576113d461569f565b5b6020026020010151612093565b8282815181106113f5576113f461569f565b5b60200260200101819052508060010190506113b8565b508092505050919050565b600061142182612f90565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611494576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611504612787565b73ffffffffffffffffffffffffffffffffffffffff1661152261197a565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90615086565b60405180910390fd5b611582600061321b565b565b6002600b5414156115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190615106565b60405180910390fd5b6002600b819055506115dc3382612f72565b6113876115e7610c25565b1115611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90615046565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90615006565b60405180910390fd5b60328111156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906150c6565b60405180910390fd5b600d54421161171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590615026565b60405180910390fd5b600e548161172c9190615397565b341461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490614fc6565b60405180910390fd5b6001600b8190555050565b606060008060006117888561142c565b905060008167ffffffffffffffff8111156117a6576117a56156ce565b5b6040519080825280602002602001820160405280156117d45781602001602082028036833780820191505090505b5090506117df614107565b60006117e9612a3c565b90505b83861461196c57600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505091508160400151156118c557611961565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461190557816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561196057808387806001019850815181106119535761195261569f565b5b6020026020010181815250505b5b8060010190506117ec565b508195505050505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119ac612787565b73ffffffffffffffffffffffffffffffffffffffff166119ca61197a565b73ffffffffffffffffffffffffffffffffffffffff1614611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790615086565b60405180910390fd5b80600e8190555050565b606060038054611a3990615511565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6590615511565b8015611ab25780601f10611a8757610100808354040283529160200191611ab2565b820191906000526020600020905b815481529060010190602001808311611a9557829003601f168201915b5050505050905090565b6060818310611af7576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000549050611b07612a3c565b851015611b1957611b16612a3c565b94505b80841115611b25578093505b6000611b308761142c565b905084861015611b53576000868603905081811015611b4d578091505b50611b58565b600090505b60008167ffffffffffffffff811115611b7457611b736156ce565b5b604051908082528060200260200182016040528015611ba25781602001602082028036833780820191505090505b5090506000821415611bba5780945050505050611d7c565b6000611bc588612093565b905060008160400151611bda57816000015190505b60008990505b888114158015611bf05750848714155b15611d6e57600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509250826040015115611cc757611d63565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611d0757826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d625780848880600101995081518110611d5557611d5461569f565b5b6020026020010181815250505b5b806001019050611be0565b508583528296505050505050505b9392505050565b611d8b612787565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611dfd612787565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eaa612787565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eef9190614f69565b60405180910390a35050565b611f03612787565b73ffffffffffffffffffffffffffffffffffffffff16611f2161197a565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90615086565b60405180910390fd5b60005b83839050811015611fc957611fb6848483818110611f9b57611f9a61569f565b5b9050602002016020810190611fb091906144d7565b83612f72565b8080611fc190615574565b915050611f7a565b50611387611fd5610c25565b1115612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90614fe6565b60405180910390fd5b505050565b612026848484612a45565b6120458373ffffffffffffffffffffffffffffffffffffffff166132e1565b1561208d5761205684848484613304565b61208c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61209b614107565b6120a3614107565b6120ab612a3c565b8310806120ba57506000548310155b156120c857809150506121ab565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561219e57809150506121ab565b6121a783612f90565b9150505b919050565b60606121bb82612925565b6121f1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121fb613464565b905060008151141561221c5760405180602001604052806000815250612247565b80612226846134f6565b604051602001612237929190614e71565b6040516020818303038152906040525b915050919050565b612257612787565b73ffffffffffffffffffffffffffffffffffffffff1661227561197a565b73ffffffffffffffffffffffffffffffffffffffff16146122cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c290615086565b60405180910390fd5b8060118190555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f6575073a5409ec958c83c3f309868babaca7c86dcb077c173ffffffffffffffffffffffffffffffffffffffff1663c4552791846040518263ffffffff1660e01b81526004016123779190614e95565b60206040518083038186803b15801561238f57600080fd5b505afa1580156123a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c79190614504565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612440575073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061248a575073f42aa99f011a1fa7cda90e5e98b277e306bca83e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806124d45750734fee7b061c97c9c496b01dbce9cdb10c02f0a0be73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6124e7576124e28383613657565b6124ea565b60015b905092915050565b6124fa612787565b73ffffffffffffffffffffffffffffffffffffffff1661251861197a565b73ffffffffffffffffffffffffffffffffffffffff161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590615086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614fa6565b60405180910390fd5b6125e78161321b565b50565b6125f2612787565b73ffffffffffffffffffffffffffffffffffffffff1661261061197a565b73ffffffffffffffffffffffffffffffffffffffff1614612666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265d90615086565b60405180910390fd5b600f60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612780575061277f826136eb565b5b9050919050565b600033905090565b612797612efb565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec906150e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c90615126565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612930612a3c565b1115801561293f575060005482105b801561296c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082612a3285846137cd565b1490509392505050565b60006001905090565b6000612a5082612f90565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612adc612787565b73ffffffffffffffffffffffffffffffffffffffff161480612b0b5750612b0a85612b05612787565b6122d5565b5b80612b505750612b19612787565b73ffffffffffffffffffffffffffffffffffffffff16612b38846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfd8585856001613842565b612c0960008487612973565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e89576000548214612e8857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef48585856001613848565b5050505050565b6000612710905090565b612f1081600061384e565b50565b60096000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b612f8c828260405180602001604052806000815250613c3e565b5050565b612f98614107565b600082905080612fa6612a3c565b116131e4576000548110156131e3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516131e157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130c5578092505050613216565b5b6001156131e057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131db578092505050613216565b6130c6565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261332a612787565b8786866040518563ffffffff1660e01b815260040161334c9493929190614eb0565b602060405180830381600087803b15801561336657600080fd5b505af192505050801561339757506040513d601f19601f8201168201806040525081019061339491906148b9565b60015b613411573d80600081146133c7576040519150601f19603f3d011682016040523d82523d6000602084013e6133cc565b606091505b50600081511415613409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461347390615511565b80601f016020809104026020016040519081016040528092919081815260200182805461349f90615511565b80156134ec5780601f106134c1576101008083540402835291602001916134ec565b820191906000526020600020905b8154815290600101906020018083116134cf57829003601f168201915b5050505050905090565b6060600082141561353e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613652565b600082905060005b6000821461357057808061355990615574565b915050600a826135699190615366565b9150613546565b60008167ffffffffffffffff81111561358c5761358b6156ce565b5b6040519080825280601f01601f1916602001820160405280156135be5781602001600182028036833780820191505090505b5090505b6000851461364b576001826135d791906153f1565b9150600a856135e691906155e1565b60306135f29190615310565b60f81b8183815181106136085761360761569f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136449190615366565b94506135c2565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806137b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137c657506137c582614000565b5b9050919050565b60008082905060005b84518110156138375760008582815181106137f4576137f361569f565b5b602002602001015190508083116138165761380f838261406a565b9250613823565b613820818461406a565b92505b50808061382f90615574565b9150506137d6565b508091505092915050565b50505050565b50505050565b600061385983612f90565b9050600081600001519050821561393a5760008173ffffffffffffffffffffffffffffffffffffffff1661388b612787565b73ffffffffffffffffffffffffffffffffffffffff1614806138ba57506138b9826138b4612787565b6122d5565b5b806138ff57506138c8612787565b73ffffffffffffffffffffffffffffffffffffffff166138e7866109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613938576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613948816000866001613842565b61395460008583612973565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613bb8576000548214613bb757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613c26816000866001613848565b60016000815480929190600101919050555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613cab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613ce6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613cf36000858386613842565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613eb48673ffffffffffffffffffffffffffffffffffffffff166132e1565b15613f79575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f296000878480600101955087613304565b613f5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613eba578260005414613f7457600080fd5b613fe4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613f7a575b816000819055505050613ffa6000858386613848565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082600052816020526040600020905092915050565b82805461408d90615511565b90600052602060002090601f0160209004810192826140af57600085556140f6565b82601f106140c857805160ff19168380011785556140f6565b828001600101855582156140f6579182015b828111156140f55782518255916020019190600101906140da565b5b509050614103919061414a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561416357600081600090555060010161414b565b5090565b600061417a614175846151a1565b61517c565b9050808382526020820190508285602086028201111561419d5761419c615707565b5b60005b858110156141cd57816141b38882614412565b8452602084019350602083019250506001810190506141a0565b5050509392505050565b60006141ea6141e5846151cd565b61517c565b9050808382526020820190508285602086028201111561420d5761420c615707565b5b60005b8581101561423d578161422388826144ad565b845260208401935060208301925050600181019050614210565b5050509392505050565b600061425a614255846151f9565b61517c565b9050828152602081018484840111156142765761427561570c565b5b6142818482856154cf565b509392505050565b600061429c6142978461522a565b61517c565b9050828152602081018484840111156142b8576142b761570c565b5b6142c38482856154cf565b509392505050565b6000813590506142da8161599a565b92915050565b6000815190506142ef8161599a565b92915050565b60008083601f84011261430b5761430a615702565b5b8235905067ffffffffffffffff811115614328576143276156fd565b5b60208301915083602082028301111561434457614343615707565b5b9250929050565b60008083601f84011261436157614360615702565b5b8235905067ffffffffffffffff81111561437e5761437d6156fd565b5b60208301915083602082028301111561439a57614399615707565b5b9250929050565b600082601f8301126143b6576143b5615702565b5b81356143c6848260208601614167565b91505092915050565b600082601f8301126143e4576143e3615702565b5b81356143f48482602086016141d7565b91505092915050565b60008135905061440c816159b1565b92915050565b600081359050614421816159c8565b92915050565b600081359050614436816159df565b92915050565b60008151905061444b816159df565b92915050565b600082601f83011261446657614465615702565b5b8135614476848260208601614247565b91505092915050565b600082601f83011261449457614493615702565b5b81356144a4848260208601614289565b91505092915050565b6000813590506144bc816159f6565b92915050565b6000813590506144d181615a0d565b92915050565b6000602082840312156144ed576144ec615716565b5b60006144fb848285016142cb565b91505092915050565b60006020828403121561451a57614519615716565b5b6000614528848285016142e0565b91505092915050565b6000806040838503121561454857614547615716565b5b6000614556858286016142cb565b9250506020614567858286016142cb565b9150509250929050565b60008060006060848603121561458a57614589615716565b5b6000614598868287016142cb565b93505060206145a9868287016142cb565b92505060406145ba868287016144ad565b9150509250925092565b600080600080608085870312156145de576145dd615716565b5b60006145ec878288016142cb565b94505060206145fd878288016142cb565b935050604061460e878288016144ad565b925050606085013567ffffffffffffffff81111561462f5761462e615711565b5b61463b87828801614451565b91505092959194509250565b6000806040838503121561465e5761465d615716565b5b600061466c858286016142cb565b925050602083013567ffffffffffffffff81111561468d5761468c615711565b5b614699858286016143a1565b9150509250929050565b600080604083850312156146ba576146b9615716565b5b60006146c8858286016142cb565b92505060206146d9858286016143fd565b9150509250929050565b600080604083850312156146fa576146f9615716565b5b6000614708858286016142cb565b9250506020614719858286016144ad565b9150509250929050565b60008060006060848603121561473c5761473b615716565b5b600061474a868287016142cb565b935050602061475b868287016144ad565b925050604061476c868287016144ad565b9150509250925092565b6000806040838503121561478d5761478c615716565b5b600061479b858286016142cb565b92505060206147ac858286016144c2565b9150509250929050565b6000806000604084860312156147cf576147ce615716565b5b600084013567ffffffffffffffff8111156147ed576147ec615711565b5b6147f9868287016142f5565b9350935050602061480c868287016144ad565b9150509250925092565b60006020828403121561482c5761482b615716565b5b600082013567ffffffffffffffff81111561484a57614849615711565b5b614856848285016143cf565b91505092915050565b60006020828403121561487557614874615716565b5b600061488384828501614412565b91505092915050565b6000602082840312156148a2576148a1615716565b5b60006148b084828501614427565b91505092915050565b6000602082840312156148cf576148ce615716565b5b60006148dd8482850161443c565b91505092915050565b6000602082840312156148fc576148fb615716565b5b600082013567ffffffffffffffff81111561491a57614919615711565b5b6149268482850161447f565b91505092915050565b60006020828403121561494557614944615716565b5b6000614953848285016144ad565b91505092915050565b60008060006040848603121561497557614974615716565b5b6000614983868287016144ad565b935050602084013567ffffffffffffffff8111156149a4576149a3615711565b5b6149b08682870161434b565b92509250509250925092565b600080604083850312156149d3576149d2615716565b5b60006149e1858286016144ad565b92505060206149f2858286016144ad565b9150509250929050565b6000614a088383614da5565b60608301905092915050565b6000614a208383614e29565b60208301905092915050565b614a3581615425565b82525050565b614a4481615425565b82525050565b614a5b614a5682615425565b6155bd565b82525050565b6000614a6c8261527b565b614a7681856152c1565b9350614a818361525b565b8060005b83811015614ab2578151614a9988826149fc565b9750614aa4836152a7565b925050600181019050614a85565b5085935050505092915050565b6000614aca82615286565b614ad481856152d2565b9350614adf8361526b565b8060005b83811015614b10578151614af78882614a14565b9750614b02836152b4565b925050600181019050614ae3565b5085935050505092915050565b614b2681615437565b82525050565b614b3581615437565b82525050565b6000614b4682615291565b614b5081856152e3565b9350614b608185602086016154de565b614b698161571b565b840191505092915050565b6000614b7f8261529c565b614b8981856152f4565b9350614b998185602086016154de565b614ba28161571b565b840191505092915050565b6000614bb88261529c565b614bc28185615305565b9350614bd28185602086016154de565b80840191505092915050565b6000614beb6026836152f4565b9150614bf682615739565b604082019050919050565b6000614c0e6014836152f4565b9150614c1982615788565b602082019050919050565b6000614c316010836152f4565b9150614c3c826157b1565b602082019050919050565b6000614c546018836152f4565b9150614c5f826157da565b602082019050919050565b6000614c776012836152f4565b9150614c8282615803565b602082019050919050565b6000614c9a600d836152f4565b9150614ca58261582c565b602082019050919050565b6000614cbd6016836152f4565b9150614cc882615855565b602082019050919050565b6000614ce06020836152f4565b9150614ceb8261587e565b602082019050919050565b6000614d036015836152f4565b9150614d0e826158a7565b602082019050919050565b6000614d266012836152f4565b9150614d31826158d0565b602082019050919050565b6000614d49602a836152f4565b9150614d54826158f9565b604082019050919050565b6000614d6c601f836152f4565b9150614d7782615948565b602082019050919050565b6000614d8f6019836152f4565b9150614d9a82615971565b602082019050919050565b606082016000820151614dbb6000850182614a2c565b506020820151614dce6020850182614e47565b506040820151614de16040850182614b1d565b50505050565b606082016000820151614dfd6000850182614a2c565b506020820151614e106020850182614e47565b506040820151614e236040850182614b1d565b50505050565b614e3281615499565b82525050565b614e4181615499565b82525050565b614e50816154a3565b82525050565b6000614e628284614a4a565b60148201915081905092915050565b6000614e7d8285614bad565b9150614e898284614bad565b91508190509392505050565b6000602082019050614eaa6000830184614a3b565b92915050565b6000608082019050614ec56000830187614a3b565b614ed26020830186614a3b565b614edf6040830185614e38565b8181036060830152614ef18184614b3b565b905095945050505050565b6000604082019050614f116000830185614a3b565b614f1e6020830184614e38565b9392505050565b60006020820190508181036000830152614f3f8184614a61565b905092915050565b60006020820190508181036000830152614f618184614abf565b905092915050565b6000602082019050614f7e6000830184614b2c565b92915050565b60006020820190508181036000830152614f9e8184614b74565b905092915050565b60006020820190508181036000830152614fbf81614bde565b9050919050565b60006020820190508181036000830152614fdf81614c01565b9050919050565b60006020820190508181036000830152614fff81614c24565b9050919050565b6000602082019050818103600083015261501f81614c47565b9050919050565b6000602082019050818103600083015261503f81614c6a565b9050919050565b6000602082019050818103600083015261505f81614c8d565b9050919050565b6000602082019050818103600083015261507f81614cb0565b9050919050565b6000602082019050818103600083015261509f81614cd3565b9050919050565b600060208201905081810360008301526150bf81614cf6565b9050919050565b600060208201905081810360008301526150df81614d19565b9050919050565b600060208201905081810360008301526150ff81614d3c565b9050919050565b6000602082019050818103600083015261511f81614d5f565b9050919050565b6000602082019050818103600083015261513f81614d82565b9050919050565b600060608201905061515b6000830184614de7565b92915050565b60006020820190506151766000830184614e38565b92915050565b6000615186615197565b90506151928282615543565b919050565b6000604051905090565b600067ffffffffffffffff8211156151bc576151bb6156ce565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151e8576151e76156ce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615214576152136156ce565b5b61521d8261571b565b9050602081019050919050565b600067ffffffffffffffff821115615245576152446156ce565b5b61524e8261571b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061531b82615499565b915061532683615499565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561535b5761535a615612565b5b828201905092915050565b600061537182615499565b915061537c83615499565b92508261538c5761538b615641565b5b828204905092915050565b60006153a282615499565b91506153ad83615499565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153e6576153e5615612565b5b828202905092915050565b60006153fc82615499565b915061540783615499565b92508282101561541a57615419615612565b5b828203905092915050565b600061543082615479565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156154fc5780820151818401526020810190506154e1565b8381111561550b576000848401525b50505050565b6000600282049050600182168061552957607f821691505b6020821081141561553d5761553c615670565b5b50919050565b61554c8261571b565b810181811067ffffffffffffffff8211171561556b5761556a6156ce565b5b80604052505050565b600061557f82615499565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155b2576155b1615612565b5b600182019050919050565b60006155c8826155cf565b9050919050565b60006155da8261572c565b9050919050565b60006155ec82615499565b91506155f783615499565b92508261560757615606615641565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f54727920746f2073656e64206d6f726520455448000000000000000000000000600082015250565b7f547279206d696e74696e67206c65737300000000000000000000000000000000600082015250565b7f5468652063616c6c6572206973206120636f6e74726163740000000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f547279206d696e74206c65737300000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420696e2070726573616c6500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f4d696e74206d696e20312c206d61782035300000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6159a381615425565b81146159ae57600080fd5b50565b6159ba81615437565b81146159c557600080fd5b50565b6159d181615443565b81146159dc57600080fd5b50565b6159e88161544d565b81146159f357600080fd5b50565b6159ff81615499565b8114615a0a57600080fd5b50565b615a16816154b7565b8114615a2157600080fd5b5056fea2646970667358221220c2be7257b1dbd2bf15a6c155cc9bb1d05fd0f2927829e07d0aa476e59760d7bd64736f6c63430008070033

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.