ETH Price: $3,010.63 (+4.50%)
Gas: 3 Gwei

Token

YOOMOOTA x WAGMI Team (YOOMOOTA)
 

Overview

Max Total Supply

3,084 YOOMOOTA

Holders

1,051

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thebitterend.eth
Balance
3 YOOMOOTA
0xcaefbcd2ee6253e77e377063dc3c700ba2a38a98
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:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : YOOMOOTA.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/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract NFT is Ownable, ERC721A, Pausable, ReentrancyGuard {
  bool public isRevealed = false;
  uint256 public collectionSize;
  uint256 public maxBatchSize;
  uint256 public amountForDevs;

  struct WhitelistSaleConfig {
    bytes32 merkleRoot;
    uint32 startTime;
    uint64 price;
    uint64 maxPerAddress;
  }

  WhitelistSaleConfig public whitelistSaleConfig;

  struct PublicSaleConfig {
    uint32 startTime;
    uint64 price;
    uint64 maxPerAddress;
  }

  PublicSaleConfig public publicSaleConfig;

  string private _baseTokenURI;
  string private _defaultTokenURI;

  constructor(
    uint256 collectionSize_,
    uint256 maxBatchSize_,
    uint256 amountForDevs_
  ) ERC721A("YOOMOOTA x WAGMI Team", "YOOMOOTA") {
    collectionSize = collectionSize_;
    maxBatchSize = maxBatchSize_;
    amountForDevs = amountForDevs_;
  }

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

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "need to send more ETH");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  /**
   * @dev Triggers emergency stop mechanism.
   */
  function pause() external onlyOwner
  {
    _pause();
  }

  /**
   * @dev Returns contract to normal state.
   */
  function unpause() external onlyOwner
  {
    _unpause();
  }

  /**
    * @dev Hook that is called before minting and burning one token.
  */
  function _beforeTokenTransfers(
      address from,
      address to,
      uint256 startTokenId,
      uint256 quantity
  ) internal virtual whenNotPaused override {
    super._beforeTokenTransfers(from, to, startTokenId, quantity);
  }

  function setupWhitelistSale(
    bytes32 merkleRoot,
    uint32 whitelistSaleStartTime,
    uint64 whitelistSalePriceWei,
    uint64 maxPerAddressDuringWhitelistSaleMint
  ) external onlyOwner {
    whitelistSaleConfig.merkleRoot = merkleRoot;
    whitelistSaleConfig.startTime = whitelistSaleStartTime;
    whitelistSaleConfig.price = whitelistSalePriceWei;
    whitelistSaleConfig.maxPerAddress = maxPerAddressDuringWhitelistSaleMint;
  }

  function setMerkleRoot(bytes32 root) external onlyOwner {
    whitelistSaleConfig.merkleRoot = root;
  }

  function whitelistSaleMint(bytes32[] calldata proof, uint64 quantity)
    external
    payable
    callerIsUser
    nonReentrant
  {
    uint256 price = uint256(whitelistSaleConfig.price);
    uint256 saleStartTime = uint256(whitelistSaleConfig.startTime);
    uint64 maxPerAddress = whitelistSaleConfig.maxPerAddress;
    require(price != 0, "whitelist sale has not begun yet");
    require(
      saleStartTime != 0 && block.timestamp >= saleStartTime,
      "whitelist sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(
      MerkleProof.verify(proof, whitelistSaleConfig.merkleRoot, leaf),
      "invalid whitelist proof"
    );
    require(
      _getAux(_msgSender()) + quantity <= maxPerAddress,
      "can not mint this many"
    );
    _safeMint(_msgSender(), quantity);
    _setAux(_msgSender(), _getAux(_msgSender()) + quantity); 
    refundIfOver(price * quantity);
  }

  function endWhitelistSaleAndSetupPublicSale(
    uint32 publicSaleStartTime,
    uint64 publicSalePriceWei,
    uint64 maxPerAddressDuringPublicSaleMint
  ) external onlyOwner {
    whitelistSaleConfig.startTime = 0;

    publicSaleConfig.startTime = publicSaleStartTime;
    publicSaleConfig.price = publicSalePriceWei;
    publicSaleConfig.maxPerAddress = maxPerAddressDuringPublicSaleMint;
  }

  function publicSaleMint(uint64 quantity)
    external
    payable
    callerIsUser
    nonReentrant
  {
    uint256 price = uint256(publicSaleConfig.price);
    uint256 startTime = uint256(publicSaleConfig.startTime);
    uint64 maxPerAddress = publicSaleConfig.maxPerAddress;
    require(price != 0, "public sale has not begun yet");
    require(
      startTime != 0 && block.timestamp >= startTime,
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      _numberMinted(_msgSender()) - _getAux(_msgSender()) + quantity
        <= maxPerAddress,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
    refundIfOver(price * quantity);
  }

  function setIsRevealed(bool val) external onlyOwner {
    isRevealed = val;
  }

  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for(uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

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

  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721A)
    returns (string memory)
  {
    if (isRevealed) {
      return super.tokenURI(tokenId);
    }

    require(tokenId <= totalSupply(), "token not exist");
    return _defaultTokenURI;
  }

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

  function setDefaultTokenURI(string calldata uri) external onlyOwner {
    _defaultTokenURI = uri;
  }

  function setCollectionSize(uint256 size) external onlyOwner {
    collectionSize = size;
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "transfer failed");
  }
}

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/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 MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && 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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_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);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 3 of 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 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 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 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","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":"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"publicSalePriceWei","type":"uint64"},{"internalType":"uint64","name":"maxPerAddressDuringPublicSaleMint","type":"uint64"}],"name":"endWhitelistSaleAndSetupPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint64","name":"maxPerAddress","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","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":"size","type":"uint256"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setDefaultTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint32","name":"whitelistSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"whitelistSalePriceWei","type":"uint64"},{"internalType":"uint64","name":"maxPerAddressDuringWhitelistSaleMint","type":"uint64"}],"name":"setupWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSaleConfig","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint64","name":"maxPerAddress","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"whitelistSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200531e3803806200531e833981810160405281019062000052919062000301565b6040518060400160405280601581526020017f594f4f4d4f4f54412078205741474d49205465616d00000000000000000000008152506040518060400160405280600881526020017f594f4f4d4f4f5441000000000000000000000000000000000000000000000000815250620000de620000d26200016960201b60201c565b6200017160201b60201c565b8160039080519060200190620000f69291906200023a565b5080600490805190602001906200010f9291906200023a565b50620001206200023560201b60201c565b60018190555050506000600960006101000a81548160ff0219169083151502179055506001600a8190555082600c8190555081600d8190555080600e81905550505050620003e0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002489062000361565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b600081519050620002fb81620003c6565b92915050565b6000806000606084860312156200031757600080fd5b60006200032786828701620002ea565b93505060206200033a86828701620002ea565b92505060406200034d86828701620002ea565b9150509250925092565b6000819050919050565b600060028204905060018216806200037a57607f821691505b6020821081141562000391576200039062000397565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620003d18162000357565b8114620003dd57600080fd5b50565b614f2e80620003f06000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063ac446002116100ab578063d63dd7011161006f578063d63dd70114610774578063e985e9c514610790578063f2fde38b146107cd578063f711de25146107f6578063fbe1aa51146108125761021a565b8063ac446002146106a5578063aca8ffe7146106bc578063b88d4fde146106e5578063c7fcca6f1461070e578063c87b56dd146107375761021a565b80638da5cb5b116100f25780638da5cb5b146105d057806395d89b41146105fb578063a125c82414610626578063a22cb4651461064f578063a3fd2c44146106785761021a565b806370a082311461053c578063715018a6146105795780637cb64759146105905780638456cb59146105b95761021a565b806342842e0e116101a657806354214f691161017557806354214f691461045257806355f804b31461047d5780635c975abb146104a65780636352211e146104d1578063656cf9181461050e5761021a565b806342842e0e146103ac57806345c0f533146103d557806349a5980a146104005780634bfdc7d4146104295761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632913daa014610341578063375a069a1461036c5780633f4ba83a146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613e21565b61083d565b60405161025391906143be565b60405180910390f35b34801561026857600080fd5b5061027161091f565b60405161027e919061441e565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613eb8565b6109b1565b6040516102bb9190614357565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613cd8565b610a2d565b005b3480156102f957600080fd5b50610302610b38565b60405161030f9190614640565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613bd2565b610b4f565b005b34801561034d57600080fd5b50610356610b5f565b6040516103639190614640565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613eb8565b610b65565b005b3480156103a157600080fd5b506103aa610cc9565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613bd2565b610d4f565b005b3480156103e157600080fd5b506103ea610d6f565b6040516103f79190614640565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613d6c565b610d75565b005b34801561043557600080fd5b50610450600480360381019061044b9190613dbe565b610e0e565b005b34801561045e57600080fd5b50610467610f16565b60405161047491906143be565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613e73565b610f29565b005b3480156104b257600080fd5b506104bb610fbb565b6040516104c891906143be565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613eb8565b610fd2565b6040516105059190614357565b60405180910390f35b34801561051a57600080fd5b50610523610fe8565b60405161053394939291906143d9565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613b6d565b61103e565b6040516105709190614640565b60405180910390f35b34801561058557600080fd5b5061058e61110e565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613d95565b611196565b005b3480156105c557600080fd5b506105ce61121f565b005b3480156105dc57600080fd5b506105e56112a5565b6040516105f29190614357565b60405180910390f35b34801561060757600080fd5b506106106112ce565b60405161061d919061441e565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e73565b611360565b005b34801561065b57600080fd5b5061067660048036038101906106719190613c9c565b6113f2565b005b34801561068457600080fd5b5061068d61156a565b60405161069c9392919061465b565b60405180910390f35b3480156106b157600080fd5b506106ba6115ba565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613eb8565b61173b565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613c21565b6117c1565b005b34801561071a57600080fd5b5061073560048036038101906107309190613ee1565b61183d565b005b34801561074357600080fd5b5061075e60048036038101906107599190613eb8565b61195f565b60405161076b919061441e565b60405180910390f35b61078e60048036038101906107899190613f30565b611a63565b005b34801561079c57600080fd5b506107b760048036038101906107b29190613b96565b611d4f565b6040516107c491906143be565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613b6d565b611de3565b005b610810600480360381019061080b9190613d14565b611edb565b005b34801561081e57600080fd5b5061082761229a565b6040516108349190614640565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109185750610917826122a0565b5b9050919050565b60606003805461092e9061496d565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061496d565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b60006109bc8261230a565b6109f2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3882610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abf612358565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af15750610aef81610aea612358565b611d4f565b155b15610b28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b33838383612360565b505050565b6000610b42612412565b6002546001540303905090565b610b5a838383612417565b505050565b600d5481565b610b6d612358565b73ffffffffffffffffffffffffffffffffffffffff16610b8b6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890614540565b60405180910390fd5b600e5481610bed610b38565b610bf79190614736565b1115610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906145e0565b60405180910390fd5b6000600d5482610c489190614a47565b14610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906144a0565b60405180910390fd5b6000600d5482610c9891906147ca565b905060005b81811015610cc457610cb133600d546128cd565b8080610cbc906149d0565b915050610c9d565b505050565b610cd1612358565b73ffffffffffffffffffffffffffffffffffffffff16610cef6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90614540565b60405180910390fd5b610d4d6128eb565b565b610d6a838383604051806020016040528060008152506117c1565b505050565b600c5481565b610d7d612358565b73ffffffffffffffffffffffffffffffffffffffff16610d9b6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890614540565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e16612358565b73ffffffffffffffffffffffffffffffffffffffff16610e346112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614540565b60405180910390fd5b83600f6000018190555082600f60010160006101000a81548163ffffffff021916908363ffffffff16021790555081600f60010160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600f600101600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050505050565b600b60009054906101000a900460ff1681565b610f31612358565b73ffffffffffffffffffffffffffffffffffffffff16610f4f6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614540565b60405180910390fd5b818160129190610fb69291906138e3565b505050565b6000600960009054906101000a900460ff16905090565b6000610fdd8261298d565b600001519050919050565b600f8060000154908060010160009054906101000a900463ffffffff16908060010160049054906101000a900467ffffffffffffffff169080600101600c9054906101000a900467ffffffffffffffff16905084565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611116612358565b73ffffffffffffffffffffffffffffffffffffffff166111346112a5565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614540565b60405180910390fd5b6111946000612c1c565b565b61119e612358565b73ffffffffffffffffffffffffffffffffffffffff166111bc6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990614540565b60405180910390fd5b80600f6000018190555050565b611227612358565b73ffffffffffffffffffffffffffffffffffffffff166112456112a5565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290614540565b60405180910390fd5b6112a3612ce0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112dd9061496d565b80601f01602080910402602001604051908101604052809291908181526020018280546113099061496d565b80156113565780601f1061132b57610100808354040283529160200191611356565b820191906000526020600020905b81548152906001019060200180831161133957829003601f168201915b5050505050905090565b611368612358565b73ffffffffffffffffffffffffffffffffffffffff166113866112a5565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390614540565b60405180910390fd5b8181601391906113ed9291906138e3565b505050565b6113fa612358565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061146c612358565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611519612358565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906143be565b60405180910390a35050565b60118060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff169080600001600c9054906101000a900467ffffffffffffffff16905083565b6115c2612358565b73ffffffffffffffffffffffffffffffffffffffff166115e06112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90614540565b60405180910390fd5b6002600a54141561167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614620565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116aa90614342565b60006040518083038185875af1925050503d80600081146116e7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ec565b606091505b5050905080611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614600565b60405180910390fd5b506001600a81905550565b611743612358565b73ffffffffffffffffffffffffffffffffffffffff166117616112a5565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614540565b60405180910390fd5b80600c8190555050565b6117cc848484612417565b6117eb8373ffffffffffffffffffffffffffffffffffffffff16612d83565b801561180057506117fe84848484612d96565b155b15611837576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611845612358565b73ffffffffffffffffffffffffffffffffffffffff166118636112a5565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614540565b60405180910390fd5b6000600f60010160006101000a81548163ffffffff021916908363ffffffff16021790555082601160000160006101000a81548163ffffffff021916908363ffffffff16021790555081601160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550806011600001600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505050565b6060600b60009054906101000a900460ff16156119865761197f82612ef6565b9050611a5e565b61198e610b38565b8211156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614560565b60405180910390fd5b601380546119dd9061496d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a099061496d565b8015611a565780601f10611a2b57610100808354040283529160200191611a56565b820191906000526020600020905b815481529060010190602001808311611a3957829003601f168201915b505050505090505b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906144e0565b60405180910390fd5b6002600a541415611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90614620565b60405180910390fd5b6002600a819055506000601160000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000601160000160009054906101000a900463ffffffff1663ffffffff16905060006011600001600c9054906101000a900467ffffffffffffffff1690506000831415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090614580565b60405180910390fd5b60008214158015611bda5750814210155b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614580565b60405180910390fd5b600c548467ffffffffffffffff16611c2f610b38565b611c399190614736565b1115611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614520565b60405180910390fd5b8067ffffffffffffffff168467ffffffffffffffff16611ca0611c9b612358565b612f95565b67ffffffffffffffff16611cba611cb5612358565b612ff5565b611cc49190614855565b611cce9190614736565b1115611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906145c0565b60405180910390fd5b611d23338567ffffffffffffffff166128cd565b611d418467ffffffffffffffff1684611d3c91906147fb565b61305f565b5050506001600a8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611deb612358565b73ffffffffffffffffffffffffffffffffffffffff16611e096112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614540565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690614480565b60405180910390fd5b611ed881612c1c565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906144e0565b60405180910390fd5b6002600a541415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614620565b60405180910390fd5b6002600a819055506000600f60010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600f60010160009054906101000a900463ffffffff1663ffffffff1690506000600f600101600c9054906101000a900467ffffffffffffffff1690506000831415612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890614460565b60405180910390fd5b600082141580156120525750814210155b612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890614460565b60405180910390fd5b600c548467ffffffffffffffff166120a7610b38565b6120b19190614736565b11156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990614520565b60405180910390fd5b60006120fc612358565b60405160200161210c91906142d7565b604051602081830303815290604052805190602001209050612175878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f6000015483613100565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906145a0565b60405180910390fd5b8167ffffffffffffffff16856121d06121cb612358565b612f95565b6121da919061478c565b67ffffffffffffffff161115612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c906145c0565b60405180910390fd5b612240612230612358565b8667ffffffffffffffff166128cd565b61226b61224b612358565b8661225c612257612358565b612f95565b612266919061478c565b613117565b6122898567ffffffffffffffff168561228491906147fb565b61305f565b505050506001600a81905550505050565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612315612412565b11158015612324575060015482105b8015612351575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124228261298d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ae612358565b73ffffffffffffffffffffffffffffffffffffffff1614806124dd57506124dc856124d7612358565b611d4f565b5b8061252257506124eb612358565b73ffffffffffffffffffffffffffffffffffffffff1661250a846109b1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cf8585856001613184565b6125db60008487612360565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285b57600154821461285a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c685858560016131de565b5050505050565b6128e78282604051806020016040528060008152506131e4565b5050565b6128f3610fbb565b612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614440565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612976612358565b6040516129839190614357565b60405180910390a1565b612995613969565b6000829050806129a3612412565b111580156129b2575060015481105b15612be5576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612be357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac7578092505050612c17565b5b600115612be257818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bdd578092505050612c17565b612ac8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ce8610fbb565b15612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614500565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d6c612358565b604051612d799190614357565b60405180910390a1565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dbc612358565b8786866040518563ffffffff1660e01b8152600401612dde9493929190614372565b602060405180830381600087803b158015612df857600080fd5b505af1925050508015612e2957506040513d601f19601f82011682018060405250810190612e269190613e4a565b60015b612ea3573d8060008114612e59576040519150601f19603f3d011682016040523d82523d6000602084013e612e5e565b606091505b50600081511415612e9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060612f018261230a565b612f37576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612f416131f6565b9050600081511415612f625760405180602001604052806000815250612f8d565b80612f6c84613288565b604051602001612f7d92919061431e565b6040516020818303038152906040525b915050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b803410156130a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613099906144c0565b60405180910390fd5b803411156130fd573373ffffffffffffffffffffffffffffffffffffffff166108fc82346130d09190614855565b9081150290604051600060405180830381858888f193505050501580156130fb573d6000803e3d6000fd5b505b50565b60008261310d8584613435565b1490509392505050565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61318c610fbb565b156131cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c390614500565b60405180910390fd5b6131d88484848461350e565b50505050565b50505050565b6131f18383836001613514565b505050565b6060601280546132059061496d565b80601f01602080910402602001604051908101604052809291908181526020018280546132319061496d565b801561327e5780601f106132535761010080835404028352916020019161327e565b820191906000526020600020905b81548152906001019060200180831161326157829003601f168201915b5050505050905090565b606060008214156132d0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613430565b600082905060005b600082146133025780806132eb906149d0565b915050600a826132fb91906147ca565b91506132d8565b60008167ffffffffffffffff811115613344577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133765781602001600182028036833780820191505090505b5090505b600085146134295760018261338f9190614855565b9150600a8561339e9190614a47565b60306133aa9190614736565b60f81b8183815181106133e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342291906147ca565b945061337a565b8093505050505b919050565b60008082905060005b8451811015613503576000858281518110613482577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134c35782816040516020016134a69291906142f2565b6040516020818303038152906040528051906020012092506134ef565b80836040516020016134d69291906142f2565b6040516020818303038152906040528051906020012092505b5080806134fb906149d0565b91505061343e565b508091505092915050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135bd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135ca6000868387613184565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561379457506137938773ffffffffffffffffffffffffffffffffffffffff16612d83565b5b1561385a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138096000888480600101955088612d96565b61383f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561379a57826001541461385557600080fd5b6138c6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561385b575b8160018190555050506138dc60008683876131de565b5050505050565b8280546138ef9061496d565b90600052602060002090601f0160209004810192826139115760008555613958565b82601f1061392a57803560ff1916838001178555613958565b82800160010185558215613958579182015b8281111561395757823582559160200191906001019061393c565b5b50905061396591906139ac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139c55760008160009055506001016139ad565b5090565b60006139dc6139d7846146b7565b614692565b9050828152602081018484840111156139f457600080fd5b6139ff84828561492b565b509392505050565b600081359050613a1681614e57565b92915050565b60008083601f840112613a2e57600080fd5b8235905067ffffffffffffffff811115613a4757600080fd5b602083019150836020820283011115613a5f57600080fd5b9250929050565b600081359050613a7581614e6e565b92915050565b600081359050613a8a81614e85565b92915050565b600081359050613a9f81614e9c565b92915050565b600081519050613ab481614e9c565b92915050565b600082601f830112613acb57600080fd5b8135613adb8482602086016139c9565b91505092915050565b60008083601f840112613af657600080fd5b8235905067ffffffffffffffff811115613b0f57600080fd5b602083019150836001820283011115613b2757600080fd5b9250929050565b600081359050613b3d81614eb3565b92915050565b600081359050613b5281614eca565b92915050565b600081359050613b6781614ee1565b92915050565b600060208284031215613b7f57600080fd5b6000613b8d84828501613a07565b91505092915050565b60008060408385031215613ba957600080fd5b6000613bb785828601613a07565b9250506020613bc885828601613a07565b9150509250929050565b600080600060608486031215613be757600080fd5b6000613bf586828701613a07565b9350506020613c0686828701613a07565b9250506040613c1786828701613b2e565b9150509250925092565b60008060008060808587031215613c3757600080fd5b6000613c4587828801613a07565b9450506020613c5687828801613a07565b9350506040613c6787828801613b2e565b925050606085013567ffffffffffffffff811115613c8457600080fd5b613c9087828801613aba565b91505092959194509250565b60008060408385031215613caf57600080fd5b6000613cbd85828601613a07565b9250506020613cce85828601613a66565b9150509250929050565b60008060408385031215613ceb57600080fd5b6000613cf985828601613a07565b9250506020613d0a85828601613b2e565b9150509250929050565b600080600060408486031215613d2957600080fd5b600084013567ffffffffffffffff811115613d4357600080fd5b613d4f86828701613a1c565b93509350506020613d6286828701613b58565b9150509250925092565b600060208284031215613d7e57600080fd5b6000613d8c84828501613a66565b91505092915050565b600060208284031215613da757600080fd5b6000613db584828501613a7b565b91505092915050565b60008060008060808587031215613dd457600080fd5b6000613de287828801613a7b565b9450506020613df387828801613b43565b9350506040613e0487828801613b58565b9250506060613e1587828801613b58565b91505092959194509250565b600060208284031215613e3357600080fd5b6000613e4184828501613a90565b91505092915050565b600060208284031215613e5c57600080fd5b6000613e6a84828501613aa5565b91505092915050565b60008060208385031215613e8657600080fd5b600083013567ffffffffffffffff811115613ea057600080fd5b613eac85828601613ae4565b92509250509250929050565b600060208284031215613eca57600080fd5b6000613ed884828501613b2e565b91505092915050565b600080600060608486031215613ef657600080fd5b6000613f0486828701613b43565b9350506020613f1586828701613b58565b9250506040613f2686828701613b58565b9150509250925092565b600060208284031215613f4257600080fd5b6000613f5084828501613b58565b91505092915050565b613f6281614889565b82525050565b613f79613f7482614889565b614a19565b82525050565b613f888161489b565b82525050565b613f97816148a7565b82525050565b613fae613fa9826148a7565b614a2b565b82525050565b6000613fbf826146e8565b613fc981856146fe565b9350613fd981856020860161493a565b613fe281614b34565b840191505092915050565b6000613ff8826146f3565b614002818561471a565b935061401281856020860161493a565b61401b81614b34565b840191505092915050565b6000614031826146f3565b61403b818561472b565b935061404b81856020860161493a565b80840191505092915050565b600061406460148361471a565b915061406f82614b52565b602082019050919050565b600061408760208361471a565b915061409282614b7b565b602082019050919050565b60006140aa60268361471a565b91506140b582614ba4565b604082019050919050565b60006140cd602c8361471a565b91506140d882614bf3565b604082019050919050565b60006140f060158361471a565b91506140fb82614c42565b602082019050919050565b6000614113601e8361471a565b915061411e82614c6b565b602082019050919050565b600061413660108361471a565b915061414182614c94565b602082019050919050565b600061415960128361471a565b915061416482614cbd565b602082019050919050565b600061417c60208361471a565b915061418782614ce6565b602082019050919050565b600061419f600f8361471a565b91506141aa82614d0f565b602082019050919050565b60006141c2601d8361471a565b91506141cd82614d38565b602082019050919050565b60006141e560178361471a565b91506141f082614d61565b602082019050919050565b600061420860008361470f565b915061421382614d8a565b600082019050919050565b600061422b60168361471a565b915061423682614d8d565b602082019050919050565b600061424e60278361471a565b915061425982614db6565b604082019050919050565b6000614271600f8361471a565b915061427c82614e05565b602082019050919050565b6000614294601f8361471a565b915061429f82614e2e565b602082019050919050565b6142b3816148fd565b82525050565b6142c281614907565b82525050565b6142d181614917565b82525050565b60006142e38284613f68565b60148201915081905092915050565b60006142fe8285613f9d565b60208201915061430e8284613f9d565b6020820191508190509392505050565b600061432a8285614026565b91506143368284614026565b91508190509392505050565b600061434d826141fb565b9150819050919050565b600060208201905061436c6000830184613f59565b92915050565b60006080820190506143876000830187613f59565b6143946020830186613f59565b6143a160408301856142aa565b81810360608301526143b38184613fb4565b905095945050505050565b60006020820190506143d36000830184613f7f565b92915050565b60006080820190506143ee6000830187613f8e565b6143fb60208301866142b9565b61440860408301856142c8565b61441560608301846142c8565b95945050505050565b600060208201905081810360008301526144388184613fed565b905092915050565b6000602082019050818103600083015261445981614057565b9050919050565b600060208201905081810360008301526144798161407a565b9050919050565b600060208201905081810360008301526144998161409d565b9050919050565b600060208201905081810360008301526144b9816140c0565b9050919050565b600060208201905081810360008301526144d9816140e3565b9050919050565b600060208201905081810360008301526144f981614106565b9050919050565b6000602082019050818103600083015261451981614129565b9050919050565b600060208201905081810360008301526145398161414c565b9050919050565b600060208201905081810360008301526145598161416f565b9050919050565b6000602082019050818103600083015261457981614192565b9050919050565b60006020820190508181036000830152614599816141b5565b9050919050565b600060208201905081810360008301526145b9816141d8565b9050919050565b600060208201905081810360008301526145d98161421e565b9050919050565b600060208201905081810360008301526145f981614241565b9050919050565b6000602082019050818103600083015261461981614264565b9050919050565b6000602082019050818103600083015261463981614287565b9050919050565b600060208201905061465560008301846142aa565b92915050565b600060608201905061467060008301866142b9565b61467d60208301856142c8565b61468a60408301846142c8565b949350505050565b600061469c6146ad565b90506146a8828261499f565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d2576146d1614b05565b5b6146db82614b34565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614741826148fd565b915061474c836148fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478157614780614a78565b5b828201905092915050565b600061479782614917565b91506147a283614917565b92508267ffffffffffffffff038211156147bf576147be614a78565b5b828201905092915050565b60006147d5826148fd565b91506147e0836148fd565b9250826147f0576147ef614aa7565b5b828204905092915050565b6000614806826148fd565b9150614811836148fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484a57614849614a78565b5b828202905092915050565b6000614860826148fd565b915061486b836148fd565b92508282101561487e5761487d614a78565b5b828203905092915050565b6000614894826148dd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561495857808201518184015260208101905061493d565b83811115614967576000848401525b50505050565b6000600282049050600182168061498557607f821691505b6020821081141561499957614998614ad6565b5b50919050565b6149a882614b34565b810181811067ffffffffffffffff821117156149c7576149c6614b05565b5b80604052505050565b60006149db826148fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0e57614a0d614a78565b5b600182019050919050565b6000614a2482614a35565b9050919050565b6000819050919050565b6000614a4082614b45565b9050919050565b6000614a52826148fd565b9150614a5d836148fd565b925082614a6d57614a6c614aa7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f77686974656c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f696e76616c69642077686974656c6973742070726f6f66000000000000000000600082015250565b50565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e6081614889565b8114614e6b57600080fd5b50565b614e778161489b565b8114614e8257600080fd5b50565b614e8e816148a7565b8114614e9957600080fd5b50565b614ea5816148b1565b8114614eb057600080fd5b50565b614ebc816148fd565b8114614ec757600080fd5b50565b614ed381614907565b8114614ede57600080fd5b50565b614eea81614917565b8114614ef557600080fd5b5056fea264697066735822122054811e6d8ece1d8f43aa1e87829b00a3320021471015392c29d34ca2346ad2ae64736f6c634300080400330000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c8

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063ac446002116100ab578063d63dd7011161006f578063d63dd70114610774578063e985e9c514610790578063f2fde38b146107cd578063f711de25146107f6578063fbe1aa51146108125761021a565b8063ac446002146106a5578063aca8ffe7146106bc578063b88d4fde146106e5578063c7fcca6f1461070e578063c87b56dd146107375761021a565b80638da5cb5b116100f25780638da5cb5b146105d057806395d89b41146105fb578063a125c82414610626578063a22cb4651461064f578063a3fd2c44146106785761021a565b806370a082311461053c578063715018a6146105795780637cb64759146105905780638456cb59146105b95761021a565b806342842e0e116101a657806354214f691161017557806354214f691461045257806355f804b31461047d5780635c975abb146104a65780636352211e146104d1578063656cf9181461050e5761021a565b806342842e0e146103ac57806345c0f533146103d557806349a5980a146104005780634bfdc7d4146104295761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632913daa014610341578063375a069a1461036c5780633f4ba83a146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613e21565b61083d565b60405161025391906143be565b60405180910390f35b34801561026857600080fd5b5061027161091f565b60405161027e919061441e565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613eb8565b6109b1565b6040516102bb9190614357565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613cd8565b610a2d565b005b3480156102f957600080fd5b50610302610b38565b60405161030f9190614640565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613bd2565b610b4f565b005b34801561034d57600080fd5b50610356610b5f565b6040516103639190614640565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190613eb8565b610b65565b005b3480156103a157600080fd5b506103aa610cc9565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190613bd2565b610d4f565b005b3480156103e157600080fd5b506103ea610d6f565b6040516103f79190614640565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613d6c565b610d75565b005b34801561043557600080fd5b50610450600480360381019061044b9190613dbe565b610e0e565b005b34801561045e57600080fd5b50610467610f16565b60405161047491906143be565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613e73565b610f29565b005b3480156104b257600080fd5b506104bb610fbb565b6040516104c891906143be565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613eb8565b610fd2565b6040516105059190614357565b60405180910390f35b34801561051a57600080fd5b50610523610fe8565b60405161053394939291906143d9565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613b6d565b61103e565b6040516105709190614640565b60405180910390f35b34801561058557600080fd5b5061058e61110e565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613d95565b611196565b005b3480156105c557600080fd5b506105ce61121f565b005b3480156105dc57600080fd5b506105e56112a5565b6040516105f29190614357565b60405180910390f35b34801561060757600080fd5b506106106112ce565b60405161061d919061441e565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e73565b611360565b005b34801561065b57600080fd5b5061067660048036038101906106719190613c9c565b6113f2565b005b34801561068457600080fd5b5061068d61156a565b60405161069c9392919061465b565b60405180910390f35b3480156106b157600080fd5b506106ba6115ba565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613eb8565b61173b565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613c21565b6117c1565b005b34801561071a57600080fd5b5061073560048036038101906107309190613ee1565b61183d565b005b34801561074357600080fd5b5061075e60048036038101906107599190613eb8565b61195f565b60405161076b919061441e565b60405180910390f35b61078e60048036038101906107899190613f30565b611a63565b005b34801561079c57600080fd5b506107b760048036038101906107b29190613b96565b611d4f565b6040516107c491906143be565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613b6d565b611de3565b005b610810600480360381019061080b9190613d14565b611edb565b005b34801561081e57600080fd5b5061082761229a565b6040516108349190614640565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109185750610917826122a0565b5b9050919050565b60606003805461092e9061496d565b80601f016020809104026020016040519081016040528092919081815260200182805461095a9061496d565b80156109a75780601f1061097c576101008083540402835291602001916109a7565b820191906000526020600020905b81548152906001019060200180831161098a57829003601f168201915b5050505050905090565b60006109bc8261230a565b6109f2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3882610fd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abf612358565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af15750610aef81610aea612358565b611d4f565b155b15610b28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b33838383612360565b505050565b6000610b42612412565b6002546001540303905090565b610b5a838383612417565b505050565b600d5481565b610b6d612358565b73ffffffffffffffffffffffffffffffffffffffff16610b8b6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890614540565b60405180910390fd5b600e5481610bed610b38565b610bf79190614736565b1115610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906145e0565b60405180910390fd5b6000600d5482610c489190614a47565b14610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f906144a0565b60405180910390fd5b6000600d5482610c9891906147ca565b905060005b81811015610cc457610cb133600d546128cd565b8080610cbc906149d0565b915050610c9d565b505050565b610cd1612358565b73ffffffffffffffffffffffffffffffffffffffff16610cef6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90614540565b60405180910390fd5b610d4d6128eb565b565b610d6a838383604051806020016040528060008152506117c1565b505050565b600c5481565b610d7d612358565b73ffffffffffffffffffffffffffffffffffffffff16610d9b6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890614540565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e16612358565b73ffffffffffffffffffffffffffffffffffffffff16610e346112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614540565b60405180910390fd5b83600f6000018190555082600f60010160006101000a81548163ffffffff021916908363ffffffff16021790555081600f60010160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600f600101600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050505050565b600b60009054906101000a900460ff1681565b610f31612358565b73ffffffffffffffffffffffffffffffffffffffff16610f4f6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90614540565b60405180910390fd5b818160129190610fb69291906138e3565b505050565b6000600960009054906101000a900460ff16905090565b6000610fdd8261298d565b600001519050919050565b600f8060000154908060010160009054906101000a900463ffffffff16908060010160049054906101000a900467ffffffffffffffff169080600101600c9054906101000a900467ffffffffffffffff16905084565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611116612358565b73ffffffffffffffffffffffffffffffffffffffff166111346112a5565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614540565b60405180910390fd5b6111946000612c1c565b565b61119e612358565b73ffffffffffffffffffffffffffffffffffffffff166111bc6112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120990614540565b60405180910390fd5b80600f6000018190555050565b611227612358565b73ffffffffffffffffffffffffffffffffffffffff166112456112a5565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290614540565b60405180910390fd5b6112a3612ce0565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112dd9061496d565b80601f01602080910402602001604051908101604052809291908181526020018280546113099061496d565b80156113565780601f1061132b57610100808354040283529160200191611356565b820191906000526020600020905b81548152906001019060200180831161133957829003601f168201915b5050505050905090565b611368612358565b73ffffffffffffffffffffffffffffffffffffffff166113866112a5565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390614540565b60405180910390fd5b8181601391906113ed9291906138e3565b505050565b6113fa612358565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061146c612358565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611519612358565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155e91906143be565b60405180910390a35050565b60118060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff169080600001600c9054906101000a900467ffffffffffffffff16905083565b6115c2612358565b73ffffffffffffffffffffffffffffffffffffffff166115e06112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90614540565b60405180910390fd5b6002600a54141561167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390614620565b60405180910390fd5b6002600a8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516116aa90614342565b60006040518083038185875af1925050503d80600081146116e7576040519150601f19603f3d011682016040523d82523d6000602084013e6116ec565b606091505b5050905080611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614600565b60405180910390fd5b506001600a81905550565b611743612358565b73ffffffffffffffffffffffffffffffffffffffff166117616112a5565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614540565b60405180910390fd5b80600c8190555050565b6117cc848484612417565b6117eb8373ffffffffffffffffffffffffffffffffffffffff16612d83565b801561180057506117fe84848484612d96565b155b15611837576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611845612358565b73ffffffffffffffffffffffffffffffffffffffff166118636112a5565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614540565b60405180910390fd5b6000600f60010160006101000a81548163ffffffff021916908363ffffffff16021790555082601160000160006101000a81548163ffffffff021916908363ffffffff16021790555081601160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550806011600001600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505050565b6060600b60009054906101000a900460ff16156119865761197f82612ef6565b9050611a5e565b61198e610b38565b8211156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614560565b60405180910390fd5b601380546119dd9061496d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a099061496d565b8015611a565780601f10611a2b57610100808354040283529160200191611a56565b820191906000526020600020905b815481529060010190602001808311611a3957829003601f168201915b505050505090505b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906144e0565b60405180910390fd5b6002600a541415611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90614620565b60405180910390fd5b6002600a819055506000601160000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000601160000160009054906101000a900463ffffffff1663ffffffff16905060006011600001600c9054906101000a900467ffffffffffffffff1690506000831415611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090614580565b60405180910390fd5b60008214158015611bda5750814210155b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1090614580565b60405180910390fd5b600c548467ffffffffffffffff16611c2f610b38565b611c399190614736565b1115611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614520565b60405180910390fd5b8067ffffffffffffffff168467ffffffffffffffff16611ca0611c9b612358565b612f95565b67ffffffffffffffff16611cba611cb5612358565b612ff5565b611cc49190614855565b611cce9190614736565b1115611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d06906145c0565b60405180910390fd5b611d23338567ffffffffffffffff166128cd565b611d418467ffffffffffffffff1684611d3c91906147fb565b61305f565b5050506001600a8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611deb612358565b73ffffffffffffffffffffffffffffffffffffffff16611e096112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614540565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690614480565b60405180910390fd5b611ed881612c1c565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f40906144e0565b60405180910390fd5b6002600a541415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614620565b60405180910390fd5b6002600a819055506000600f60010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff1690506000600f60010160009054906101000a900463ffffffff1663ffffffff1690506000600f600101600c9054906101000a900467ffffffffffffffff1690506000831415612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890614460565b60405180910390fd5b600082141580156120525750814210155b612091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208890614460565b60405180910390fd5b600c548467ffffffffffffffff166120a7610b38565b6120b19190614736565b11156120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990614520565b60405180910390fd5b60006120fc612358565b60405160200161210c91906142d7565b604051602081830303815290604052805190602001209050612175878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f6000015483613100565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab906145a0565b60405180910390fd5b8167ffffffffffffffff16856121d06121cb612358565b612f95565b6121da919061478c565b67ffffffffffffffff161115612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c906145c0565b60405180910390fd5b612240612230612358565b8667ffffffffffffffff166128cd565b61226b61224b612358565b8661225c612257612358565b612f95565b612266919061478c565b613117565b6122898567ffffffffffffffff168561228491906147fb565b61305f565b505050506001600a81905550505050565b600e5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612315612412565b11158015612324575060015482105b8015612351575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006124228261298d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461248d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124ae612358565b73ffffffffffffffffffffffffffffffffffffffff1614806124dd57506124dc856124d7612358565b611d4f565b5b8061252257506124eb612358565b73ffffffffffffffffffffffffffffffffffffffff1661250a846109b1565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125cf8585856001613184565b6125db60008487612360565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561285b57600154821461285a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c685858560016131de565b5050505050565b6128e78282604051806020016040528060008152506131e4565b5050565b6128f3610fbb565b612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990614440565b60405180910390fd5b6000600960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612976612358565b6040516129839190614357565b60405180910390a1565b612995613969565b6000829050806129a3612412565b111580156129b2575060015481105b15612be5576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612be357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac7578092505050612c17565b5b600115612be257818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bdd578092505050612c17565b612ac8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ce8610fbb565b15612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614500565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d6c612358565b604051612d799190614357565b60405180910390a1565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dbc612358565b8786866040518563ffffffff1660e01b8152600401612dde9493929190614372565b602060405180830381600087803b158015612df857600080fd5b505af1925050508015612e2957506040513d601f19601f82011682018060405250810190612e269190613e4a565b60015b612ea3573d8060008114612e59576040519150601f19603f3d011682016040523d82523d6000602084013e612e5e565b606091505b50600081511415612e9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060612f018261230a565b612f37576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612f416131f6565b9050600081511415612f625760405180602001604052806000815250612f8d565b80612f6c84613288565b604051602001612f7d92919061431e565b6040516020818303038152906040525b915050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b803410156130a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613099906144c0565b60405180910390fd5b803411156130fd573373ffffffffffffffffffffffffffffffffffffffff166108fc82346130d09190614855565b9081150290604051600060405180830381858888f193505050501580156130fb573d6000803e3d6000fd5b505b50565b60008261310d8584613435565b1490509392505050565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61318c610fbb565b156131cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c390614500565b60405180910390fd5b6131d88484848461350e565b50505050565b50505050565b6131f18383836001613514565b505050565b6060601280546132059061496d565b80601f01602080910402602001604051908101604052809291908181526020018280546132319061496d565b801561327e5780601f106132535761010080835404028352916020019161327e565b820191906000526020600020905b81548152906001019060200180831161326157829003601f168201915b5050505050905090565b606060008214156132d0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613430565b600082905060005b600082146133025780806132eb906149d0565b915050600a826132fb91906147ca565b91506132d8565b60008167ffffffffffffffff811115613344577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133765781602001600182028036833780820191505090505b5090505b600085146134295760018261338f9190614855565b9150600a8561339e9190614a47565b60306133aa9190614736565b60f81b8183815181106133e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342291906147ca565b945061337a565b8093505050505b919050565b60008082905060005b8451811015613503576000858281518110613482577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134c35782816040516020016134a69291906142f2565b6040516020818303038152906040528051906020012092506134ef565b80836040516020016134d69291906142f2565b6040516020818303038152906040528051906020012092505b5080806134fb906149d0565b91505061343e565b508091505092915050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156135bd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135ca6000868387613184565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561379457506137938773ffffffffffffffffffffffffffffffffffffffff16612d83565b5b1561385a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138096000888480600101955088612d96565b61383f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561379a57826001541461385557600080fd5b6138c6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561385b575b8160018190555050506138dc60008683876131de565b5050505050565b8280546138ef9061496d565b90600052602060002090601f0160209004810192826139115760008555613958565b82601f1061392a57803560ff1916838001178555613958565b82800160010185558215613958579182015b8281111561395757823582559160200191906001019061393c565b5b50905061396591906139ac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156139c55760008160009055506001016139ad565b5090565b60006139dc6139d7846146b7565b614692565b9050828152602081018484840111156139f457600080fd5b6139ff84828561492b565b509392505050565b600081359050613a1681614e57565b92915050565b60008083601f840112613a2e57600080fd5b8235905067ffffffffffffffff811115613a4757600080fd5b602083019150836020820283011115613a5f57600080fd5b9250929050565b600081359050613a7581614e6e565b92915050565b600081359050613a8a81614e85565b92915050565b600081359050613a9f81614e9c565b92915050565b600081519050613ab481614e9c565b92915050565b600082601f830112613acb57600080fd5b8135613adb8482602086016139c9565b91505092915050565b60008083601f840112613af657600080fd5b8235905067ffffffffffffffff811115613b0f57600080fd5b602083019150836001820283011115613b2757600080fd5b9250929050565b600081359050613b3d81614eb3565b92915050565b600081359050613b5281614eca565b92915050565b600081359050613b6781614ee1565b92915050565b600060208284031215613b7f57600080fd5b6000613b8d84828501613a07565b91505092915050565b60008060408385031215613ba957600080fd5b6000613bb785828601613a07565b9250506020613bc885828601613a07565b9150509250929050565b600080600060608486031215613be757600080fd5b6000613bf586828701613a07565b9350506020613c0686828701613a07565b9250506040613c1786828701613b2e565b9150509250925092565b60008060008060808587031215613c3757600080fd5b6000613c4587828801613a07565b9450506020613c5687828801613a07565b9350506040613c6787828801613b2e565b925050606085013567ffffffffffffffff811115613c8457600080fd5b613c9087828801613aba565b91505092959194509250565b60008060408385031215613caf57600080fd5b6000613cbd85828601613a07565b9250506020613cce85828601613a66565b9150509250929050565b60008060408385031215613ceb57600080fd5b6000613cf985828601613a07565b9250506020613d0a85828601613b2e565b9150509250929050565b600080600060408486031215613d2957600080fd5b600084013567ffffffffffffffff811115613d4357600080fd5b613d4f86828701613a1c565b93509350506020613d6286828701613b58565b9150509250925092565b600060208284031215613d7e57600080fd5b6000613d8c84828501613a66565b91505092915050565b600060208284031215613da757600080fd5b6000613db584828501613a7b565b91505092915050565b60008060008060808587031215613dd457600080fd5b6000613de287828801613a7b565b9450506020613df387828801613b43565b9350506040613e0487828801613b58565b9250506060613e1587828801613b58565b91505092959194509250565b600060208284031215613e3357600080fd5b6000613e4184828501613a90565b91505092915050565b600060208284031215613e5c57600080fd5b6000613e6a84828501613aa5565b91505092915050565b60008060208385031215613e8657600080fd5b600083013567ffffffffffffffff811115613ea057600080fd5b613eac85828601613ae4565b92509250509250929050565b600060208284031215613eca57600080fd5b6000613ed884828501613b2e565b91505092915050565b600080600060608486031215613ef657600080fd5b6000613f0486828701613b43565b9350506020613f1586828701613b58565b9250506040613f2686828701613b58565b9150509250925092565b600060208284031215613f4257600080fd5b6000613f5084828501613b58565b91505092915050565b613f6281614889565b82525050565b613f79613f7482614889565b614a19565b82525050565b613f888161489b565b82525050565b613f97816148a7565b82525050565b613fae613fa9826148a7565b614a2b565b82525050565b6000613fbf826146e8565b613fc981856146fe565b9350613fd981856020860161493a565b613fe281614b34565b840191505092915050565b6000613ff8826146f3565b614002818561471a565b935061401281856020860161493a565b61401b81614b34565b840191505092915050565b6000614031826146f3565b61403b818561472b565b935061404b81856020860161493a565b80840191505092915050565b600061406460148361471a565b915061406f82614b52565b602082019050919050565b600061408760208361471a565b915061409282614b7b565b602082019050919050565b60006140aa60268361471a565b91506140b582614ba4565b604082019050919050565b60006140cd602c8361471a565b91506140d882614bf3565b604082019050919050565b60006140f060158361471a565b91506140fb82614c42565b602082019050919050565b6000614113601e8361471a565b915061411e82614c6b565b602082019050919050565b600061413660108361471a565b915061414182614c94565b602082019050919050565b600061415960128361471a565b915061416482614cbd565b602082019050919050565b600061417c60208361471a565b915061418782614ce6565b602082019050919050565b600061419f600f8361471a565b91506141aa82614d0f565b602082019050919050565b60006141c2601d8361471a565b91506141cd82614d38565b602082019050919050565b60006141e560178361471a565b91506141f082614d61565b602082019050919050565b600061420860008361470f565b915061421382614d8a565b600082019050919050565b600061422b60168361471a565b915061423682614d8d565b602082019050919050565b600061424e60278361471a565b915061425982614db6565b604082019050919050565b6000614271600f8361471a565b915061427c82614e05565b602082019050919050565b6000614294601f8361471a565b915061429f82614e2e565b602082019050919050565b6142b3816148fd565b82525050565b6142c281614907565b82525050565b6142d181614917565b82525050565b60006142e38284613f68565b60148201915081905092915050565b60006142fe8285613f9d565b60208201915061430e8284613f9d565b6020820191508190509392505050565b600061432a8285614026565b91506143368284614026565b91508190509392505050565b600061434d826141fb565b9150819050919050565b600060208201905061436c6000830184613f59565b92915050565b60006080820190506143876000830187613f59565b6143946020830186613f59565b6143a160408301856142aa565b81810360608301526143b38184613fb4565b905095945050505050565b60006020820190506143d36000830184613f7f565b92915050565b60006080820190506143ee6000830187613f8e565b6143fb60208301866142b9565b61440860408301856142c8565b61441560608301846142c8565b95945050505050565b600060208201905081810360008301526144388184613fed565b905092915050565b6000602082019050818103600083015261445981614057565b9050919050565b600060208201905081810360008301526144798161407a565b9050919050565b600060208201905081810360008301526144998161409d565b9050919050565b600060208201905081810360008301526144b9816140c0565b9050919050565b600060208201905081810360008301526144d9816140e3565b9050919050565b600060208201905081810360008301526144f981614106565b9050919050565b6000602082019050818103600083015261451981614129565b9050919050565b600060208201905081810360008301526145398161414c565b9050919050565b600060208201905081810360008301526145598161416f565b9050919050565b6000602082019050818103600083015261457981614192565b9050919050565b60006020820190508181036000830152614599816141b5565b9050919050565b600060208201905081810360008301526145b9816141d8565b9050919050565b600060208201905081810360008301526145d98161421e565b9050919050565b600060208201905081810360008301526145f981614241565b9050919050565b6000602082019050818103600083015261461981614264565b9050919050565b6000602082019050818103600083015261463981614287565b9050919050565b600060208201905061465560008301846142aa565b92915050565b600060608201905061467060008301866142b9565b61467d60208301856142c8565b61468a60408301846142c8565b949350505050565b600061469c6146ad565b90506146a8828261499f565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d2576146d1614b05565b5b6146db82614b34565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614741826148fd565b915061474c836148fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478157614780614a78565b5b828201905092915050565b600061479782614917565b91506147a283614917565b92508267ffffffffffffffff038211156147bf576147be614a78565b5b828201905092915050565b60006147d5826148fd565b91506147e0836148fd565b9250826147f0576147ef614aa7565b5b828204905092915050565b6000614806826148fd565b9150614811836148fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484a57614849614a78565b5b828202905092915050565b6000614860826148fd565b915061486b836148fd565b92508282101561487e5761487d614a78565b5b828203905092915050565b6000614894826148dd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561495857808201518184015260208101905061493d565b83811115614967576000848401525b50505050565b6000600282049050600182168061498557607f821691505b6020821081141561499957614998614ad6565b5b50919050565b6149a882614b34565b810181811067ffffffffffffffff821117156149c7576149c6614b05565b5b80604052505050565b60006149db826148fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0e57614a0d614a78565b5b600182019050919050565b6000614a2482614a35565b9050919050565b6000819050919050565b6000614a4082614b45565b9050919050565b6000614a52826148fd565b9150614a5d836148fd565b925082614a6d57614a6c614aa7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f77686974656c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f6e65656420746f2073656e64206d6f7265204554480000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f746f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f696e76616c69642077686974656c6973742070726f6f66000000000000000000600082015250565b50565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e6081614889565b8114614e6b57600080fd5b50565b614e778161489b565b8114614e8257600080fd5b50565b614e8e816148a7565b8114614e9957600080fd5b50565b614ea5816148b1565b8114614eb057600080fd5b50565b614ebc816148fd565b8114614ec757600080fd5b50565b614ed381614907565b8114614ede57600080fd5b50565b614eea81614917565b8114614ef557600080fd5b5056fea264697066735822122054811e6d8ece1d8f43aa1e87829b00a3320021471015392c29d34ca2346ad2ae64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000c8

-----Decoded View---------------
Arg [0] : collectionSize_ (uint256): 7777
Arg [1] : maxBatchSize_ (uint256): 5
Arg [2] : amountForDevs_ (uint256): 200

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c8


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.