ETH Price: $2,993.25 (-2.04%)
Gas: 3 Gwei

Token

MarsVegas (MVN)
 

Overview

Max Total Supply

500 MVN

Holders

495

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MVN
0x7f32c913150c9b81067598907b35afeb15f5c2a2
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:
MarsVegas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : MarsVegas.sol
// ##     ##    ###    ########   ######     ##     ## ########  ######      ###     ######
// ###   ###   ## ##   ##     ## ##    ##    ##     ## ##       ##    ##    ## ##   ##    ##
// #### ####  ##   ##  ##     ## ##          ##     ## ##       ##         ##   ##  ##
// ## ### ## ##     ## ########   ######     ##     ## ######   ##   #### ##     ##  ######
// ##     ## ######### ##   ##         ##     ##   ##  ##       ##    ##  #########       ##
// ##     ## ##     ## ##    ##  ##    ##      ## ##   ##       ##    ##  ##     ## ##    ##
// ##     ## ##     ## ##     ##  ######        ###    ########  ######   ##     ##  ######

// Developers: Setonix (https://setonixstudio.com/)
// Artists: Gazzar (https://gazzarstudio.com/)

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract MarsVegas is ERC721A, ReentrancyGuard, Ownable {
  using Strings for uint256;
  using MerkleProof for bytes32[];

  enum MintStatus {
    CLOSED, // contract fully closed for non-admin actions
    PUBLIC, // free mint opened
    PRESALE, // free whitelist
    SALE // paid mint opened
  }
  uint256 public MAX_SUPPLY = 7777;

  // Maximum number of tokens that can be minted for single account
  uint256 public maxTokenPerWallet = 1;
  // the token price for whitelist
  uint256 public price;

  // Number of tokens issued for sale
  uint256 public issuedTotal;

  string private baseUri;

  string internal _unrevealedURI;

  bytes32 public merkleRoot;

  bool public revealed;

  MintStatus public mintStatus = MintStatus.CLOSED;

  mapping(address => uint256) public martianOwners;
  mapping(address => uint256) public alphaOwners;

  constructor(string memory hiddenUri) ERC721A("MarsVegas", "MVN") {
    _unrevealedURI = hiddenUri;
  }

  modifier canMint(uint256 quantity) {
    require(mintStatus != MintStatus.CLOSED, "CONTRACT_LOCKED");
    require(quantity <= remainingUnsoldSupply(), "NOT_ENOUGH_ISSUED_TOKEN");
    require(totalMinted() + quantity <= MAX_SUPPLY, "TOKENS_EXPIRED");
    _;
  }

  // --- Administrative --- //
  function setBaseURI(string calldata baseURI) external onlyOwner {
    baseUri = baseURI;
  }

  function setUnrevealedURI(string calldata unrevealedURI) external onlyOwner {
    _unrevealedURI = unrevealedURI;
  }

  function reveal() external onlyOwner {
    revealed = !revealed;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setMaxMint(uint256 newLimit) external onlyOwner {
    maxTokenPerWallet = newLimit;
  }

  function setPrice(uint256 newPrice) external onlyOwner {
    price = newPrice;
  }

  function issue(uint256 number) external onlyOwner {
    require(number <= remainingUnissuedSupply(), "TOKENS_EXPIRED");
    issuedTotal += number;
  }

  function setMintStatus(MintStatus status) external onlyOwner {
    mintStatus = status;
  }

  function airdrop(address[] calldata entries, uint256 quantity, bool _isAlpha) external onlyOwner {
    require(totalMinted() + (entries.length * quantity) <= MAX_SUPPLY, "TOKENS_EXPIRED");

    for (uint256 i = 0; i < entries.length; i++) {
      if (_isAlpha) {
        alphaOwners[entries[i]] += quantity;
      } else {
        martianOwners[entries[i]] += quantity;
      }
      _safeMint(entries[i], quantity);
    }

  }

  function withdraw() external onlyOwner nonReentrant {
    payable(msg.sender).transfer(address(this).balance);
  }

  // --- Public --- //
  function freeMint() external canMint(1) {
    require(mintStatus == MintStatus.PUBLIC, "FREE_MINT_CLOSED");
    require(
      martianOwners[msg.sender] + 1 <= maxTokenPerWallet,
      "WALLET_LIMIT_EXCEEDED"
    );
    martianOwners[msg.sender] += 1;
    _safeMint(msg.sender, 1);
  }

  function presaleMint(bytes32[] memory _merkleProof) external canMint(1) {
    require(mintStatus == MintStatus.PRESALE, "PRESALE_CLOSED");
    require(
      martianOwners[msg.sender] + 1 <= maxTokenPerWallet,
      "WALLET_LIMIT_EXCEEDED"
    );
    // Generate leaf node from callee
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    // Check the proof
    require(_merkleProof.verify(merkleRoot, leaf), "INVALID_MERKLE_PROOF");

    martianOwners[msg.sender] += 1;
    _safeMint(msg.sender, 1);
  }

  function mint() external payable canMint(1) {
    require(mintStatus == MintStatus.SALE, "SALE_CLOSED");
    require(msg.value >= price * 1, "INSUFFICIENT_VALUE");
    require(
      alphaOwners[msg.sender] + 1 <= maxTokenPerWallet,
      "WALLET_LIMIT_EXCEEDED"
    );

    alphaOwners[msg.sender] += 1;

    _safeMint(msg.sender, 1);
  }

  // --- Views --- //
  function totalMinted() public view returns (uint256) {
    return _totalMinted();
  }

  function remainingUnissuedSupply() public view returns (uint256) {
    return MAX_SUPPLY - issuedTotal;
  }

  function remainingUnsoldSupply() public view returns (uint256) {
    return issuedTotal - totalMinted();
  }

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

  function tokenURI(uint256 tokenId)
  public
  view
  virtual
  override(ERC721A)
  returns (string memory)
  {
    require(_exists(tokenId), "TOKEN_NOT_EXISTS");
    if (!revealed) {
      return _unrevealedURI;
    }

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

  function _afterTokenTransfers(address from, address to, uint256 tokenId, uint256 quantity)
  internal virtual override(ERC721A) {
    super._afterTokenTransfers(from, to, tokenId, quantity);
  }

  function _beforeTokenTransfers(address from, address to, uint256 tokenId, uint256 quantity)
  internal virtual override(ERC721A) {
    super._beforeTokenTransfers(from, to, tokenId, quantity);
  }

}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
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) {
        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));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"hiddenUri","type":"string"}],"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isAlpha","type":"bool"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alphaOwners","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":"freeMint","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":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"issuedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"martianOwners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum MarsVegas.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingUnissuedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingUnsoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MarsVegas.MintStatus","name":"status","type":"uint8"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"}],"name":"setUnrevealedURI","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e61600a556001600b556000601160016101000a81548160ff021916908360038111156200005c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b02179055503480156200006e57600080fd5b50604051620053c1380380620053c1833981810160405281019062000094919062000352565b6040518060400160405280600981526020017f4d617273566567617300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d564e000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011892919062000230565b5080600390805190602001906200013192919062000230565b50620001426200022360201b60201c565b600081905550505060016008819055506000620001646200022860201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600f90805190602001906200021b92919062000230565b505062000507565b600090565b600033905090565b8280546200023e906200042c565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b6000620002f7620002f184620003c0565b62000397565b9050828152602081018484840111156200031057600080fd5b6200031d848285620003f6565b509392505050565b600082601f8301126200033757600080fd5b815162000349848260208601620002e0565b91505092915050565b6000602082840312156200036557600080fd5b600082015167ffffffffffffffff8111156200038057600080fd5b6200038e8482850162000325565b91505092915050565b6000620003a3620003b6565b9050620003b1828262000462565b919050565b6000604051905090565b600067ffffffffffffffff821115620003de57620003dd620004c7565b5b620003e982620004f6565b9050602081019050919050565b60005b8381101562000416578082015181840152602081019050620003f9565b8381111562000426576000848401525b50505050565b600060028204905060018216806200044557607f821691505b602082108114156200045c576200045b62000498565b5b50919050565b6200046d82620004f6565b810181811067ffffffffffffffff821117156200048f576200048e620004c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614eaa80620005176000396000f3fe6080604052600436106102515760003560e01c80637cb6475911610139578063a9ed4da8116100b6578063cc872b661161007a578063cc872b6614610859578063e985e9c514610882578063edc0c72c146108bf578063f2fde38b146108e8578063fcd1132f14610911578063fe2c7fee1461093c57610251565b8063a9ed4da814610762578063b88d4fde1461078d578063c87b56dd146107b6578063ca799d14146107f3578063ca9228a11461083057610251565b80639da3f8fd116100fd5780639da3f8fd146106a1578063a035b1fe146106cc578063a22cb465146106f7578063a2309ff814610720578063a475b5dd1461074b57610251565b80637cb64759146105d0578063814c8c55146105f95780638da5cb5b1461062257806391b7f5ed1461064d57806395d89b411461067657610251565b80633ccfd60b116101d257806355f804b31161019657806355f804b3146104d45780635b70ea9f146104fd5780636352211e1461051457806370a0823114610551578063715018a61461058e5780637a8baf52146105a557610251565b80633ccfd60b1461041557806342842e0e1461042c5780634b967c78146104555780635183022714610480578063547520fe146104ab57610251565b80631521819511610219578063152181951461032e57806318160ddd1461036b57806323b872dd146103965780632eb4a7ab146103bf57806332cb6b0c146103ea57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780631249c58b14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613fac565b610965565b60405161028a9190614478565b60405180910390f35b34801561029f57600080fd5b506102a8610a47565b6040516102b591906144c9565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e0919061406c565b610ad9565b6040516102f29190614411565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613e9a565b610b55565b005b61032c610c5a565b005b34801561033a57600080fd5b5061035560048036038101906103509190613d2f565b610fc7565b604051610362919061468b565b60405180910390f35b34801561037757600080fd5b50610380610fdf565b60405161038d919061468b565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613d94565b610ff6565b005b3480156103cb57600080fd5b506103d4611006565b6040516103e19190614493565b60405180910390f35b3480156103f657600080fd5b506103ff61100c565b60405161040c919061468b565b60405180910390f35b34801561042157600080fd5b5061042a611012565b005b34801561043857600080fd5b50610453600480360381019061044e9190613d94565b61112d565b005b34801561046157600080fd5b5061046a61114d565b604051610477919061468b565b60405180910390f35b34801561048c57600080fd5b50610495611164565b6040516104a29190614478565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd919061406c565b611177565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190614027565b6111fd565b005b34801561050957600080fd5b5061051261128f565b005b34801561052057600080fd5b5061053b6004803603810190610536919061406c565b6115ac565b6040516105489190614411565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613d2f565b6115c2565b604051610585919061468b565b60405180910390f35b34801561059a57600080fd5b506105a3611692565b005b3480156105b157600080fd5b506105ba6117cf565b6040516105c7919061468b565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613f83565b6117d5565b005b34801561060557600080fd5b50610620600480360381019061061b9190613ffe565b61185b565b005b34801561062e57600080fd5b5061063761192a565b6040516106449190614411565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061406c565b611954565b005b34801561068257600080fd5b5061068b6119da565b60405161069891906144c9565b60405180910390f35b3480156106ad57600080fd5b506106b6611a6c565b6040516106c391906144ae565b60405180910390f35b3480156106d857600080fd5b506106e1611a7f565b6040516106ee919061468b565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613e5e565b611a85565b005b34801561072c57600080fd5b50610735611bfd565b604051610742919061468b565b60405180910390f35b34801561075757600080fd5b50610760611c0c565b005b34801561076e57600080fd5b50610777611cb4565b604051610784919061468b565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613de3565b611cba565b005b3480156107c257600080fd5b506107dd60048036038101906107d8919061406c565b611d32565b6040516107ea91906144c9565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613d2f565b611e81565b604051610827919061468b565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613ed6565b611e99565b005b34801561086557600080fd5b50610880600480360381019061087b919061406c565b61214b565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613d58565b61222d565b6040516108b69190614478565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613f42565b6122c1565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613d2f565b612661565b005b34801561091d57600080fd5b5061092661280d565b604051610933919061468b565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190614027565b612829565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a405750610a3f826128bb565b5b9050919050565b606060028054610a5690614965565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8290614965565b8015610acf5780601f10610aa457610100808354040283529160200191610acf565b820191906000526020600020905b815481529060010190602001808311610ab257829003601f168201915b5050505050905090565b6000610ae482612925565b610b1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b60826115ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be7612973565b73ffffffffffffffffffffffffffffffffffffffff1614610c4a57610c1381610c0e612973565b61222d565b610c49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c5583838361297b565b505050565b600160006003811115610c96577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061464b565b60405180910390fd5b610d2761280d565b811115610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d609061462b565b60405180910390fd5b600a5481610d75611bfd565b610d7f919061476b565b1115610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906145eb565b60405180910390fd5b600380811115610df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115610e41577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061454b565b60405180910390fd5b6001600c54610e9091906147f2565b341015610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec99061458b565b60405180910390fd5b600b546001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f21919061476b565b1115610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061452b565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb2919061476b565b92505081905550610fc4336001612a2d565b50565b60136020528060005260406000206000915090505481565b6000610fe9612a4b565b6001546000540303905090565b611001838383612a50565b505050565b60105481565b600a5481565b61101a612973565b73ffffffffffffffffffffffffffffffffffffffff1661103861192a565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906145cb565b60405180910390fd5b600260085414156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061466b565b60405180910390fd5b60026008819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611122573d6000803e3d6000fd5b506001600881905550565b61114883838360405180602001604052806000815250611cba565b505050565b6000600d54600a5461115f919061484c565b905090565b601160009054906101000a900460ff1681565b61117f612973565b73ffffffffffffffffffffffffffffffffffffffff1661119d61192a565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906145cb565b60405180910390fd5b80600b8190555050565b611205612973565b73ffffffffffffffffffffffffffffffffffffffff1661122361192a565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906145cb565b60405180910390fd5b8181600e919061128a929190613a24565b505050565b6001600060038111156112cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115611313577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061464b565b60405180910390fd5b61135c61280d565b81111561139e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113959061462b565b60405180910390fd5b600a54816113aa611bfd565b6113b4919061476b565b11156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145eb565b60405180910390fd5b6001600381111561142f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115611477577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061460b565b60405180910390fd5b600b546001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611506919061476b565b1115611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061452b565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611597919061476b565b925050819055506115a9336001612a2d565b50565b60006115b782612f06565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61169a612973565b73ffffffffffffffffffffffffffffffffffffffff166116b861192a565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906145cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b6117dd612973565b73ffffffffffffffffffffffffffffffffffffffff166117fb61192a565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611848906145cb565b60405180910390fd5b8060108190555050565b611863612973565b73ffffffffffffffffffffffffffffffffffffffff1661188161192a565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce906145cb565b60405180910390fd5b80601160016101000a81548160ff02191690836003811115611922577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195c612973565b73ffffffffffffffffffffffffffffffffffffffff1661197a61192a565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906145cb565b60405180910390fd5b80600c8190555050565b6060600380546119e990614965565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1590614965565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b600c5481565b611a8d612973565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aff612973565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bac612973565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf19190614478565b60405180910390a35050565b6000611c07613191565b905090565b611c14612973565b73ffffffffffffffffffffffffffffffffffffffff16611c3261192a565b73ffffffffffffffffffffffffffffffffffffffff1614611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906145cb565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600d5481565b611cc5848484612a50565b611ce48373ffffffffffffffffffffffffffffffffffffffff166131a4565b15611d2c57611cf5848484846131b7565b611d2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d3d82612925565b611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d73906145ab565b60405180910390fd5b601160009054906101000a900460ff16611e2257600f8054611d9d90614965565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc990614965565b8015611e165780601f10611deb57610100808354040283529160200191611e16565b820191906000526020600020905b815481529060010190602001808311611df957829003601f168201915b50505050509050611e7c565b6000611e2c613317565b9050600081511415611e4d5760405180602001604052806000815250611e78565b80611e57846133a9565b604051602001611e689291906143e2565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b611ea1612973565b73ffffffffffffffffffffffffffffffffffffffff16611ebf61192a565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906145cb565b60405180910390fd5b600a548285859050611f2791906147f2565b611f2f611bfd565b611f39919061476b565b1115611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f71906145eb565b60405180910390fd5b60005b84849050811015612144578115612036578260136000878785818110611fcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fe19190613d2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202a919061476b565b925050819055506120da565b8260126000878785818110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120899190613d2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d2919061476b565b925050819055505b612131858583818110612116577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061212b9190613d2f565b84612a2d565b808061213c906149c8565b915050611f7d565b5050505050565b612153612973565b73ffffffffffffffffffffffffffffffffffffffff1661217161192a565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906145cb565b60405180910390fd5b6121cf61114d565b811115612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906145eb565b60405180910390fd5b80600d6000828254612223919061476b565b9250508190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600060038111156122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115612345577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d9061464b565b60405180910390fd5b61238e61280d565b8111156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c79061462b565b60405180910390fd5b600a54816123dc611bfd565b6123e6919061476b565b1115612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e906145eb565b60405180910390fd5b60026003811115612461577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff1660038111156124a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e0906144eb565b60405180910390fd5b600b546001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612538919061476b565b1115612579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125709061452b565b60405180910390fd5b60003360405160200161258c919061439b565b6040516020818303038152906040528051906020012090506125bb60105482856135569092919063ffffffff16565b6125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f19061456b565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461264a919061476b565b9250508190555061265c336001612a2d565b505050565b612669612973565b73ffffffffffffffffffffffffffffffffffffffff1661268761192a565b73ffffffffffffffffffffffffffffffffffffffff16146126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d4906145cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061450b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612817611bfd565b600d54612824919061484c565b905090565b612831612973565b73ffffffffffffffffffffffffffffffffffffffff1661284f61192a565b73ffffffffffffffffffffffffffffffffffffffff16146128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c906145cb565b60405180910390fd5b8181600f91906128b6929190613a24565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612930612a4b565b1115801561293f575060005482105b801561296c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612a47828260405180602001604052806000815250613632565b5050565b600090565b6000612a5b82612f06565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ae7612973565b73ffffffffffffffffffffffffffffffffffffffff161480612b165750612b1585612b10612973565b61222d565b5b80612b5b5750612b24612973565b73ffffffffffffffffffffffffffffffffffffffff16612b4384610ad9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b94576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bfb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0885858560016139f4565b612c146000848761297b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e94576000548214612e9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eff8585856001613a06565b5050505050565b612f0e613aaa565b600082905080612f1c612a4b565b1161315a57600054811015613159576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161315757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461303b57809250505061318c565b5b60011561315657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461315157809250505061318c565b61303c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061319b612a4b565b60005403905090565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131dd612973565b8786866040518563ffffffff1660e01b81526004016131ff949392919061442c565b602060405180830381600087803b15801561321957600080fd5b505af192505050801561324a57506040513d601f19601f820116820180604052508101906132479190613fd5565b60015b6132c4573d806000811461327a576040519150601f19603f3d011682016040523d82523d6000602084013e61327f565b606091505b506000815114156132bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461332690614965565b80601f016020809104026020016040519081016040528092919081815260200182805461335290614965565b801561339f5780601f106133745761010080835404028352916020019161339f565b820191906000526020600020905b81548152906001019060200180831161338257829003601f168201915b5050505050905090565b606060008214156133f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613551565b600082905060005b6000821461342357808061340c906149c8565b915050600a8261341c91906147c1565b91506133f9565b60008167ffffffffffffffff811115613465577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134975781602001600182028036833780820191505090505b5090505b6000851461354a576001826134b0919061484c565b9150600a856134bf9190614a3f565b60306134cb919061476b565b60f81b818381518110613507577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561354391906147c1565b945061349b565b8093505050505b919050565b60008082905060005b85518110156136245760008682815181106135a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116135e45782816040516020016135c79291906143b6565b604051602081830303815290604052805190602001209250613610565b80836040516020016135f79291906143b6565b6040516020818303038152906040528051906020012092505b50808061361c906149c8565b91505061355f565b508381149150509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561369f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156136da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136e760008583866139f4565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506138a88673ffffffffffffffffffffffffffffffffffffffff166131a4565b1561396d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461391d60008784806001019550876131b7565b613953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106138ae57826000541461396857600080fd5b6139d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061396e575b8160008190555050506139ee6000858386613a06565b50505050565b613a0084848484613a18565b50505050565b613a1284848484613a1e565b50505050565b50505050565b50505050565b828054613a3090614965565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57803560ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578235825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b18846146cb565b6146a6565b90508083825260208201905082856020860282011115613b3c57600080fd5b60005b85811015613b6c5781613b528882613c52565b845260208401935060208301925050600181019050613b3f565b5050509392505050565b6000613b89613b84846146f7565b6146a6565b905082815260208101848484011115613ba157600080fd5b613bac848285614923565b509392505050565b600081359050613bc381614df1565b92915050565b60008083601f840112613bdb57600080fd5b8235905067ffffffffffffffff811115613bf457600080fd5b602083019150836020820283011115613c0c57600080fd5b9250929050565b600082601f830112613c2457600080fd5b8135613c34848260208601613b0a565b91505092915050565b600081359050613c4c81614e08565b92915050565b600081359050613c6181614e1f565b92915050565b600081359050613c7681614e36565b92915050565b600081519050613c8b81614e36565b92915050565b600082601f830112613ca257600080fd5b8135613cb2848260208601613b76565b91505092915050565b600081359050613cca81614e4d565b92915050565b60008083601f840112613ce257600080fd5b8235905067ffffffffffffffff811115613cfb57600080fd5b602083019150836001820283011115613d1357600080fd5b9250929050565b600081359050613d2981614e5d565b92915050565b600060208284031215613d4157600080fd5b6000613d4f84828501613bb4565b91505092915050565b60008060408385031215613d6b57600080fd5b6000613d7985828601613bb4565b9250506020613d8a85828601613bb4565b9150509250929050565b600080600060608486031215613da957600080fd5b6000613db786828701613bb4565b9350506020613dc886828701613bb4565b9250506040613dd986828701613d1a565b9150509250925092565b60008060008060808587031215613df957600080fd5b6000613e0787828801613bb4565b9450506020613e1887828801613bb4565b9350506040613e2987828801613d1a565b925050606085013567ffffffffffffffff811115613e4657600080fd5b613e5287828801613c91565b91505092959194509250565b60008060408385031215613e7157600080fd5b6000613e7f85828601613bb4565b9250506020613e9085828601613c3d565b9150509250929050565b60008060408385031215613ead57600080fd5b6000613ebb85828601613bb4565b9250506020613ecc85828601613d1a565b9150509250929050565b60008060008060608587031215613eec57600080fd5b600085013567ffffffffffffffff811115613f0657600080fd5b613f1287828801613bc9565b94509450506020613f2587828801613d1a565b9250506040613f3687828801613c3d565b91505092959194509250565b600060208284031215613f5457600080fd5b600082013567ffffffffffffffff811115613f6e57600080fd5b613f7a84828501613c13565b91505092915050565b600060208284031215613f9557600080fd5b6000613fa384828501613c52565b91505092915050565b600060208284031215613fbe57600080fd5b6000613fcc84828501613c67565b91505092915050565b600060208284031215613fe757600080fd5b6000613ff584828501613c7c565b91505092915050565b60006020828403121561401057600080fd5b600061401e84828501613cbb565b91505092915050565b6000806020838503121561403a57600080fd5b600083013567ffffffffffffffff81111561405457600080fd5b61406085828601613cd0565b92509250509250929050565b60006020828403121561407e57600080fd5b600061408c84828501613d1a565b91505092915050565b61409e81614880565b82525050565b6140b56140b082614880565b614a11565b82525050565b6140c481614892565b82525050565b6140d38161489e565b82525050565b6140ea6140e58261489e565b614a23565b82525050565b60006140fb82614728565b614105818561473e565b9350614115818560208601614932565b61411e81614b5b565b840191505092915050565b61413281614911565b82525050565b600061414382614733565b61414d818561474f565b935061415d818560208601614932565b61416681614b5b565b840191505092915050565b600061417c82614733565b6141868185614760565b9350614196818560208601614932565b80840191505092915050565b60006141af600e8361474f565b91506141ba82614b79565b602082019050919050565b60006141d260268361474f565b91506141dd82614ba2565b604082019050919050565b60006141f560158361474f565b915061420082614bf1565b602082019050919050565b6000614218600b8361474f565b915061422382614c1a565b602082019050919050565b600061423b60148361474f565b915061424682614c43565b602082019050919050565b600061425e60128361474f565b915061426982614c6c565b602082019050919050565b600061428160108361474f565b915061428c82614c95565b602082019050919050565b60006142a4600583614760565b91506142af82614cbe565b600582019050919050565b60006142c760208361474f565b91506142d282614ce7565b602082019050919050565b60006142ea600e8361474f565b91506142f582614d10565b602082019050919050565b600061430d60108361474f565b915061431882614d39565b602082019050919050565b600061433060178361474f565b915061433b82614d62565b602082019050919050565b6000614353600f8361474f565b915061435e82614d8b565b602082019050919050565b6000614376601f8361474f565b915061438182614db4565b602082019050919050565b61439581614907565b82525050565b60006143a782846140a4565b60148201915081905092915050565b60006143c282856140d9565b6020820191506143d282846140d9565b6020820191508190509392505050565b60006143ee8285614171565b91506143fa8284614171565b915061440582614297565b91508190509392505050565b60006020820190506144266000830184614095565b92915050565b60006080820190506144416000830187614095565b61444e6020830186614095565b61445b604083018561438c565b818103606083015261446d81846140f0565b905095945050505050565b600060208201905061448d60008301846140bb565b92915050565b60006020820190506144a860008301846140ca565b92915050565b60006020820190506144c36000830184614129565b92915050565b600060208201905081810360008301526144e38184614138565b905092915050565b60006020820190508181036000830152614504816141a2565b9050919050565b60006020820190508181036000830152614524816141c5565b9050919050565b60006020820190508181036000830152614544816141e8565b9050919050565b600060208201905081810360008301526145648161420b565b9050919050565b600060208201905081810360008301526145848161422e565b9050919050565b600060208201905081810360008301526145a481614251565b9050919050565b600060208201905081810360008301526145c481614274565b9050919050565b600060208201905081810360008301526145e4816142ba565b9050919050565b60006020820190508181036000830152614604816142dd565b9050919050565b6000602082019050818103600083015261462481614300565b9050919050565b6000602082019050818103600083015261464481614323565b9050919050565b6000602082019050818103600083015261466481614346565b9050919050565b6000602082019050818103600083015261468481614369565b9050919050565b60006020820190506146a0600083018461438c565b92915050565b60006146b06146c1565b90506146bc8282614997565b919050565b6000604051905090565b600067ffffffffffffffff8211156146e6576146e5614b2c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561471257614711614b2c565b5b61471b82614b5b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061477682614907565b915061478183614907565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147b6576147b5614a70565b5b828201905092915050565b60006147cc82614907565b91506147d783614907565b9250826147e7576147e6614a9f565b5b828204905092915050565b60006147fd82614907565b915061480883614907565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484157614840614a70565b5b828202905092915050565b600061485782614907565b915061486283614907565b92508282101561487557614874614a70565b5b828203905092915050565b600061488b826148e7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506148e282614ddd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061491c826148d4565b9050919050565b82818337600083830152505050565b60005b83811015614950578082015181840152602081019050614935565b8381111561495f576000848401525b50505050565b6000600282049050600182168061497d57607f821691505b6020821081141561499157614990614afd565b5b50919050565b6149a082614b5b565b810181811067ffffffffffffffff821117156149bf576149be614b2c565b5b80604052505050565b60006149d382614907565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0657614a05614a70565b5b600182019050919050565b6000614a1c82614a2d565b9050919050565b6000819050919050565b6000614a3882614b6c565b9050919050565b6000614a4a82614907565b9150614a5583614907565b925082614a6557614a64614a9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57414c4c45545f4c494d49545f45584345454445440000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f494e56414c49445f4d45524b4c455f50524f4f46000000000000000000000000600082015250565b7f494e53554646494349454e545f56414c55450000000000000000000000000000600082015250565b7f544f4b454e5f4e4f545f45584953545300000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4b454e535f45585049524544000000000000000000000000000000000000600082015250565b7f465245455f4d494e545f434c4f53454400000000000000000000000000000000600082015250565b7f4e4f545f454e4f5547485f4953535545445f544f4b454e000000000000000000600082015250565b7f434f4e54524143545f4c4f434b45440000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60048110614dee57614ded614ace565b5b50565b614dfa81614880565b8114614e0557600080fd5b50565b614e1181614892565b8114614e1c57600080fd5b50565b614e288161489e565b8114614e3357600080fd5b50565b614e3f816148a8565b8114614e4a57600080fd5b50565b60048110614e5a57600080fd5b50565b614e6681614907565b8114614e7157600080fd5b5056fea264697066735822122030b6b11e68260dd84215b2dc39b4c3e8f741a93c46bc5c9bef163b02cc36a0c664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d534a784d423378483661737a79366e486a32713354516a4279336152765877346d7644477a3355716d3557430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637cb6475911610139578063a9ed4da8116100b6578063cc872b661161007a578063cc872b6614610859578063e985e9c514610882578063edc0c72c146108bf578063f2fde38b146108e8578063fcd1132f14610911578063fe2c7fee1461093c57610251565b8063a9ed4da814610762578063b88d4fde1461078d578063c87b56dd146107b6578063ca799d14146107f3578063ca9228a11461083057610251565b80639da3f8fd116100fd5780639da3f8fd146106a1578063a035b1fe146106cc578063a22cb465146106f7578063a2309ff814610720578063a475b5dd1461074b57610251565b80637cb64759146105d0578063814c8c55146105f95780638da5cb5b1461062257806391b7f5ed1461064d57806395d89b411461067657610251565b80633ccfd60b116101d257806355f804b31161019657806355f804b3146104d45780635b70ea9f146104fd5780636352211e1461051457806370a0823114610551578063715018a61461058e5780637a8baf52146105a557610251565b80633ccfd60b1461041557806342842e0e1461042c5780634b967c78146104555780635183022714610480578063547520fe146104ab57610251565b80631521819511610219578063152181951461032e57806318160ddd1461036b57806323b872dd146103965780632eb4a7ab146103bf57806332cb6b0c146103ea57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780631249c58b14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613fac565b610965565b60405161028a9190614478565b60405180910390f35b34801561029f57600080fd5b506102a8610a47565b6040516102b591906144c9565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e0919061406c565b610ad9565b6040516102f29190614411565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613e9a565b610b55565b005b61032c610c5a565b005b34801561033a57600080fd5b5061035560048036038101906103509190613d2f565b610fc7565b604051610362919061468b565b60405180910390f35b34801561037757600080fd5b50610380610fdf565b60405161038d919061468b565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613d94565b610ff6565b005b3480156103cb57600080fd5b506103d4611006565b6040516103e19190614493565b60405180910390f35b3480156103f657600080fd5b506103ff61100c565b60405161040c919061468b565b60405180910390f35b34801561042157600080fd5b5061042a611012565b005b34801561043857600080fd5b50610453600480360381019061044e9190613d94565b61112d565b005b34801561046157600080fd5b5061046a61114d565b604051610477919061468b565b60405180910390f35b34801561048c57600080fd5b50610495611164565b6040516104a29190614478565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd919061406c565b611177565b005b3480156104e057600080fd5b506104fb60048036038101906104f69190614027565b6111fd565b005b34801561050957600080fd5b5061051261128f565b005b34801561052057600080fd5b5061053b6004803603810190610536919061406c565b6115ac565b6040516105489190614411565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613d2f565b6115c2565b604051610585919061468b565b60405180910390f35b34801561059a57600080fd5b506105a3611692565b005b3480156105b157600080fd5b506105ba6117cf565b6040516105c7919061468b565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613f83565b6117d5565b005b34801561060557600080fd5b50610620600480360381019061061b9190613ffe565b61185b565b005b34801561062e57600080fd5b5061063761192a565b6040516106449190614411565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061406c565b611954565b005b34801561068257600080fd5b5061068b6119da565b60405161069891906144c9565b60405180910390f35b3480156106ad57600080fd5b506106b6611a6c565b6040516106c391906144ae565b60405180910390f35b3480156106d857600080fd5b506106e1611a7f565b6040516106ee919061468b565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613e5e565b611a85565b005b34801561072c57600080fd5b50610735611bfd565b604051610742919061468b565b60405180910390f35b34801561075757600080fd5b50610760611c0c565b005b34801561076e57600080fd5b50610777611cb4565b604051610784919061468b565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613de3565b611cba565b005b3480156107c257600080fd5b506107dd60048036038101906107d8919061406c565b611d32565b6040516107ea91906144c9565b60405180910390f35b3480156107ff57600080fd5b5061081a60048036038101906108159190613d2f565b611e81565b604051610827919061468b565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613ed6565b611e99565b005b34801561086557600080fd5b50610880600480360381019061087b919061406c565b61214b565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613d58565b61222d565b6040516108b69190614478565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613f42565b6122c1565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613d2f565b612661565b005b34801561091d57600080fd5b5061092661280d565b604051610933919061468b565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190614027565b612829565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a405750610a3f826128bb565b5b9050919050565b606060028054610a5690614965565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8290614965565b8015610acf5780601f10610aa457610100808354040283529160200191610acf565b820191906000526020600020905b815481529060010190602001808311610ab257829003601f168201915b5050505050905090565b6000610ae482612925565b610b1a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b60826115ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be7612973565b73ffffffffffffffffffffffffffffffffffffffff1614610c4a57610c1381610c0e612973565b61222d565b610c49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610c5583838361297b565b505050565b600160006003811115610c96577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061464b565b60405180910390fd5b610d2761280d565b811115610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d609061462b565b60405180910390fd5b600a5481610d75611bfd565b610d7f919061476b565b1115610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906145eb565b60405180910390fd5b600380811115610df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115610e41577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e789061454b565b60405180910390fd5b6001600c54610e9091906147f2565b341015610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec99061458b565b60405180910390fd5b600b546001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f21919061476b565b1115610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061452b565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb2919061476b565b92505081905550610fc4336001612a2d565b50565b60136020528060005260406000206000915090505481565b6000610fe9612a4b565b6001546000540303905090565b611001838383612a50565b505050565b60105481565b600a5481565b61101a612973565b73ffffffffffffffffffffffffffffffffffffffff1661103861192a565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611085906145cb565b60405180910390fd5b600260085414156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061466b565b60405180910390fd5b60026008819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611122573d6000803e3d6000fd5b506001600881905550565b61114883838360405180602001604052806000815250611cba565b505050565b6000600d54600a5461115f919061484c565b905090565b601160009054906101000a900460ff1681565b61117f612973565b73ffffffffffffffffffffffffffffffffffffffff1661119d61192a565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906145cb565b60405180910390fd5b80600b8190555050565b611205612973565b73ffffffffffffffffffffffffffffffffffffffff1661122361192a565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906145cb565b60405180910390fd5b8181600e919061128a929190613a24565b505050565b6001600060038111156112cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115611313577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b9061464b565b60405180910390fd5b61135c61280d565b81111561139e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113959061462b565b60405180910390fd5b600a54816113aa611bfd565b6113b4919061476b565b11156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906145eb565b60405180910390fd5b6001600381111561142f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115611477577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae9061460b565b60405180910390fd5b600b546001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611506919061476b565b1115611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061452b565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611597919061476b565b925050819055506115a9336001612a2d565b50565b60006115b782612f06565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61169a612973565b73ffffffffffffffffffffffffffffffffffffffff166116b861192a565b73ffffffffffffffffffffffffffffffffffffffff161461170e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611705906145cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b6117dd612973565b73ffffffffffffffffffffffffffffffffffffffff166117fb61192a565b73ffffffffffffffffffffffffffffffffffffffff1614611851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611848906145cb565b60405180910390fd5b8060108190555050565b611863612973565b73ffffffffffffffffffffffffffffffffffffffff1661188161192a565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce906145cb565b60405180910390fd5b80601160016101000a81548160ff02191690836003811115611922577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195c612973565b73ffffffffffffffffffffffffffffffffffffffff1661197a61192a565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906145cb565b60405180910390fd5b80600c8190555050565b6060600380546119e990614965565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1590614965565b8015611a625780601f10611a3757610100808354040283529160200191611a62565b820191906000526020600020905b815481529060010190602001808311611a4557829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b600c5481565b611a8d612973565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aff612973565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bac612973565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf19190614478565b60405180910390a35050565b6000611c07613191565b905090565b611c14612973565b73ffffffffffffffffffffffffffffffffffffffff16611c3261192a565b73ffffffffffffffffffffffffffffffffffffffff1614611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906145cb565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b600d5481565b611cc5848484612a50565b611ce48373ffffffffffffffffffffffffffffffffffffffff166131a4565b15611d2c57611cf5848484846131b7565b611d2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d3d82612925565b611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d73906145ab565b60405180910390fd5b601160009054906101000a900460ff16611e2257600f8054611d9d90614965565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc990614965565b8015611e165780601f10611deb57610100808354040283529160200191611e16565b820191906000526020600020905b815481529060010190602001808311611df957829003601f168201915b50505050509050611e7c565b6000611e2c613317565b9050600081511415611e4d5760405180602001604052806000815250611e78565b80611e57846133a9565b604051602001611e689291906143e2565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b611ea1612973565b73ffffffffffffffffffffffffffffffffffffffff16611ebf61192a565b73ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c906145cb565b60405180910390fd5b600a548285859050611f2791906147f2565b611f2f611bfd565b611f39919061476b565b1115611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f71906145eb565b60405180910390fd5b60005b84849050811015612144578115612036578260136000878785818110611fcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fe19190613d2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461202a919061476b565b925050819055506120da565b8260126000878785818110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120899190613d2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d2919061476b565b925050819055505b612131858583818110612116577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061212b9190613d2f565b84612a2d565b808061213c906149c8565b915050611f7d565b5050505050565b612153612973565b73ffffffffffffffffffffffffffffffffffffffff1661217161192a565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906145cb565b60405180910390fd5b6121cf61114d565b811115612211576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612208906145eb565b60405180910390fd5b80600d6000828254612223919061476b565b9250508190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600060038111156122fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff166003811115612345577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d9061464b565b60405180910390fd5b61238e61280d565b8111156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c79061462b565b60405180910390fd5b600a54816123dc611bfd565b6123e6919061476b565b1115612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e906145eb565b60405180910390fd5b60026003811115612461577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601160019054906101000a900460ff1660038111156124a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e0906144eb565b60405180910390fd5b600b546001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612538919061476b565b1115612579576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125709061452b565b60405180910390fd5b60003360405160200161258c919061439b565b6040516020818303038152906040528051906020012090506125bb60105482856135569092919063ffffffff16565b6125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f19061456b565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461264a919061476b565b9250508190555061265c336001612a2d565b505050565b612669612973565b73ffffffffffffffffffffffffffffffffffffffff1661268761192a565b73ffffffffffffffffffffffffffffffffffffffff16146126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d4906145cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061450b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612817611bfd565b600d54612824919061484c565b905090565b612831612973565b73ffffffffffffffffffffffffffffffffffffffff1661284f61192a565b73ffffffffffffffffffffffffffffffffffffffff16146128a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289c906145cb565b60405180910390fd5b8181600f91906128b6929190613a24565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612930612a4b565b1115801561293f575060005482105b801561296c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612a47828260405180602001604052806000815250613632565b5050565b600090565b6000612a5b82612f06565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612ae7612973565b73ffffffffffffffffffffffffffffffffffffffff161480612b165750612b1585612b10612973565b61222d565b5b80612b5b5750612b24612973565b73ffffffffffffffffffffffffffffffffffffffff16612b4384610ad9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612b94576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bfb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c0885858560016139f4565b612c146000848761297b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e94576000548214612e9357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eff8585856001613a06565b5050505050565b612f0e613aaa565b600082905080612f1c612a4b565b1161315a57600054811015613159576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161315757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461303b57809250505061318c565b5b60011561315657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461315157809250505061318c565b61303c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061319b612a4b565b60005403905090565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131dd612973565b8786866040518563ffffffff1660e01b81526004016131ff949392919061442c565b602060405180830381600087803b15801561321957600080fd5b505af192505050801561324a57506040513d601f19601f820116820180604052508101906132479190613fd5565b60015b6132c4573d806000811461327a576040519150601f19603f3d011682016040523d82523d6000602084013e61327f565b606091505b506000815114156132bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461332690614965565b80601f016020809104026020016040519081016040528092919081815260200182805461335290614965565b801561339f5780601f106133745761010080835404028352916020019161339f565b820191906000526020600020905b81548152906001019060200180831161338257829003601f168201915b5050505050905090565b606060008214156133f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613551565b600082905060005b6000821461342357808061340c906149c8565b915050600a8261341c91906147c1565b91506133f9565b60008167ffffffffffffffff811115613465577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134975781602001600182028036833780820191505090505b5090505b6000851461354a576001826134b0919061484c565b9150600a856134bf9190614a3f565b60306134cb919061476b565b60f81b818381518110613507577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561354391906147c1565b945061349b565b8093505050505b919050565b60008082905060005b85518110156136245760008682815181106135a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116135e45782816040516020016135c79291906143b6565b604051602081830303815290604052805190602001209250613610565b80836040516020016135f79291906143b6565b6040516020818303038152906040528051906020012092505b50808061361c906149c8565b91505061355f565b508381149150509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561369f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156136da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6136e760008583866139f4565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506138a88673ffffffffffffffffffffffffffffffffffffffff166131a4565b1561396d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461391d60008784806001019550876131b7565b613953576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106138ae57826000541461396857600080fd5b6139d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061396e575b8160008190555050506139ee6000858386613a06565b50505050565b613a0084848484613a18565b50505050565b613a1284848484613a1e565b50505050565b50505050565b50505050565b828054613a3090614965565b90600052602060002090601f016020900481019282613a525760008555613a99565b82601f10613a6b57803560ff1916838001178555613a99565b82800160010185558215613a99579182015b82811115613a98578235825591602001919060010190613a7d565b5b509050613aa69190613aed565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613b06576000816000905550600101613aee565b5090565b6000613b1d613b18846146cb565b6146a6565b90508083825260208201905082856020860282011115613b3c57600080fd5b60005b85811015613b6c5781613b528882613c52565b845260208401935060208301925050600181019050613b3f565b5050509392505050565b6000613b89613b84846146f7565b6146a6565b905082815260208101848484011115613ba157600080fd5b613bac848285614923565b509392505050565b600081359050613bc381614df1565b92915050565b60008083601f840112613bdb57600080fd5b8235905067ffffffffffffffff811115613bf457600080fd5b602083019150836020820283011115613c0c57600080fd5b9250929050565b600082601f830112613c2457600080fd5b8135613c34848260208601613b0a565b91505092915050565b600081359050613c4c81614e08565b92915050565b600081359050613c6181614e1f565b92915050565b600081359050613c7681614e36565b92915050565b600081519050613c8b81614e36565b92915050565b600082601f830112613ca257600080fd5b8135613cb2848260208601613b76565b91505092915050565b600081359050613cca81614e4d565b92915050565b60008083601f840112613ce257600080fd5b8235905067ffffffffffffffff811115613cfb57600080fd5b602083019150836001820283011115613d1357600080fd5b9250929050565b600081359050613d2981614e5d565b92915050565b600060208284031215613d4157600080fd5b6000613d4f84828501613bb4565b91505092915050565b60008060408385031215613d6b57600080fd5b6000613d7985828601613bb4565b9250506020613d8a85828601613bb4565b9150509250929050565b600080600060608486031215613da957600080fd5b6000613db786828701613bb4565b9350506020613dc886828701613bb4565b9250506040613dd986828701613d1a565b9150509250925092565b60008060008060808587031215613df957600080fd5b6000613e0787828801613bb4565b9450506020613e1887828801613bb4565b9350506040613e2987828801613d1a565b925050606085013567ffffffffffffffff811115613e4657600080fd5b613e5287828801613c91565b91505092959194509250565b60008060408385031215613e7157600080fd5b6000613e7f85828601613bb4565b9250506020613e9085828601613c3d565b9150509250929050565b60008060408385031215613ead57600080fd5b6000613ebb85828601613bb4565b9250506020613ecc85828601613d1a565b9150509250929050565b60008060008060608587031215613eec57600080fd5b600085013567ffffffffffffffff811115613f0657600080fd5b613f1287828801613bc9565b94509450506020613f2587828801613d1a565b9250506040613f3687828801613c3d565b91505092959194509250565b600060208284031215613f5457600080fd5b600082013567ffffffffffffffff811115613f6e57600080fd5b613f7a84828501613c13565b91505092915050565b600060208284031215613f9557600080fd5b6000613fa384828501613c52565b91505092915050565b600060208284031215613fbe57600080fd5b6000613fcc84828501613c67565b91505092915050565b600060208284031215613fe757600080fd5b6000613ff584828501613c7c565b91505092915050565b60006020828403121561401057600080fd5b600061401e84828501613cbb565b91505092915050565b6000806020838503121561403a57600080fd5b600083013567ffffffffffffffff81111561405457600080fd5b61406085828601613cd0565b92509250509250929050565b60006020828403121561407e57600080fd5b600061408c84828501613d1a565b91505092915050565b61409e81614880565b82525050565b6140b56140b082614880565b614a11565b82525050565b6140c481614892565b82525050565b6140d38161489e565b82525050565b6140ea6140e58261489e565b614a23565b82525050565b60006140fb82614728565b614105818561473e565b9350614115818560208601614932565b61411e81614b5b565b840191505092915050565b61413281614911565b82525050565b600061414382614733565b61414d818561474f565b935061415d818560208601614932565b61416681614b5b565b840191505092915050565b600061417c82614733565b6141868185614760565b9350614196818560208601614932565b80840191505092915050565b60006141af600e8361474f565b91506141ba82614b79565b602082019050919050565b60006141d260268361474f565b91506141dd82614ba2565b604082019050919050565b60006141f560158361474f565b915061420082614bf1565b602082019050919050565b6000614218600b8361474f565b915061422382614c1a565b602082019050919050565b600061423b60148361474f565b915061424682614c43565b602082019050919050565b600061425e60128361474f565b915061426982614c6c565b602082019050919050565b600061428160108361474f565b915061428c82614c95565b602082019050919050565b60006142a4600583614760565b91506142af82614cbe565b600582019050919050565b60006142c760208361474f565b91506142d282614ce7565b602082019050919050565b60006142ea600e8361474f565b91506142f582614d10565b602082019050919050565b600061430d60108361474f565b915061431882614d39565b602082019050919050565b600061433060178361474f565b915061433b82614d62565b602082019050919050565b6000614353600f8361474f565b915061435e82614d8b565b602082019050919050565b6000614376601f8361474f565b915061438182614db4565b602082019050919050565b61439581614907565b82525050565b60006143a782846140a4565b60148201915081905092915050565b60006143c282856140d9565b6020820191506143d282846140d9565b6020820191508190509392505050565b60006143ee8285614171565b91506143fa8284614171565b915061440582614297565b91508190509392505050565b60006020820190506144266000830184614095565b92915050565b60006080820190506144416000830187614095565b61444e6020830186614095565b61445b604083018561438c565b818103606083015261446d81846140f0565b905095945050505050565b600060208201905061448d60008301846140bb565b92915050565b60006020820190506144a860008301846140ca565b92915050565b60006020820190506144c36000830184614129565b92915050565b600060208201905081810360008301526144e38184614138565b905092915050565b60006020820190508181036000830152614504816141a2565b9050919050565b60006020820190508181036000830152614524816141c5565b9050919050565b60006020820190508181036000830152614544816141e8565b9050919050565b600060208201905081810360008301526145648161420b565b9050919050565b600060208201905081810360008301526145848161422e565b9050919050565b600060208201905081810360008301526145a481614251565b9050919050565b600060208201905081810360008301526145c481614274565b9050919050565b600060208201905081810360008301526145e4816142ba565b9050919050565b60006020820190508181036000830152614604816142dd565b9050919050565b6000602082019050818103600083015261462481614300565b9050919050565b6000602082019050818103600083015261464481614323565b9050919050565b6000602082019050818103600083015261466481614346565b9050919050565b6000602082019050818103600083015261468481614369565b9050919050565b60006020820190506146a0600083018461438c565b92915050565b60006146b06146c1565b90506146bc8282614997565b919050565b6000604051905090565b600067ffffffffffffffff8211156146e6576146e5614b2c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561471257614711614b2c565b5b61471b82614b5b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061477682614907565b915061478183614907565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147b6576147b5614a70565b5b828201905092915050565b60006147cc82614907565b91506147d783614907565b9250826147e7576147e6614a9f565b5b828204905092915050565b60006147fd82614907565b915061480883614907565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484157614840614a70565b5b828202905092915050565b600061485782614907565b915061486283614907565b92508282101561487557614874614a70565b5b828203905092915050565b600061488b826148e7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506148e282614ddd565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061491c826148d4565b9050919050565b82818337600083830152505050565b60005b83811015614950578082015181840152602081019050614935565b8381111561495f576000848401525b50505050565b6000600282049050600182168061497d57607f821691505b6020821081141561499157614990614afd565b5b50919050565b6149a082614b5b565b810181811067ffffffffffffffff821117156149bf576149be614b2c565b5b80604052505050565b60006149d382614907565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a0657614a05614a70565b5b600182019050919050565b6000614a1c82614a2d565b9050919050565b6000819050919050565b6000614a3882614b6c565b9050919050565b6000614a4a82614907565b9150614a5583614907565b925082614a6557614a64614a9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57414c4c45545f4c494d49545f45584345454445440000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f494e56414c49445f4d45524b4c455f50524f4f46000000000000000000000000600082015250565b7f494e53554646494349454e545f56414c55450000000000000000000000000000600082015250565b7f544f4b454e5f4e4f545f45584953545300000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4b454e535f45585049524544000000000000000000000000000000000000600082015250565b7f465245455f4d494e545f434c4f53454400000000000000000000000000000000600082015250565b7f4e4f545f454e4f5547485f4953535545445f544f4b454e000000000000000000600082015250565b7f434f4e54524143545f4c4f434b45440000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60048110614dee57614ded614ace565b5b50565b614dfa81614880565b8114614e0557600080fd5b50565b614e1181614892565b8114614e1c57600080fd5b50565b614e288161489e565b8114614e3357600080fd5b50565b614e3f816148a8565b8114614e4a57600080fd5b50565b60048110614e5a57600080fd5b50565b614e6681614907565b8114614e7157600080fd5b5056fea264697066735822122030b6b11e68260dd84215b2dc39b4c3e8f741a93c46bc5c9bef163b02cc36a0c664736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d534a784d423378483661737a79366e486a32713354516a4279336152765877346d7644477a3355716d3557430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenUri (string): https://ipfs.io/ipfs/QmSJxMB3xH6aszy6nHj2q3TQjBy3aRvXw4mvDGz3Uqm5WC

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d534a784d4233784836
Arg [3] : 61737a79366e486a32713354516a4279336152765877346d7644477a3355716d
Arg [4] : 3557430000000000000000000000000000000000000000000000000000000000


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.