ETH Price: $3,436.49 (+5.56%)
Gas: 10 Gwei

Token

BodyHub (BH)
 

Overview

Max Total Supply

223 BH

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
pipigan.eth
Balance
1 BH
0x038d1bcdf13bcfcf82604c0893ab598c243b21f8
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:
BodyHub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : BodyHub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract BodyHub is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using ECDSA for bytes32;
  uint256 public immutable collectionSize;

  mapping(address => uint256) public whitelistUsed;
  mapping(address => uint256) public publicSaleUsed;
  bool public _isSWhitelistSaleActive = true;
  bool public _isWhitelistSaleActive = true;
  bool public _isSaleActive = true;
  uint256 public SWhitelistPrice = 0.88 ether;
  uint256 public whitelistPrice = 1 ether;
  uint256 public mintPrice = 1.2 ether;
  uint256 public limit = 3;
  address private _SWhitelistSigner = 0x6a389354957955Bef004222B3dBF4FAb40Ace650;
  address private _WhitelistSigner = 0xba19Eafd7F77EaCedD0f0D72a5CBe570dC48472C;
  address private _PublicSigner = 0xF69e9080320eEDC943e9Fe69b3A08cF16151900e;
  address private subAddress_one = 0xbb965b3F9B4d6b9E637FEc45DCA0F83eEE32427B;
  address private subAddress_two = 0x553CAb5161b5BAAfD42e78Cc7f34350A6412b394;
  receive() external payable {}

  constructor(uint256 collectionSize_) ERC721A("BodyHub", "BH") {
    collectionSize = collectionSize_;
  }
  function flipWhitelistSaleActive() public onlyOwner {
    _isWhitelistSaleActive = !_isWhitelistSaleActive;
  }

  function flipSaleActive() public onlyOwner {
    _isSaleActive = !_isSaleActive;
  }

  function flipSWhitelistSaleActive() public onlyOwner {
    _isSWhitelistSaleActive = !_isSWhitelistSaleActive;
  }

  function setMintPrice(uint256 _mintPrice) public onlyOwner {
    mintPrice = _mintPrice;
  }

  function setWhiteListPrice(uint256 _whitelistPrice) public onlyOwner {
    whitelistPrice = _whitelistPrice;
  }

  function setLimit(uint256 _limit) public onlyOwner {
    limit = _limit;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function SWhitelistMint(bytes32 hash, bytes calldata signature, uint256 quantity) external payable callerIsUser {
    require(msg.value * quantity >= SWhitelistPrice, "Need to send more ETH.");
    require(_isSWhitelistSaleActive, "SWhitelistSale has not begin");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(matchAddresSigner(hash, signature, _SWhitelistSigner), "DIRECT_MINT_DISALLOWED");
    require(hashTransaction(msg.sender, quantity) == hash, "HASH_FAIL");
    require(whitelistUsed[msg.sender] + quantity <= limit, "Quantity is over limit");
    _safeMint(msg.sender, quantity);
    whitelistUsed[msg.sender] += quantity;
  }

  function whitelistMint(bytes32 hash, bytes calldata signature, uint256 quantity) external payable callerIsUser {
    require(msg.value * quantity >= whitelistPrice, "Need to send more ETH.");
    require(_isWhitelistSaleActive, "Whitelist Sale has not begin");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(matchAddresSigner(hash, signature, _WhitelistSigner), "DIRECT_MINT_DISALLOWED");
    require(hashTransaction(msg.sender, quantity) == hash, "HASH_FAIL");
    require(whitelistUsed[msg.sender] + quantity <= limit, "Quantity is over limit");
    _safeMint(msg.sender, quantity);
    whitelistUsed[msg.sender] += quantity;
  }

  function publicSaleMint(bytes32 hash, bytes calldata signature, uint256 quantity) external payable callerIsUser {
    require(msg.value * quantity >= mintPrice, "Need to send more ETH.");
    require(_isSaleActive, "Public sale has not begin");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(matchAddresSigner(hash, signature, _PublicSigner), "DIRECT_MINT_DISALLOWED");
    require(hashTransaction(msg.sender, quantity) == hash, "HASH_FAIL");
    require(publicSaleUsed[msg.sender] + quantity <= limit, "Quantity is over limit");
    _safeMint(msg.sender, quantity);
    publicSaleUsed[msg.sender] += quantity;
  }

  // For marketing etc.
  function devMint(uint256 quantity, address to) external onlyOwner {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    _safeMint(to, quantity);
  }

  function hashTransaction(address sender, uint256 qty) private pure returns(bytes32) {
    bytes32 hash = keccak256(abi.encodePacked(
      "\x19Ethereum Signed Message:\n32",
      keccak256(abi.encodePacked(sender, qty)))
    );
    return hash;
  }

  function matchAddresSigner(bytes32 hash, bytes memory signature, address _signerAddress) private pure returns(bool) {
    return _signerAddress == hash.recover(signature);
  }

  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

	function withdraw(address to) public onlyOwner {
		uint256 balance = address(this).balance;
		payable(subAddress_one).transfer((balance * 5) / 100);
		payable(subAddress_two).transfer((balance * 5) / 100);
		payable(to).transfer((balance * 90) / 100);
	}

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

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

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

    // 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 See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view 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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 && 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 && !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 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() && !_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;
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        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 (safe && 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 Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","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":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"SWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SWhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSWhitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isWhitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleActive","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550670c3663566a580000600d55670de0b6b3a7640000600e556710a741a462780000600f556003601055736a389354957955bef004222b3dbf4fab40ace650601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ba19eafd7f77eacedd0f0d72a5cbe570dc48472c601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f69e9080320eedc943e9fe69b3a08cf16151900e601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bb965b3f9b4d6b9e637fec45dca0f83eee32427b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073553cab5161b5baafd42e78cc7f34350a6412b394601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200023457600080fd5b506040516200573b3803806200573b83398181016040528101906200025a9190620004e1565b6040518060400160405280600781526020017f426f6479487562000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f42480000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620002de9291906200041a565b508060039080519060200190620002f79291906200041a565b50620003086200034760201b60201c565b600081905550505062000330620003246200034c60201b60201c565b6200035460201b60201c565b6001600981905550806080818152505050620005a1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000428906200051d565b90600052602060002090601f0160209004810192826200044c576000855562000498565b82601f106200046757805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004975782518255916020019190600101906200047a565b5b509050620004a79190620004ab565b5090565b5b80821115620004c6576000816000905550600101620004ac565b5090565b600081519050620004db8162000587565b92915050565b600060208284031215620004fa57620004f962000582565b5b60006200050a84828501620004ca565b91505092915050565b6000819050919050565b600060028204905060018216806200053657607f821691505b602082108114156200054d576200054c62000553565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620005928162000513565b81146200059e57600080fd5b50565b608051615162620005d960003960008181610dc101528181610e7701528181611236015281816117c10152611e8d01526151626000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063b88d4fde116100b6578063de8b51e11161007a578063de8b51e114610870578063e985e9c514610887578063f2fde38b146108c4578063f4a0a528146108ed578063f6ecf21514610916578063fc1a1c361461092d57610251565b8063b88d4fde14610788578063beafc89b146107b1578063c4717c96146107da578063c87b56dd146107f6578063dc33e6811461083357610251565b80638da5cb5b116100fd5780638da5cb5b146106a15780639231ab2a146106cc57806395d89b4114610709578063a22cb46514610734578063a4d66daf1461075d57610251565b806370a08231146105ef578063715018a61461062c578063748d5eba1461064357806378707abb1461065a57806381814ce81461067657610251565b80632d1a12f6116101c757806355f804b31161018b57806355f804b3146105175780636352211e14610540578063637a811d1461057d5780636817c76c146105995780637080d6fc146105c457610251565b80632d1a12f614610446578063388e950b1461046f57806342842e0e1461049a57806345c0f533146104c357806351cff8d9146104ee57610251565b80631f306fb41161020e5780631f306fb41461034f57806321328f9e1461038c57806323b872dd146103c95780632574de56146103f257806327ea6f2b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614062565b610958565b60405161028a9190614625565b60405180910390f35b34801561029f57600080fd5b506102a8610a3a565b6040516102b59190614685565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614109565b610acc565b6040516102f291906145be565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613fae565b610b48565b005b34801561033057600080fd5b50610339610c53565b60405161034691906148a2565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613e2b565b610c6a565b60405161038391906148a2565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613e2b565b610c82565b6040516103c091906148a2565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613e98565b610c9a565b005b3480156103fe57600080fd5b50610407610caa565b6040516104149190614625565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190614109565b610cbd565b005b34801561045257600080fd5b5061046d60048036038101906104689190614136565b610d43565b005b34801561047b57600080fd5b50610484610e42565b6040516104919190614625565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613e98565b610e55565b005b3480156104cf57600080fd5b506104d8610e75565b6040516104e591906148a2565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190613e2b565b610e99565b005b34801561052357600080fd5b5061053e600480360381019061053991906140bc565b61107f565b005b34801561054c57600080fd5b5061056760048036038101906105629190614109565b611111565b60405161057491906145be565b60405180910390f35b61059760048036038101906105929190613fee565b611127565b005b3480156105a557600080fd5b506105ae611499565b6040516105bb91906148a2565b60405180910390f35b3480156105d057600080fd5b506105d961149f565b6040516105e69190614625565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613e2b565b6114b2565b60405161062391906148a2565b60405180910390f35b34801561063857600080fd5b50610641611582565b005b34801561064f57600080fd5b5061065861160a565b005b610674600480360381019061066f9190613fee565b6116b2565b005b34801561068257600080fd5b5061068b611a24565b60405161069891906148a2565b60405180910390f35b3480156106ad57600080fd5b506106b6611a2a565b6040516106c391906145be565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190614109565b611a54565b6040516107009190614887565b60405180910390f35b34801561071557600080fd5b5061071e611a6c565b60405161072b9190614685565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613f6e565b611afe565b005b34801561076957600080fd5b50610772611c76565b60405161077f91906148a2565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613eeb565b611c7c565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190614109565b611cf8565b005b6107f460048036038101906107ef9190613fee565b611d7e565b005b34801561080257600080fd5b5061081d60048036038101906108189190614109565b6120f0565b60405161082a9190614685565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613e2b565b61218f565b60405161086791906148a2565b60405180910390f35b34801561087c57600080fd5b506108856121a1565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613e58565b612249565b6040516108bb9190614625565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613e2b565b6122dd565b005b3480156108f957600080fd5b50610914600480360381019061090f9190614109565b6123d5565b005b34801561092257600080fd5b5061092b61245b565b005b34801561093957600080fd5b50610942612503565b60405161094f91906148a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a335750610a3282612509565b5b9050919050565b606060028054610a4990614b4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7590614b4c565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000610ad782612573565b610b0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5382611111565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bda6125c1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c0c5750610c0a81610c056125c1565b612249565b155b15610c43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4e8383836125c9565b505050565b6000610c5d61267b565b6001546000540303905090565b600b6020528060005260406000206000915090505481565b600a6020528060005260406000206000915090505481565b610ca5838383612680565b505050565b600c60019054906101000a900460ff1681565b610cc56125c1565b73ffffffffffffffffffffffffffffffffffffffff16610ce3611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906147c7565b60405180910390fd5b8060108190555050565b610d4b6125c1565b73ffffffffffffffffffffffffffffffffffffffff16610d69611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906147c7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082610de9610c53565b610df39190614956565b1115610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906147a7565b60405180910390fd5b610e3e8183612b71565b5050565b600c60009054906101000a900460ff1681565b610e7083838360405180602001604052806000815250611c7c565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ea16125c1565b73ffffffffffffffffffffffffffffffffffffffff16610ebf611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906147c7565b60405180910390fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610f6591906149dd565b610f6f91906149ac565b9081150290604051600060405180830381858888f19350505050158015610f9a573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610fe691906149dd565b610ff091906149ac565b9081150290604051600060405180830381858888f1935050505015801561101b573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc6064605a8461104591906149dd565b61104f91906149ac565b9081150290604051600060405180830381858888f1935050505015801561107a573d6000803e3d6000fd5b505050565b6110876125c1565b73ffffffffffffffffffffffffffffffffffffffff166110a5611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906147c7565b60405180910390fd5b81816016919061110c929190613bab565b505050565b600061111c82612b8f565b600001519050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90614747565b60405180910390fd5b600e5481346111a491906149dd565b10156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906147e7565b60405180910390fd5b600c60019054906101000a900460ff16611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614807565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161125e610c53565b6112689190614956565b11156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906147a7565b60405180910390fd5b61131a8484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906146c7565b60405180910390fd5b836113643383612e6a565b146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614767565b60405180910390fd5b60105481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f29190614956565b1115611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614847565b60405180910390fd5b61143d3382612b71565b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148c9190614956565b9250508190555050505050565b600f5481565b600c60029054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61158a6125c1565b73ffffffffffffffffffffffffffffffffffffffff166115a8611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906147c7565b60405180910390fd5b6116086000612ec8565b565b6116126125c1565b73ffffffffffffffffffffffffffffffffffffffff16611630611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906147c7565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790614747565b60405180910390fd5b600d54813461172f91906149dd565b1015611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906147e7565b60405180910390fd5b600c60009054906101000a900460ff166117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614827565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816117e9610c53565b6117f39190614956565b1115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906147a7565b60405180910390fd5b6118a58484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906146c7565b60405180910390fd5b836118ef3383612e6a565b1461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614767565b60405180910390fd5b60105481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197d9190614956565b11156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614847565b60405180910390fd5b6119c83382612b71565b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a179190614956565b9250508190555050505050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a5c613c31565b611a6582612b8f565b9050919050565b606060038054611a7b90614b4c565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa790614b4c565b8015611af45780601f10611ac957610100808354040283529160200191611af4565b820191906000526020600020905b815481529060010190602001808311611ad757829003601f168201915b5050505050905090565b611b066125c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b786125c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c256125c1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6a9190614625565b60405180910390a35050565b60105481565b611c87848484612680565b611ca68373ffffffffffffffffffffffffffffffffffffffff16612f8e565b8015611cbb5750611cb984848484612fb1565b155b15611cf2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d006125c1565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b906147c7565b60405180910390fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614747565b60405180910390fd5b600f548134611dfb91906149dd565b1015611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e33906147e7565b60405180910390fd5b600c60029054906101000a900460ff16611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614867565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611eb5610c53565b611ebf9190614956565b1115611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef7906147a7565b60405180910390fd5b611f718484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906146c7565b60405180910390fd5b83611fbb3383612e6a565b14611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614767565b60405180910390fd5b60105481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120499190614956565b111561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190614847565b60405180910390fd5b6120943382612b71565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190614956565b9250508190555050505050565b60606120fb82612573565b612131576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061213b613111565b905060008151141561215c5760405180602001604052806000815250612187565b80612166846131a3565b604051602001612177929190614574565b6040516020818303038152906040525b915050919050565b600061219a82613304565b9050919050565b6121a96125c1565b73ffffffffffffffffffffffffffffffffffffffff166121c7611a2a565b73ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612214906147c7565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122e56125c1565b73ffffffffffffffffffffffffffffffffffffffff16612303611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090614707565b60405180910390fd5b6123d281612ec8565b50565b6123dd6125c1565b73ffffffffffffffffffffffffffffffffffffffff166123fb611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614612451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612448906147c7565b60405180910390fd5b80600f8190555050565b6124636125c1565b73ffffffffffffffffffffffffffffffffffffffff16612481611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906147c7565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161257e61267b565b1115801561258d575060005482105b80156125ba575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061268b82612b8f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b26125c1565b73ffffffffffffffffffffffffffffffffffffffff1614806126e557506126e482600001516126df6125c1565b612249565b5b8061272a57506126f36125c1565b73ffffffffffffffffffffffffffffffffffffffff1661271284610acc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612763576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127cc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612833576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284085858560016133d4565b61285060008484600001516125c9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0157600054811015612b005782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6a85858560016133da565b5050505050565b612b8b8282604051806020016040528060008152506133e0565b5050565b612b97613c31565b600082905080612ba561267b565b11158015612bb4575060005481105b15612de7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612de557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cc9578092505050612e19565b5b600115612de457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ddf578092505050612e19565b612cca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000612e3383856133f290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000808383604051602001612e80929190614548565b60405160208183030381529060405280519060200120604051602001612ea69190614598565b6040516020818303038152906040528051906020012090508091505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fd76125c1565b8786866040518563ffffffff1660e01b8152600401612ff994939291906145d9565b602060405180830381600087803b15801561301357600080fd5b505af192505050801561304457506040513d601f19601f82011682018060405250810190613041919061408f565b60015b6130be573d8060008114613074576040519150601f19603f3d011682016040523d82523d6000602084013e613079565b606091505b506000815114156130b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606016805461312090614b4c565b80601f016020809104026020016040519081016040528092919081815260200182805461314c90614b4c565b80156131995780601f1061316e57610100808354040283529160200191613199565b820191906000526020600020905b81548152906001019060200180831161317c57829003601f168201915b5050505050905090565b606060008214156131eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ff565b600082905060005b6000821461321d57808061320690614baf565b915050600a8261321691906149ac565b91506131f3565b60008167ffffffffffffffff81111561323957613238614d4c565b5b6040519080825280601f01601f19166020018201604052801561326b5781602001600182028036833780820191505090505b5090505b600085146132f8576001826132849190614a37565b9150600a856132939190614c30565b603061329f9190614956565b60f81b8183815181106132b5576132b4614d1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f191906149ac565b945061326f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336c576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6133ed8383836001613419565b505050565b600080600061340185856137e7565b9150915061340e8161386a565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613486576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134c1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134ce60008683876133d4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561369857506136978773ffffffffffffffffffffffffffffffffffffffff16612f8e565b5b1561375e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370d6000888480600101955088612fb1565b613743576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561369e57826000541461375957600080fd5b6137ca565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561375f575b8160008190555050506137e060008683876133da565b5050505050565b6000806041835114156138295760008060006020860151925060408601519150606086015160001a905061381d87828585613a3f565b94509450505050613863565b60408351141561385a57600080602085015191506040850151905061384f868383613b4c565b935093505050613863565b60006002915091505b9250929050565b6000600481111561387e5761387d614cbf565b5b81600481111561389157613890614cbf565b5b141561389c57613a3c565b600160048111156138b0576138af614cbf565b5b8160048111156138c3576138c2614cbf565b5b1415613904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138fb906146a7565b60405180910390fd5b6002600481111561391857613917614cbf565b5b81600481111561392b5761392a614cbf565b5b141561396c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613963906146e7565b60405180910390fd5b600360048111156139805761397f614cbf565b5b81600481111561399357613992614cbf565b5b14156139d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cb90614727565b60405180910390fd5b6004808111156139e7576139e6614cbf565b5b8160048111156139fa576139f9614cbf565b5b1415613a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3290614787565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a7a576000600391509150613b43565b601b8560ff1614158015613a925750601c8560ff1614155b15613aa4576000600491509150613b43565b600060018787878760405160008152602001604052604051613ac99493929190614640565b6020604051602081039080840390855afa158015613aeb573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b3a57600060019250925050613b43565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613b8f9190614956565b9050613b9d87828885613a3f565b935093505050935093915050565b828054613bb790614b4c565b90600052602060002090601f016020900481019282613bd95760008555613c20565b82601f10613bf257803560ff1916838001178555613c20565b82800160010185558215613c20579182015b82811115613c1f578235825591602001919060010190613c04565b5b509050613c2d9190613c74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c8d576000816000905550600101613c75565b5090565b6000613ca4613c9f846148e2565b6148bd565b905082815260208101848484011115613cc057613cbf614d8a565b5b613ccb848285614b0a565b509392505050565b600081359050613ce2816150b9565b92915050565b600081359050613cf7816150d0565b92915050565b600081359050613d0c816150e7565b92915050565b600081359050613d21816150fe565b92915050565b600081519050613d36816150fe565b92915050565b60008083601f840112613d5257613d51614d80565b5b8235905067ffffffffffffffff811115613d6f57613d6e614d7b565b5b602083019150836001820283011115613d8b57613d8a614d85565b5b9250929050565b600082601f830112613da757613da6614d80565b5b8135613db7848260208601613c91565b91505092915050565b60008083601f840112613dd657613dd5614d80565b5b8235905067ffffffffffffffff811115613df357613df2614d7b565b5b602083019150836001820283011115613e0f57613e0e614d85565b5b9250929050565b600081359050613e2581615115565b92915050565b600060208284031215613e4157613e40614d94565b5b6000613e4f84828501613cd3565b91505092915050565b60008060408385031215613e6f57613e6e614d94565b5b6000613e7d85828601613cd3565b9250506020613e8e85828601613cd3565b9150509250929050565b600080600060608486031215613eb157613eb0614d94565b5b6000613ebf86828701613cd3565b9350506020613ed086828701613cd3565b9250506040613ee186828701613e16565b9150509250925092565b60008060008060808587031215613f0557613f04614d94565b5b6000613f1387828801613cd3565b9450506020613f2487828801613cd3565b9350506040613f3587828801613e16565b925050606085013567ffffffffffffffff811115613f5657613f55614d8f565b5b613f6287828801613d92565b91505092959194509250565b60008060408385031215613f8557613f84614d94565b5b6000613f9385828601613cd3565b9250506020613fa485828601613ce8565b9150509250929050565b60008060408385031215613fc557613fc4614d94565b5b6000613fd385828601613cd3565b9250506020613fe485828601613e16565b9150509250929050565b6000806000806060858703121561400857614007614d94565b5b600061401687828801613cfd565b945050602085013567ffffffffffffffff81111561403757614036614d8f565b5b61404387828801613d3c565b9350935050604061405687828801613e16565b91505092959194509250565b60006020828403121561407857614077614d94565b5b600061408684828501613d12565b91505092915050565b6000602082840312156140a5576140a4614d94565b5b60006140b384828501613d27565b91505092915050565b600080602083850312156140d3576140d2614d94565b5b600083013567ffffffffffffffff8111156140f1576140f0614d8f565b5b6140fd85828601613dc0565b92509250509250929050565b60006020828403121561411f5761411e614d94565b5b600061412d84828501613e16565b91505092915050565b6000806040838503121561414d5761414c614d94565b5b600061415b85828601613e16565b925050602061416c85828601613cd3565b9150509250929050565b61417f81614a6b565b82525050565b61418e81614a6b565b82525050565b6141a56141a082614a6b565b614bf8565b82525050565b6141b481614a7d565b82525050565b6141c381614a7d565b82525050565b6141d281614a89565b82525050565b6141e96141e482614a89565b614c0a565b82525050565b60006141fa82614913565b6142048185614929565b9350614214818560208601614b19565b61421d81614d99565b840191505092915050565b60006142338261491e565b61423d818561493a565b935061424d818560208601614b19565b61425681614d99565b840191505092915050565b600061426c8261491e565b614276818561494b565b9350614286818560208601614b19565b80840191505092915050565b600061429f60188361493a565b91506142aa82614db7565b602082019050919050565b60006142c260168361493a565b91506142cd82614de0565b602082019050919050565b60006142e5601f8361493a565b91506142f082614e09565b602082019050919050565b6000614308601c8361494b565b915061431382614e32565b601c82019050919050565b600061432b60268361493a565b915061433682614e5b565b604082019050919050565b600061434e60228361493a565b915061435982614eaa565b604082019050919050565b6000614371601e8361493a565b915061437c82614ef9565b602082019050919050565b600061439460098361493a565b915061439f82614f22565b602082019050919050565b60006143b760228361493a565b91506143c282614f4b565b604082019050919050565b60006143da60128361493a565b91506143e582614f9a565b602082019050919050565b60006143fd60208361493a565b915061440882614fc3565b602082019050919050565b600061442060168361493a565b915061442b82614fec565b602082019050919050565b6000614443601c8361493a565b915061444e82615015565b602082019050919050565b6000614466601c8361493a565b91506144718261503e565b602082019050919050565b600061448960168361493a565b915061449482615067565b602082019050919050565b60006144ac60198361493a565b91506144b782615090565b602082019050919050565b6060820160008201516144d86000850182614176565b5060208201516144eb602085018261452a565b5060408201516144fe60408501826141ab565b50505050565b61450d81614adf565b82525050565b61452461451f82614adf565b614c26565b82525050565b61453381614ae9565b82525050565b61454281614afd565b82525050565b60006145548285614194565b6014820191506145648284614513565b6020820191508190509392505050565b60006145808285614261565b915061458c8284614261565b91508190509392505050565b60006145a3826142fb565b91506145af82846141d8565b60208201915081905092915050565b60006020820190506145d36000830184614185565b92915050565b60006080820190506145ee6000830187614185565b6145fb6020830186614185565b6146086040830185614504565b818103606083015261461a81846141ef565b905095945050505050565b600060208201905061463a60008301846141ba565b92915050565b600060808201905061465560008301876141c9565b6146626020830186614539565b61466f60408301856141c9565b61467c60608301846141c9565b95945050505050565b6000602082019050818103600083015261469f8184614228565b905092915050565b600060208201905081810360008301526146c081614292565b9050919050565b600060208201905081810360008301526146e0816142b5565b9050919050565b60006020820190508181036000830152614700816142d8565b9050919050565b600060208201905081810360008301526147208161431e565b9050919050565b6000602082019050818103600083015261474081614341565b9050919050565b6000602082019050818103600083015261476081614364565b9050919050565b6000602082019050818103600083015261478081614387565b9050919050565b600060208201905081810360008301526147a0816143aa565b9050919050565b600060208201905081810360008301526147c0816143cd565b9050919050565b600060208201905081810360008301526147e0816143f0565b9050919050565b6000602082019050818103600083015261480081614413565b9050919050565b6000602082019050818103600083015261482081614436565b9050919050565b6000602082019050818103600083015261484081614459565b9050919050565b600060208201905081810360008301526148608161447c565b9050919050565b600060208201905081810360008301526148808161449f565b9050919050565b600060608201905061489c60008301846144c2565b92915050565b60006020820190506148b76000830184614504565b92915050565b60006148c76148d8565b90506148d38282614b7e565b919050565b6000604051905090565b600067ffffffffffffffff8211156148fd576148fc614d4c565b5b61490682614d99565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496182614adf565b915061496c83614adf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a1576149a0614c61565b5b828201905092915050565b60006149b782614adf565b91506149c283614adf565b9250826149d2576149d1614c90565b5b828204905092915050565b60006149e882614adf565b91506149f383614adf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2c57614a2b614c61565b5b828202905092915050565b6000614a4282614adf565b9150614a4d83614adf565b925082821015614a6057614a5f614c61565b5b828203905092915050565b6000614a7682614abf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b37578082015181840152602081019050614b1c565b83811115614b46576000848401525b50505050565b60006002820490506001821680614b6457607f821691505b60208210811415614b7857614b77614cee565b5b50919050565b614b8782614d99565b810181811067ffffffffffffffff82111715614ba657614ba5614d4c565b5b80604052505050565b6000614bba82614adf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bed57614bec614c61565b5b600182019050919050565b6000614c0382614c14565b9050919050565b6000819050919050565b6000614c1f82614daa565b9050919050565b6000819050919050565b6000614c3b82614adf565b9150614c4683614adf565b925082614c5657614c55614c90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4449524543545f4d494e545f444953414c4c4f57454400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f484153485f4641494c0000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f57686974656c6973742053616c6520686173206e6f7420626567696e00000000600082015250565b7f5357686974656c69737453616c6520686173206e6f7420626567696e00000000600082015250565b7f5175616e74697479206973206f766572206c696d697400000000000000000000600082015250565b7f5075626c69632073616c6520686173206e6f7420626567696e00000000000000600082015250565b6150c281614a6b565b81146150cd57600080fd5b50565b6150d981614a7d565b81146150e457600080fd5b50565b6150f081614a89565b81146150fb57600080fd5b50565b61510781614a93565b811461511257600080fd5b50565b61511e81614adf565b811461512957600080fd5b5056fea2646970667358221220863ea1bd310a95808b029fa0c427e8788148932a8bec5dbf927dd9fcb367392064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000014d

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806370a0823111610139578063b88d4fde116100b6578063de8b51e11161007a578063de8b51e114610870578063e985e9c514610887578063f2fde38b146108c4578063f4a0a528146108ed578063f6ecf21514610916578063fc1a1c361461092d57610251565b8063b88d4fde14610788578063beafc89b146107b1578063c4717c96146107da578063c87b56dd146107f6578063dc33e6811461083357610251565b80638da5cb5b116100fd5780638da5cb5b146106a15780639231ab2a146106cc57806395d89b4114610709578063a22cb46514610734578063a4d66daf1461075d57610251565b806370a08231146105ef578063715018a61461062c578063748d5eba1461064357806378707abb1461065a57806381814ce81461067657610251565b80632d1a12f6116101c757806355f804b31161018b57806355f804b3146105175780636352211e14610540578063637a811d1461057d5780636817c76c146105995780637080d6fc146105c457610251565b80632d1a12f614610446578063388e950b1461046f57806342842e0e1461049a57806345c0f533146104c357806351cff8d9146104ee57610251565b80631f306fb41161020e5780631f306fb41461034f57806321328f9e1461038c57806323b872dd146103c95780632574de56146103f257806327ea6f2b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190614062565b610958565b60405161028a9190614625565b60405180910390f35b34801561029f57600080fd5b506102a8610a3a565b6040516102b59190614685565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614109565b610acc565b6040516102f291906145be565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613fae565b610b48565b005b34801561033057600080fd5b50610339610c53565b60405161034691906148a2565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613e2b565b610c6a565b60405161038391906148a2565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613e2b565b610c82565b6040516103c091906148a2565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190613e98565b610c9a565b005b3480156103fe57600080fd5b50610407610caa565b6040516104149190614625565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190614109565b610cbd565b005b34801561045257600080fd5b5061046d60048036038101906104689190614136565b610d43565b005b34801561047b57600080fd5b50610484610e42565b6040516104919190614625565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613e98565b610e55565b005b3480156104cf57600080fd5b506104d8610e75565b6040516104e591906148a2565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190613e2b565b610e99565b005b34801561052357600080fd5b5061053e600480360381019061053991906140bc565b61107f565b005b34801561054c57600080fd5b5061056760048036038101906105629190614109565b611111565b60405161057491906145be565b60405180910390f35b61059760048036038101906105929190613fee565b611127565b005b3480156105a557600080fd5b506105ae611499565b6040516105bb91906148a2565b60405180910390f35b3480156105d057600080fd5b506105d961149f565b6040516105e69190614625565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613e2b565b6114b2565b60405161062391906148a2565b60405180910390f35b34801561063857600080fd5b50610641611582565b005b34801561064f57600080fd5b5061065861160a565b005b610674600480360381019061066f9190613fee565b6116b2565b005b34801561068257600080fd5b5061068b611a24565b60405161069891906148a2565b60405180910390f35b3480156106ad57600080fd5b506106b6611a2a565b6040516106c391906145be565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190614109565b611a54565b6040516107009190614887565b60405180910390f35b34801561071557600080fd5b5061071e611a6c565b60405161072b9190614685565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613f6e565b611afe565b005b34801561076957600080fd5b50610772611c76565b60405161077f91906148a2565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613eeb565b611c7c565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190614109565b611cf8565b005b6107f460048036038101906107ef9190613fee565b611d7e565b005b34801561080257600080fd5b5061081d60048036038101906108189190614109565b6120f0565b60405161082a9190614685565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613e2b565b61218f565b60405161086791906148a2565b60405180910390f35b34801561087c57600080fd5b506108856121a1565b005b34801561089357600080fd5b506108ae60048036038101906108a99190613e58565b612249565b6040516108bb9190614625565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613e2b565b6122dd565b005b3480156108f957600080fd5b50610914600480360381019061090f9190614109565b6123d5565b005b34801561092257600080fd5b5061092b61245b565b005b34801561093957600080fd5b50610942612503565b60405161094f91906148a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a335750610a3282612509565b5b9050919050565b606060028054610a4990614b4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7590614b4c565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000610ad782612573565b610b0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5382611111565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bda6125c1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c0c5750610c0a81610c056125c1565b612249565b155b15610c43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4e8383836125c9565b505050565b6000610c5d61267b565b6001546000540303905090565b600b6020528060005260406000206000915090505481565b600a6020528060005260406000206000915090505481565b610ca5838383612680565b505050565b600c60019054906101000a900460ff1681565b610cc56125c1565b73ffffffffffffffffffffffffffffffffffffffff16610ce3611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906147c7565b60405180910390fd5b8060108190555050565b610d4b6125c1565b73ffffffffffffffffffffffffffffffffffffffff16610d69611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906147c7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d82610de9610c53565b610df39190614956565b1115610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b906147a7565b60405180910390fd5b610e3e8183612b71565b5050565b600c60009054906101000a900460ff1681565b610e7083838360405180602001604052806000815250611c7c565b505050565b7f000000000000000000000000000000000000000000000000000000000000014d81565b610ea16125c1565b73ffffffffffffffffffffffffffffffffffffffff16610ebf611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c906147c7565b60405180910390fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610f6591906149dd565b610f6f91906149ac565b9081150290604051600060405180830381858888f19350505050158015610f9a573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600584610fe691906149dd565b610ff091906149ac565b9081150290604051600060405180830381858888f1935050505015801561101b573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc6064605a8461104591906149dd565b61104f91906149ac565b9081150290604051600060405180830381858888f1935050505015801561107a573d6000803e3d6000fd5b505050565b6110876125c1565b73ffffffffffffffffffffffffffffffffffffffff166110a5611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906147c7565b60405180910390fd5b81816016919061110c929190613bab565b505050565b600061111c82612b8f565b600001519050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90614747565b60405180910390fd5b600e5481346111a491906149dd565b10156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906147e7565b60405180910390fd5b600c60019054906101000a900460ff16611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614807565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d8161125e610c53565b6112689190614956565b11156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906147a7565b60405180910390fd5b61131a8484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b611359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611350906146c7565b60405180910390fd5b836113643383612e6a565b146113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90614767565b60405180910390fd5b60105481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f29190614956565b1115611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90614847565b60405180910390fd5b61143d3382612b71565b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148c9190614956565b9250508190555050505050565b600f5481565b600c60029054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61158a6125c1565b73ffffffffffffffffffffffffffffffffffffffff166115a8611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906147c7565b60405180910390fd5b6116086000612ec8565b565b6116126125c1565b73ffffffffffffffffffffffffffffffffffffffff16611630611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906147c7565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790614747565b60405180910390fd5b600d54813461172f91906149dd565b1015611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906147e7565b60405180910390fd5b600c60009054906101000a900460ff166117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614827565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d816117e9610c53565b6117f39190614956565b1115611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906147a7565b60405180910390fd5b6118a58484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906146c7565b60405180910390fd5b836118ef3383612e6a565b1461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614767565b60405180910390fd5b60105481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197d9190614956565b11156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614847565b60405180910390fd5b6119c83382612b71565b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a179190614956565b9250508190555050505050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a5c613c31565b611a6582612b8f565b9050919050565b606060038054611a7b90614b4c565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa790614b4c565b8015611af45780601f10611ac957610100808354040283529160200191611af4565b820191906000526020600020905b815481529060010190602001808311611ad757829003601f168201915b5050505050905090565b611b066125c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b786125c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c256125c1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6a9190614625565b60405180910390a35050565b60105481565b611c87848484612680565b611ca68373ffffffffffffffffffffffffffffffffffffffff16612f8e565b8015611cbb5750611cb984848484612fb1565b155b15611cf2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d006125c1565b73ffffffffffffffffffffffffffffffffffffffff16611d1e611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b906147c7565b60405180910390fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390614747565b60405180910390fd5b600f548134611dfb91906149dd565b1015611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e33906147e7565b60405180910390fd5b600c60029054906101000a900460ff16611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8290614867565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d81611eb5610c53565b611ebf9190614956565b1115611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef7906147a7565b60405180910390fd5b611f718484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612e1e565b611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa7906146c7565b60405180910390fd5b83611fbb3383612e6a565b14611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614767565b60405180910390fd5b60105481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120499190614956565b111561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208190614847565b60405180910390fd5b6120943382612b71565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e39190614956565b9250508190555050505050565b60606120fb82612573565b612131576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061213b613111565b905060008151141561215c5760405180602001604052806000815250612187565b80612166846131a3565b604051602001612177929190614574565b6040516020818303038152906040525b915050919050565b600061219a82613304565b9050919050565b6121a96125c1565b73ffffffffffffffffffffffffffffffffffffffff166121c7611a2a565b73ffffffffffffffffffffffffffffffffffffffff161461221d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612214906147c7565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122e56125c1565b73ffffffffffffffffffffffffffffffffffffffff16612303611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906147c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090614707565b60405180910390fd5b6123d281612ec8565b50565b6123dd6125c1565b73ffffffffffffffffffffffffffffffffffffffff166123fb611a2a565b73ffffffffffffffffffffffffffffffffffffffff1614612451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612448906147c7565b60405180910390fd5b80600f8190555050565b6124636125c1565b73ffffffffffffffffffffffffffffffffffffffff16612481611a2a565b73ffffffffffffffffffffffffffffffffffffffff16146124d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ce906147c7565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161257e61267b565b1115801561258d575060005482105b80156125ba575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061268b82612b8f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166126b26125c1565b73ffffffffffffffffffffffffffffffffffffffff1614806126e557506126e482600001516126df6125c1565b612249565b5b8061272a57506126f36125c1565b73ffffffffffffffffffffffffffffffffffffffff1661271284610acc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612763576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146127cc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612833576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284085858560016133d4565b61285060008484600001516125c9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0157600054811015612b005782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6a85858560016133da565b5050505050565b612b8b8282604051806020016040528060008152506133e0565b5050565b612b97613c31565b600082905080612ba561267b565b11158015612bb4575060005481105b15612de7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612de557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cc9578092505050612e19565b5b600115612de457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ddf578092505050612e19565b612cca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000612e3383856133f290919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000808383604051602001612e80929190614548565b60405160208183030381529060405280519060200120604051602001612ea69190614598565b6040516020818303038152906040528051906020012090508091505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fd76125c1565b8786866040518563ffffffff1660e01b8152600401612ff994939291906145d9565b602060405180830381600087803b15801561301357600080fd5b505af192505050801561304457506040513d601f19601f82011682018060405250810190613041919061408f565b60015b6130be573d8060008114613074576040519150601f19603f3d011682016040523d82523d6000602084013e613079565b606091505b506000815114156130b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606016805461312090614b4c565b80601f016020809104026020016040519081016040528092919081815260200182805461314c90614b4c565b80156131995780601f1061316e57610100808354040283529160200191613199565b820191906000526020600020905b81548152906001019060200180831161317c57829003601f168201915b5050505050905090565b606060008214156131eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ff565b600082905060005b6000821461321d57808061320690614baf565b915050600a8261321691906149ac565b91506131f3565b60008167ffffffffffffffff81111561323957613238614d4c565b5b6040519080825280601f01601f19166020018201604052801561326b5781602001600182028036833780820191505090505b5090505b600085146132f8576001826132849190614a37565b9150600a856132939190614c30565b603061329f9190614956565b60f81b8183815181106132b5576132b4614d1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f191906149ac565b945061326f565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336c576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6133ed8383836001613419565b505050565b600080600061340185856137e7565b9150915061340e8161386a565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613486576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156134c1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134ce60008683876133d4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561369857506136978773ffffffffffffffffffffffffffffffffffffffff16612f8e565b5b1561375e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461370d6000888480600101955088612fb1565b613743576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561369e57826000541461375957600080fd5b6137ca565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561375f575b8160008190555050506137e060008683876133da565b5050505050565b6000806041835114156138295760008060006020860151925060408601519150606086015160001a905061381d87828585613a3f565b94509450505050613863565b60408351141561385a57600080602085015191506040850151905061384f868383613b4c565b935093505050613863565b60006002915091505b9250929050565b6000600481111561387e5761387d614cbf565b5b81600481111561389157613890614cbf565b5b141561389c57613a3c565b600160048111156138b0576138af614cbf565b5b8160048111156138c3576138c2614cbf565b5b1415613904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138fb906146a7565b60405180910390fd5b6002600481111561391857613917614cbf565b5b81600481111561392b5761392a614cbf565b5b141561396c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613963906146e7565b60405180910390fd5b600360048111156139805761397f614cbf565b5b81600481111561399357613992614cbf565b5b14156139d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cb90614727565b60405180910390fd5b6004808111156139e7576139e6614cbf565b5b8160048111156139fa576139f9614cbf565b5b1415613a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3290614787565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a7a576000600391509150613b43565b601b8560ff1614158015613a925750601c8560ff1614155b15613aa4576000600491509150613b43565b600060018787878760405160008152602001604052604051613ac99493929190614640565b6020604051602081039080840390855afa158015613aeb573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b3a57600060019250925050613b43565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613b8f9190614956565b9050613b9d87828885613a3f565b935093505050935093915050565b828054613bb790614b4c565b90600052602060002090601f016020900481019282613bd95760008555613c20565b82601f10613bf257803560ff1916838001178555613c20565b82800160010185558215613c20579182015b82811115613c1f578235825591602001919060010190613c04565b5b509050613c2d9190613c74565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c8d576000816000905550600101613c75565b5090565b6000613ca4613c9f846148e2565b6148bd565b905082815260208101848484011115613cc057613cbf614d8a565b5b613ccb848285614b0a565b509392505050565b600081359050613ce2816150b9565b92915050565b600081359050613cf7816150d0565b92915050565b600081359050613d0c816150e7565b92915050565b600081359050613d21816150fe565b92915050565b600081519050613d36816150fe565b92915050565b60008083601f840112613d5257613d51614d80565b5b8235905067ffffffffffffffff811115613d6f57613d6e614d7b565b5b602083019150836001820283011115613d8b57613d8a614d85565b5b9250929050565b600082601f830112613da757613da6614d80565b5b8135613db7848260208601613c91565b91505092915050565b60008083601f840112613dd657613dd5614d80565b5b8235905067ffffffffffffffff811115613df357613df2614d7b565b5b602083019150836001820283011115613e0f57613e0e614d85565b5b9250929050565b600081359050613e2581615115565b92915050565b600060208284031215613e4157613e40614d94565b5b6000613e4f84828501613cd3565b91505092915050565b60008060408385031215613e6f57613e6e614d94565b5b6000613e7d85828601613cd3565b9250506020613e8e85828601613cd3565b9150509250929050565b600080600060608486031215613eb157613eb0614d94565b5b6000613ebf86828701613cd3565b9350506020613ed086828701613cd3565b9250506040613ee186828701613e16565b9150509250925092565b60008060008060808587031215613f0557613f04614d94565b5b6000613f1387828801613cd3565b9450506020613f2487828801613cd3565b9350506040613f3587828801613e16565b925050606085013567ffffffffffffffff811115613f5657613f55614d8f565b5b613f6287828801613d92565b91505092959194509250565b60008060408385031215613f8557613f84614d94565b5b6000613f9385828601613cd3565b9250506020613fa485828601613ce8565b9150509250929050565b60008060408385031215613fc557613fc4614d94565b5b6000613fd385828601613cd3565b9250506020613fe485828601613e16565b9150509250929050565b6000806000806060858703121561400857614007614d94565b5b600061401687828801613cfd565b945050602085013567ffffffffffffffff81111561403757614036614d8f565b5b61404387828801613d3c565b9350935050604061405687828801613e16565b91505092959194509250565b60006020828403121561407857614077614d94565b5b600061408684828501613d12565b91505092915050565b6000602082840312156140a5576140a4614d94565b5b60006140b384828501613d27565b91505092915050565b600080602083850312156140d3576140d2614d94565b5b600083013567ffffffffffffffff8111156140f1576140f0614d8f565b5b6140fd85828601613dc0565b92509250509250929050565b60006020828403121561411f5761411e614d94565b5b600061412d84828501613e16565b91505092915050565b6000806040838503121561414d5761414c614d94565b5b600061415b85828601613e16565b925050602061416c85828601613cd3565b9150509250929050565b61417f81614a6b565b82525050565b61418e81614a6b565b82525050565b6141a56141a082614a6b565b614bf8565b82525050565b6141b481614a7d565b82525050565b6141c381614a7d565b82525050565b6141d281614a89565b82525050565b6141e96141e482614a89565b614c0a565b82525050565b60006141fa82614913565b6142048185614929565b9350614214818560208601614b19565b61421d81614d99565b840191505092915050565b60006142338261491e565b61423d818561493a565b935061424d818560208601614b19565b61425681614d99565b840191505092915050565b600061426c8261491e565b614276818561494b565b9350614286818560208601614b19565b80840191505092915050565b600061429f60188361493a565b91506142aa82614db7565b602082019050919050565b60006142c260168361493a565b91506142cd82614de0565b602082019050919050565b60006142e5601f8361493a565b91506142f082614e09565b602082019050919050565b6000614308601c8361494b565b915061431382614e32565b601c82019050919050565b600061432b60268361493a565b915061433682614e5b565b604082019050919050565b600061434e60228361493a565b915061435982614eaa565b604082019050919050565b6000614371601e8361493a565b915061437c82614ef9565b602082019050919050565b600061439460098361493a565b915061439f82614f22565b602082019050919050565b60006143b760228361493a565b91506143c282614f4b565b604082019050919050565b60006143da60128361493a565b91506143e582614f9a565b602082019050919050565b60006143fd60208361493a565b915061440882614fc3565b602082019050919050565b600061442060168361493a565b915061442b82614fec565b602082019050919050565b6000614443601c8361493a565b915061444e82615015565b602082019050919050565b6000614466601c8361493a565b91506144718261503e565b602082019050919050565b600061448960168361493a565b915061449482615067565b602082019050919050565b60006144ac60198361493a565b91506144b782615090565b602082019050919050565b6060820160008201516144d86000850182614176565b5060208201516144eb602085018261452a565b5060408201516144fe60408501826141ab565b50505050565b61450d81614adf565b82525050565b61452461451f82614adf565b614c26565b82525050565b61453381614ae9565b82525050565b61454281614afd565b82525050565b60006145548285614194565b6014820191506145648284614513565b6020820191508190509392505050565b60006145808285614261565b915061458c8284614261565b91508190509392505050565b60006145a3826142fb565b91506145af82846141d8565b60208201915081905092915050565b60006020820190506145d36000830184614185565b92915050565b60006080820190506145ee6000830187614185565b6145fb6020830186614185565b6146086040830185614504565b818103606083015261461a81846141ef565b905095945050505050565b600060208201905061463a60008301846141ba565b92915050565b600060808201905061465560008301876141c9565b6146626020830186614539565b61466f60408301856141c9565b61467c60608301846141c9565b95945050505050565b6000602082019050818103600083015261469f8184614228565b905092915050565b600060208201905081810360008301526146c081614292565b9050919050565b600060208201905081810360008301526146e0816142b5565b9050919050565b60006020820190508181036000830152614700816142d8565b9050919050565b600060208201905081810360008301526147208161431e565b9050919050565b6000602082019050818103600083015261474081614341565b9050919050565b6000602082019050818103600083015261476081614364565b9050919050565b6000602082019050818103600083015261478081614387565b9050919050565b600060208201905081810360008301526147a0816143aa565b9050919050565b600060208201905081810360008301526147c0816143cd565b9050919050565b600060208201905081810360008301526147e0816143f0565b9050919050565b6000602082019050818103600083015261480081614413565b9050919050565b6000602082019050818103600083015261482081614436565b9050919050565b6000602082019050818103600083015261484081614459565b9050919050565b600060208201905081810360008301526148608161447c565b9050919050565b600060208201905081810360008301526148808161449f565b9050919050565b600060608201905061489c60008301846144c2565b92915050565b60006020820190506148b76000830184614504565b92915050565b60006148c76148d8565b90506148d38282614b7e565b919050565b6000604051905090565b600067ffffffffffffffff8211156148fd576148fc614d4c565b5b61490682614d99565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496182614adf565b915061496c83614adf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a1576149a0614c61565b5b828201905092915050565b60006149b782614adf565b91506149c283614adf565b9250826149d2576149d1614c90565b5b828204905092915050565b60006149e882614adf565b91506149f383614adf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2c57614a2b614c61565b5b828202905092915050565b6000614a4282614adf565b9150614a4d83614adf565b925082821015614a6057614a5f614c61565b5b828203905092915050565b6000614a7682614abf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b37578082015181840152602081019050614b1c565b83811115614b46576000848401525b50505050565b60006002820490506001821680614b6457607f821691505b60208210811415614b7857614b77614cee565b5b50919050565b614b8782614d99565b810181811067ffffffffffffffff82111715614ba657614ba5614d4c565b5b80604052505050565b6000614bba82614adf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bed57614bec614c61565b5b600182019050919050565b6000614c0382614c14565b9050919050565b6000819050919050565b6000614c1f82614daa565b9050919050565b6000819050919050565b6000614c3b82614adf565b9150614c4683614adf565b925082614c5657614c55614c90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4449524543545f4d494e545f444953414c4c4f57454400000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f484153485f4641494c0000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f57686974656c6973742053616c6520686173206e6f7420626567696e00000000600082015250565b7f5357686974656c69737453616c6520686173206e6f7420626567696e00000000600082015250565b7f5175616e74697479206973206f766572206c696d697400000000000000000000600082015250565b7f5075626c69632073616c6520686173206e6f7420626567696e00000000000000600082015250565b6150c281614a6b565b81146150cd57600080fd5b50565b6150d981614a7d565b81146150e457600080fd5b50565b6150f081614a89565b81146150fb57600080fd5b50565b61510781614a93565b811461511257600080fd5b50565b61511e81614adf565b811461512957600080fd5b5056fea2646970667358221220863ea1bd310a95808b029fa0c427e8788148932a8bec5dbf927dd9fcb367392064736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000014d

-----Decoded View---------------
Arg [0] : collectionSize_ (uint256): 333

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000014d


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.