ETH Price: $2,592.31 (+0.67%)
Gas: 5 Gwei

Token

The Mushies by SPC (mush)
 

Overview

Max Total Supply

10,000 mush

Holders

514

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
40 mush
0x3a63f6055f214f5911d9ce2606e750a12da3c7ea
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:
mush

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Mush.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

contract mush is ERC721A, Ownable {
  string public _baseTokenURI;
  string public _notRevealedURI;
  uint256 public ogPrice = 0.04 ether;
  uint256 public allowListPrice = 0.05 ether;
  uint256 public publicMintPrice = 0.06 ether;
  uint256 public MAX_SUPPLY = 10000;
  uint256 private reserveAtATime = 66;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 66;
  uint256 public saleType = 0;
  bytes32 private ogWhitelistMerkleRoot = 0xacd396ee820d0ee8da94e54ed6effb5862c652963affbedbae67d8caf8be5e1a;
  bytes32 private allowWhitelistMerkleRoot = 0xacd396ee820d0ee8da94e54ed6effb5862c652963affbedbae67d8caf8be5e1a;
  address address1 = 0xdEEd7E31a89293ECf7f9665E01fD7CB9C0C7C5b3;
  address address2 = 0x2b6650a6d40f6e8B4B799d7E4b04247695f5Be7b;
  address address3 = 0x8DbE19085da237807dFbeB54cbece2a6620558a8;
  address address4 = 0xde2baE50Cd0CAb8F4EeD3B1cD944223Fe15c4742;
  address address5 = 0xa54A2F4438FC48FeE2B665ae1049fDE34A0C53D8;
  address address6 = 0x23662B347a4F534586321a76Be3AD26a6770cee9;
  address address7 = 0xA4087EA6d1De1Dc9f84A8f8d63657cf4AD456817;
  bool public isReveal = false;
  uint256 start_time;
  uint256 reveal_duration = 93000;

  constructor(string memory baseURI, string memory notRevealedURI) ERC721A("The Mushies by SPC", "mush") {
    setBaseURI(baseURI);
    setNotRevealedURI(notRevealedURI);
    start_time = block.timestamp;
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier revealNft {
    if (start_time + reveal_duration <= block.timestamp) {
      isReveal = true;
    } else {
      isReveal = false;
    }
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function reveal() public onlyAuthorized {
    isReveal = !isReveal;
  }

  function setNotRevealedURI(string memory _notRevealedUri) public onlyAuthorized {
    _notRevealedURI = _notRevealedUri;
  }

  function setNotRevealedDuration(uint256 _duration) external onlyOwner {
    reveal_duration = _duration;
  }

  function setSaleType(uint256 _type) external onlyOwner {
    saleType = _type;
  }

  function setOgPrice(uint256 _price) public onlyAuthorized {
    ogPrice = _price;
  }

  function setAllowListPrice(uint256 _price) public onlyAuthorized {
    allowListPrice = _price;
  }

  function setPublicMintPrice(uint256 _price) public onlyAuthorized {
    publicMintPrice = _price;
  }

  function getCurrentPrice() public view returns (uint256) {
    if (saleType == 1) {
      return ogPrice;
    } else if (saleType == 2) {
      return allowListPrice;
    }
    return publicMintPrice;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

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

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    MAX_SUPPLY = maxMintSupply;
  }

  function setOgWhitelistMerkleRoot(bytes32 merkleRootHash) public onlyAuthorized {
    ogWhitelistMerkleRoot = merkleRootHash;
  }

  function setAllowWhitelistMerkleRoot(bytes32 merkleRootHash) public onlyAuthorized {
    allowWhitelistMerkleRoot = merkleRootHash;
  }

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");

     _safeMint(msg.sender, reserveAtATime);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyAuthorized {
    uint256 supply = totalSupply();

    require(supply <= MAX_SUPPLY, "Total supply spent.");
    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i],_count);
    }
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "Token Id Non-existent");
    if(!isReveal){
      return _notRevealedURI;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), ".json")) : "";
  }

  function mint(uint256 _count, bytes32[] calldata _merkleProof, address _address) public payable saleIsOpen revealNft {
    uint256 mintIndex = totalSupply();

    if (_address != owner()) {
      require(saleType != 0, "Sale is not active currently.");
      require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
      if (saleType == 1) {
        require(_verifyAddressInOgWhiteList(_merkleProof, _address), "NFT:Sender is not whitelisted.");
        require(msg.value >= ogPrice * _count, "Insufficient ETH amount sent.");
      } else if (saleType == 2) {
        require(_verifyAddressInAllowWhiteList(_merkleProof, _address), "NFT:Sender is not whitelisted.");
        require(msg.value >= allowListPrice * _count, "Insufficient ETH amount sent.");
      } else if (saleType == 3) {
        require(msg.value >= publicMintPrice * _count, "Insufficient ETH amount sent.");
      }
      
      uint256 amount = msg.value;
      payable(address1).transfer(amount * 78 / 100);
      payable(address2).transfer(amount * 4 / 100);
      payable(address3).transfer(amount * 25 / 1000);
      payable(address4).transfer(amount * 5 / 1000);
      payable(address5).transfer(amount * 1 / 100);
      payable(address6).transfer(amount * 4 / 100);
      payable(address7).transfer(amount * 10 / 100);
    }

    _safeMint(_address, _count);
  }

  function _verifyAddressInOgWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
    bytes32 leaf = keccak256(abi.encodePacked(toAddress));
    return MerkleProof.verify(merkleProof, ogWhitelistMerkleRoot, leaf);
  }

  function _verifyAddressInAllowWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
    bytes32 leaf = keccak256(abi.encodePacked(toAddress));
    return MerkleProof.verify(merkleProof, allowWhitelistMerkleRoot, leaf);
  }
}

File 2 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

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

    /**
     * @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);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 3 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 4 of 7 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"notRevealedURI","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListPrice","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":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","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":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setAllowListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setAllowWhitelistMerkleRoot","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":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setNotRevealedDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setOgPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setOgWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setSaleType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600b5566b1a2bc2ec50000600c5566d529ae9e860000600d55612710600e556042600f556000601055604260115560006012557facd396ee820d0ee8da94e54ed6effb5862c652963affbedbae67d8caf8be5e1a60001b6013557facd396ee820d0ee8da94e54ed6effb5862c652963affbedbae67d8caf8be5e1a60001b60145573deed7e31a89293ecf7f9665e01fd7cb9c0c7c5b3601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732b6650a6d40f6e8b4b799d7e4b04247695f5be7b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738dbe19085da237807dfbeb54cbece2a6620558a8601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073de2bae50cd0cab8f4eed3b1cd944223fe15c4742601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a54a2f4438fc48fee2b665ae1049fde34a0c53d8601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507323662b347a4f534586321a76be3ad26a6770cee9601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a4087ea6d1de1dc9f84a8f8d63657cf4ad456817601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601b60146101000a81548160ff02191690831515021790555062016b48601d553480156200030f57600080fd5b5060405162004c7838038062004c7883398181016040528101906200033591906200084e565b6040518060400160405280601281526020017f546865204d7573686965732062792053504300000000000000000000000000008152506040518060400160405280600481526020017f6d757368000000000000000000000000000000000000000000000000000000008152508160029080519060200190620003b992919062000601565b508060039080519060200190620003d292919062000601565b50620003e36200043c60201b60201c565b60008190555050506200040b620003ff6200044160201b60201c565b6200044960201b60201c565b6200041c826200050f60201b60201c565b6200042d816200057360201b60201c565b42601c81905550505062000938565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1662000536620005d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200055757600080fd5b80600990805190602001906200056f92919062000601565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166200059a620005d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005bb57600080fd5b80600a9080519060200190620005d392919062000601565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200060f9062000902565b90600052602060002090601f0160209004810192826200063357600085556200067f565b82601f106200064e57805160ff19168380011785556200067f565b828001600101855582156200067f579182015b828111156200067e57825182559160200191906001019062000661565b5b5090506200068e919062000692565b5090565b5b80821115620006ad57600081600090555060010162000693565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071a82620006cf565b810181811067ffffffffffffffff821117156200073c576200073b620006e0565b5b80604052505050565b600062000751620006b1565b90506200075f82826200070f565b919050565b600067ffffffffffffffff821115620007825762000781620006e0565b5b6200078d82620006cf565b9050602081019050919050565b60005b83811015620007ba5780820151818401526020810190506200079d565b83811115620007ca576000848401525b50505050565b6000620007e7620007e18462000764565b62000745565b905082815260208101848484011115620008065762000805620006ca565b5b620008138482856200079a565b509392505050565b600082601f830112620008335762000832620006c5565b5b815162000845848260208601620007d0565b91505092915050565b60008060408385031215620008685762000867620006bb565b5b600083015167ffffffffffffffff811115620008895762000888620006c0565b5b62000897858286016200081b565b925050602083015167ffffffffffffffff811115620008bb57620008ba620006c0565b5b620008c9858286016200081b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091b57607f821691505b60208210811415620009325762000931620008d3565b5b50919050565b61433080620009486000396000f3fe6080604052600436106102515760003560e01c806383af79e711610139578063c87b56dd116100b6578063eb91d37e1161007a578063eb91d37e14610865578063f2c4ce1e14610890578063f2fde38b146108b9578063f6c9d9e3146108e2578063fae4c7f91461090b578063fb7e6ccb1461093657610251565b8063c87b56dd14610779578063cbbf42c1146107b6578063cfc86f7b146107d2578063dc53fd92146107fd578063e985e9c51461082857610251565b8063a22cb465116100fd578063a22cb465146106bc578063a24e5153146106e5578063a475b5dd14610710578063ad979fa214610727578063b88d4fde1461075057610251565b806383af79e7146105eb5780638da5cb5b1461061457806395d89b411461063f57806399d1dd951461066a5780639a4da0831461069357610251565b80634adcd32a116101d25780636352211e116101965780636352211e146104f15780636df9fa881461052e57806370a0823114610557578063715018a61461059457806371e3500c146105ab5780637389fbb7146105c257610251565b80634adcd32a1461042257806355f804b31461044b57806356a87caa146104745780635bcc79281461049d5780635d82cf6e146104c857610251565b806318160ddd1161021957806318160ddd1461034f57806323b872dd1461037a57806332cb6b0c146103a357806342842e0e146103ce57806346eb4c9a146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806315f5d8a014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613188565b61095f565b60405161028a91906131d0565b60405180910390f35b34801561029f57600080fd5b506102a86109f1565b6040516102b59190613284565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906132dc565b610a83565b6040516102f2919061334a565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613391565b610aff565b005b34801561033057600080fd5b50610339610ca6565b60405161034691906133e0565b60405180910390f35b34801561035b57600080fd5b50610364610cac565b60405161037191906133e0565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c91906133fb565b610cc3565b005b3480156103af57600080fd5b506103b8610cd3565b6040516103c591906133e0565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906133fb565b610cd9565b005b34801561040357600080fd5b5061040c610cf9565b6040516104199190613284565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906132dc565b610d87565b005b34801561045757600080fd5b50610472600480360381019061046d9190613583565b610e0d565b005b34801561048057600080fd5b5061049b600480360381019061049691906132dc565b610e66565b005b3480156104a957600080fd5b506104b2610eaf565b6040516104bf91906133e0565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea91906132dc565b610eb5565b005b3480156104fd57600080fd5b50610518600480360381019061051391906132dc565b610efe565b604051610525919061334a565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906132dc565b610f10565b005b34801561056357600080fd5b5061057e600480360381019061057991906135cc565b610f59565b60405161058b91906133e0565b60405180910390f35b3480156105a057600080fd5b506105a9611012565b005b3480156105b757600080fd5b506105c061109a565b005b3480156105ce57600080fd5b506105e960048036038101906105e491906132dc565b61112e565b005b3480156105f757600080fd5b50610612600480360381019061060d91906132dc565b611177565b005b34801561062057600080fd5b506106296111c0565b604051610636919061334a565b60405180910390f35b34801561064b57600080fd5b506106546111ea565b6040516106619190613284565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061362f565b61127c565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061362f565b6112c5565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613688565b61130e565b005b3480156106f157600080fd5b506106fa611486565b60405161070791906133e0565b60405180910390f35b34801561071c57600080fd5b5061072561148c565b005b34801561073357600080fd5b5061074e600480360381019061074991906132dc565b6114f7565b005b34801561075c57600080fd5b5061077760048036038101906107729190613769565b61157d565b005b34801561078557600080fd5b506107a0600480360381019061079b91906132dc565b6115f0565b6040516107ad9190613284565b60405180910390f35b6107d060048036038101906107cb919061384c565b61173e565b005b3480156107de57600080fd5b506107e7611e0b565b6040516107f49190613284565b60405180910390f35b34801561080957600080fd5b50610812611e99565b60405161081f91906133e0565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906138c0565b611e9f565b60405161085c91906131d0565b60405180910390f35b34801561087157600080fd5b5061087a611f33565b60405161088791906133e0565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190613583565b611f68565b005b3480156108c557600080fd5b506108e060048036038101906108db91906135cc565b611fc1565b005b3480156108ee57600080fd5b50610909600480360381019061090491906132dc565b6120b9565b005b34801561091757600080fd5b50610920612102565b60405161092d91906131d0565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613956565b612115565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ba57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ea5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a00906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c906139e5565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826122e5565b610ac4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a82612344565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91612412565b73ffffffffffffffffffffffffffffffffffffffff1614610bf457610bbd81610bb8612412565b611e9f565b610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610cb661241a565b6001546000540303905090565b610cce83838361241f565b505050565b600e5481565b610cf48383836040518060200160405280600081525061157d565b505050565b600a8054610d06906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d32906139e5565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b505050505081565b610d8f6127c9565b73ffffffffffffffffffffffffffffffffffffffff16610dad6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613a63565b60405180910390fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610e2c6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c57600080fd5b8060099080519060200190610e62929190613079565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610e856111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea557600080fd5b8060118190555050565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16610ed46111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef457600080fd5b80600d8190555050565b6000610f0982612344565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610f2f6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f4f57600080fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6127c9565b73ffffffffffffffffffffffffffffffffffffffff166110386111c0565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590613a63565b60405180910390fd5b61109860006127d1565b565b3373ffffffffffffffffffffffffffffffffffffffff166110b96111c0565b73ffffffffffffffffffffffffffffffffffffffff16146110d957600080fd5b6011546010541115611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613acf565b60405180910390fd5b61112c33600f54612897565b565b3373ffffffffffffffffffffffffffffffffffffffff1661114d6111c0565b73ffffffffffffffffffffffffffffffffffffffff161461116d57600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166111966111c0565b73ffffffffffffffffffffffffffffffffffffffff16146111b657600080fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f9906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611225906139e5565b80156112725780601f1061124757610100808354040283529160200191611272565b820191906000526020600020905b81548152906001019060200180831161125557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1661129b6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146112bb57600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112e46111c0565b73ffffffffffffffffffffffffffffffffffffffff161461130457600080fd5b8060138190555050565b611316612412565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611388612412565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611435612412565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147a91906131d0565b60405180910390a35050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff166114ab6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146114cb57600080fd5b601b60149054906101000a900460ff1615601b60146101000a81548160ff021916908315150217905550565b6114ff6127c9565b73ffffffffffffffffffffffffffffffffffffffff1661151d6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90613a63565b60405180910390fd5b80601d8190555050565b61158884848461241f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ea576115b3848484846128b5565b6115e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115fb826122e5565b61163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190613b3b565b60405180910390fd5b601b60149054906101000a900460ff166116e057600a805461165b906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611687906139e5565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b50505050509050611739565b60006116ea612a06565b9050600081511161170a5760405180602001604052806000815250611735565b8061171484612a98565b604051602001611725929190613be3565b6040516020818303038152906040525b9150505b919050565b600e54611749610cac565b111561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613c5e565b60405180910390fd5b42601d54601c5461179b9190613cad565b116117c0576001601b60146101000a81548160ff0219169083151502179055506117dc565b6000601b60146101000a81548160ff0219169083151502179055505b60006117e6610cac565b90506117f06111c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611dfa5760006012541415611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613d4f565b60405180910390fd5b600e5485826118779190613cad565b11156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613dbb565b60405180910390fd5b60016012541415611962576118ce848484612bf9565b61190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613e27565b60405180910390fd5b84600b5461191b9190613e47565b34101561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613eed565b60405180910390fd5b611a6a565b60026012541415611a0c57611978848484612c7d565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90613e27565b60405180910390fd5b84600c546119c59190613e47565b341015611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613eed565b60405180910390fd5b611a69565b60036012541415611a685784600d54611a259190613e47565b341015611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90613eed565b60405180910390fd5b5b5b5b6000349050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064604e84611aba9190613e47565b611ac49190613f3c565b9081150290604051600060405180830381858888f19350505050158015611aef573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611b3b9190613e47565b611b459190613f3c565b9081150290604051600060405180830381858888f19350505050158015611b70573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984611bbd9190613e47565b611bc79190613f3c565b9081150290604051600060405180830381858888f19350505050158015611bf2573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600584611c3f9190613e47565b611c499190613f3c565b9081150290604051600060405180830381858888f19350505050158015611c74573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600184611cc09190613e47565b611cca9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611cf5573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611d419190613e47565b611d4b9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611d76573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611dc29190613e47565b611dcc9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611df7573d6000803e3d6000fd5b50505b611e048286612897565b5050505050565b60098054611e18906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e44906139e5565b8015611e915780601f10611e6657610100808354040283529160200191611e91565b820191906000526020600020905b815481529060010190602001808311611e7457829003601f168201915b505050505081565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060016012541415611f4a57600b549050611f65565b60026012541415611f5f57600c549050611f65565b600d5490505b90565b3373ffffffffffffffffffffffffffffffffffffffff16611f876111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611fa757600080fd5b80600a9080519060200190611fbd929190613079565b5050565b611fc96127c9565b73ffffffffffffffffffffffffffffffffffffffff16611fe76111c0565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490613a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613fdf565b60405180910390fd5b6120b6816127d1565b50565b3373ffffffffffffffffffffffffffffffffffffffff166120d86111c0565b73ffffffffffffffffffffffffffffffffffffffff16146120f857600080fd5b80600f8190555050565b601b60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166121346111c0565b73ffffffffffffffffffffffffffffffffffffffff161461215457600080fd5b600061215e610cac565b9050600e548111156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c9061404b565b60405180910390fd5b600e5484826121b49190613cad565b11156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613dbb565b60405180910390fd5b60005b838390508110156122de57600073ffffffffffffffffffffffffffffffffffffffff1684848381811061222e5761222d61406b565b5b905060200201602081019061224391906135cc565b73ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906140e6565b60405180910390fd5b6122cb8484838181106122b0576122af61406b565b5b90506020020160208101906122c591906135cc565b86612897565b80806122d690614106565b9150506121f8565b5050505050565b6000816122f061241a565b111580156122ff575060005482105b801561233d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061235361241a565b116123db576000548110156123da5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123d8575b60008114156123ce5760046000836001900393508381526020019081526020016000205490506123a3565b809250505061240d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061242a82612344565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b2612412565b73ffffffffffffffffffffffffffffffffffffffff1614806124e157506124e0856124db612412565b611e9f565b5b8061252657506124ef612412565b73ffffffffffffffffffffffffffffffffffffffff1661250e84610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d38585856001612d01565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126d086612d07565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561275a576000600184019050600060046000838152602001908152602001600020541415612758576000548114612757578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c28585856001612d11565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b1828260405180602001604052806000815250612d17565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128db612412565b8786866040518563ffffffff1660e01b81526004016128fd94939291906141a4565b6020604051808303816000875af192505050801561293957506040513d601f19601f820116820180604052508101906129369190614205565b60015b6129b3573d8060008114612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b506000815114156129ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612a15906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612a41906139e5565b8015612a8e5780601f10612a6357610100808354040283529160200191612a8e565b820191906000526020600020905b815481529060010190602001808311612a7157829003601f168201915b5050505050905090565b60606000821415612ae0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf4565b600082905060005b60008214612b12578080612afb90614106565b915050600a82612b0b9190613f3c565b9150612ae8565b60008167ffffffffffffffff811115612b2e57612b2d613458565b5b6040519080825280601f01601f191660200182016040528015612b605781602001600182028036833780820191505090505b5090505b60008514612bed57600182612b799190614232565b9150600a85612b889190614266565b6030612b949190613cad565b60f81b818381518110612baa57612ba961406b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be69190613f3c565b9450612b64565b8093505050505b919050565b60008082604051602001612c0d91906142df565b604051602081830303815290604052805190602001209050612c73858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612fcc565b9150509392505050565b60008082604051602001612c9191906142df565b604051602081830303815290604052805190602001209050612cf7858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612fcc565b9150509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d84576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612dbf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dcc6000858386612d01565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612e3160018514612fe3565b901b60a042901b612e4186612d07565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612f45575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef560008784806001019550876128b5565b612f2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e86578260005414612f4057600080fd5b612fb0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f46575b816000819055505050612fc66000858386612d11565b50505050565b600082612fd98584612fed565b1490509392505050565b6000819050919050565b60008082905060005b84518110156130575760008582815181106130145761301361406b565b5b602002602001015190508083116130365761302f8382613062565b9250613043565b6130408184613062565b92505b50808061304f90614106565b915050612ff6565b508091505092915050565b600082600052816020526040600020905092915050565b828054613085906139e5565b90600052602060002090601f0160209004810192826130a757600085556130ee565b82601f106130c057805160ff19168380011785556130ee565b828001600101855582156130ee579182015b828111156130ed5782518255916020019190600101906130d2565b5b5090506130fb91906130ff565b5090565b5b80821115613118576000816000905550600101613100565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61316581613130565b811461317057600080fd5b50565b6000813590506131828161315c565b92915050565b60006020828403121561319e5761319d613126565b5b60006131ac84828501613173565b91505092915050565b60008115159050919050565b6131ca816131b5565b82525050565b60006020820190506131e560008301846131c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561322557808201518184015260208101905061320a565b83811115613234576000848401525b50505050565b6000601f19601f8301169050919050565b6000613256826131eb565b61326081856131f6565b9350613270818560208601613207565b6132798161323a565b840191505092915050565b6000602082019050818103600083015261329e818461324b565b905092915050565b6000819050919050565b6132b9816132a6565b81146132c457600080fd5b50565b6000813590506132d6816132b0565b92915050565b6000602082840312156132f2576132f1613126565b5b6000613300848285016132c7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061333482613309565b9050919050565b61334481613329565b82525050565b600060208201905061335f600083018461333b565b92915050565b61336e81613329565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b600080604083850312156133a8576133a7613126565b5b60006133b68582860161337c565b92505060206133c7858286016132c7565b9150509250929050565b6133da816132a6565b82525050565b60006020820190506133f560008301846133d1565b92915050565b60008060006060848603121561341457613413613126565b5b60006134228682870161337c565b93505060206134338682870161337c565b9250506040613444868287016132c7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134908261323a565b810181811067ffffffffffffffff821117156134af576134ae613458565b5b80604052505050565b60006134c261311c565b90506134ce8282613487565b919050565b600067ffffffffffffffff8211156134ee576134ed613458565b5b6134f78261323a565b9050602081019050919050565b82818337600083830152505050565b6000613526613521846134d3565b6134b8565b90508281526020810184848401111561354257613541613453565b5b61354d848285613504565b509392505050565b600082601f83011261356a5761356961344e565b5b813561357a848260208601613513565b91505092915050565b60006020828403121561359957613598613126565b5b600082013567ffffffffffffffff8111156135b7576135b661312b565b5b6135c384828501613555565b91505092915050565b6000602082840312156135e2576135e1613126565b5b60006135f08482850161337c565b91505092915050565b6000819050919050565b61360c816135f9565b811461361757600080fd5b50565b60008135905061362981613603565b92915050565b60006020828403121561364557613644613126565b5b60006136538482850161361a565b91505092915050565b613665816131b5565b811461367057600080fd5b50565b6000813590506136828161365c565b92915050565b6000806040838503121561369f5761369e613126565b5b60006136ad8582860161337c565b92505060206136be85828601613673565b9150509250929050565b600067ffffffffffffffff8211156136e3576136e2613458565b5b6136ec8261323a565b9050602081019050919050565b600061370c613707846136c8565b6134b8565b90508281526020810184848401111561372857613727613453565b5b613733848285613504565b509392505050565b600082601f8301126137505761374f61344e565b5b81356137608482602086016136f9565b91505092915050565b6000806000806080858703121561378357613782613126565b5b60006137918782880161337c565b94505060206137a28782880161337c565b93505060406137b3878288016132c7565b925050606085013567ffffffffffffffff8111156137d4576137d361312b565b5b6137e08782880161373b565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261380c5761380b61344e565b5b8235905067ffffffffffffffff811115613829576138286137ec565b5b602083019150836020820283011115613845576138446137f1565b5b9250929050565b6000806000806060858703121561386657613865613126565b5b6000613874878288016132c7565b945050602085013567ffffffffffffffff8111156138955761389461312b565b5b6138a1878288016137f6565b935093505060406138b48782880161337c565b91505092959194509250565b600080604083850312156138d7576138d6613126565b5b60006138e58582860161337c565b92505060206138f68582860161337c565b9150509250929050565b60008083601f8401126139165761391561344e565b5b8235905067ffffffffffffffff811115613933576139326137ec565b5b60208301915083602082028301111561394f5761394e6137f1565b5b9250929050565b60008060006040848603121561396f5761396e613126565b5b600061397d868287016132c7565b935050602084013567ffffffffffffffff81111561399e5761399d61312b565b5b6139aa86828701613900565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139fd57607f821691505b60208210811415613a1157613a106139b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a4d6020836131f6565b9150613a5882613a17565b602082019050919050565b60006020820190508181036000830152613a7c81613a40565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613ab9601b836131f6565b9150613ac482613a83565b602082019050919050565b60006020820190508181036000830152613ae881613aac565b9050919050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b6000613b256015836131f6565b9150613b3082613aef565b602082019050919050565b60006020820190508181036000830152613b5481613b18565b9050919050565b600081905092915050565b6000613b71826131eb565b613b7b8185613b5b565b9350613b8b818560208601613207565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bcd600583613b5b565b9150613bd882613b97565b600582019050919050565b6000613bef8285613b66565b9150613bfb8284613b66565b9150613c0682613bc0565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613c48600f836131f6565b9150613c5382613c12565b602082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb8826132a6565b9150613cc3836132a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf857613cf7613c7e565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613d39601d836131f6565b9150613d4482613d03565b602082019050919050565b60006020820190508181036000830152613d6881613d2c565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613da56016836131f6565b9150613db082613d6f565b602082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c69737465642e0000600082015250565b6000613e11601e836131f6565b9150613e1c82613ddb565b602082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b6000613e52826132a6565b9150613e5d836132a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9657613e95613c7e565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613ed7601d836131f6565b9150613ee282613ea1565b602082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f47826132a6565b9150613f52836132a6565b925082613f6257613f61613f0d565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fc96026836131f6565b9150613fd482613f6d565b604082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006140356013836131f6565b915061404082613fff565b602082019050919050565b6000602082019050818103600083015261406481614028565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006140d06018836131f6565b91506140db8261409a565b602082019050919050565b600060208201905081810360008301526140ff816140c3565b9050919050565b6000614111826132a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561414457614143613c7e565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006141768261414f565b614180818561415a565b9350614190818560208601613207565b6141998161323a565b840191505092915050565b60006080820190506141b9600083018761333b565b6141c6602083018661333b565b6141d360408301856133d1565b81810360608301526141e5818461416b565b905095945050505050565b6000815190506141ff8161315c565b92915050565b60006020828403121561421b5761421a613126565b5b6000614229848285016141f0565b91505092915050565b600061423d826132a6565b9150614248836132a6565b92508282101561425b5761425a613c7e565b5b828203905092915050565b6000614271826132a6565b915061427c836132a6565b92508261428c5761428b613f0d565b5b828206905092915050565b60008160601b9050919050565b60006142af82614297565b9050919050565b60006142c1826142a4565b9050919050565b6142d96142d482613329565b6142b6565b82525050565b60006142eb82846142c8565b6014820191508190509291505056fea2646970667358221220988e4ba6aea59b94f80844b6d8031014dbc782f5bc75735ad2556f23956678e364736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d59444e5a4e535975396443415a506337757a6d725234797371784b664c656b4c4b34675a357157354e6e41532f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d625077524d337348394339416b4150646b6a33475752656f5958327934684a70764a486b734c595553714a750000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806383af79e711610139578063c87b56dd116100b6578063eb91d37e1161007a578063eb91d37e14610865578063f2c4ce1e14610890578063f2fde38b146108b9578063f6c9d9e3146108e2578063fae4c7f91461090b578063fb7e6ccb1461093657610251565b8063c87b56dd14610779578063cbbf42c1146107b6578063cfc86f7b146107d2578063dc53fd92146107fd578063e985e9c51461082857610251565b8063a22cb465116100fd578063a22cb465146106bc578063a24e5153146106e5578063a475b5dd14610710578063ad979fa214610727578063b88d4fde1461075057610251565b806383af79e7146105eb5780638da5cb5b1461061457806395d89b411461063f57806399d1dd951461066a5780639a4da0831461069357610251565b80634adcd32a116101d25780636352211e116101965780636352211e146104f15780636df9fa881461052e57806370a0823114610557578063715018a61461059457806371e3500c146105ab5780637389fbb7146105c257610251565b80634adcd32a1461042257806355f804b31461044b57806356a87caa146104745780635bcc79281461049d5780635d82cf6e146104c857610251565b806318160ddd1161021957806318160ddd1461034f57806323b872dd1461037a57806332cb6b0c146103a357806342842e0e146103ce57806346eb4c9a146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806315f5d8a014610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613188565b61095f565b60405161028a91906131d0565b60405180910390f35b34801561029f57600080fd5b506102a86109f1565b6040516102b59190613284565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906132dc565b610a83565b6040516102f2919061334a565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613391565b610aff565b005b34801561033057600080fd5b50610339610ca6565b60405161034691906133e0565b60405180910390f35b34801561035b57600080fd5b50610364610cac565b60405161037191906133e0565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c91906133fb565b610cc3565b005b3480156103af57600080fd5b506103b8610cd3565b6040516103c591906133e0565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906133fb565b610cd9565b005b34801561040357600080fd5b5061040c610cf9565b6040516104199190613284565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906132dc565b610d87565b005b34801561045757600080fd5b50610472600480360381019061046d9190613583565b610e0d565b005b34801561048057600080fd5b5061049b600480360381019061049691906132dc565b610e66565b005b3480156104a957600080fd5b506104b2610eaf565b6040516104bf91906133e0565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea91906132dc565b610eb5565b005b3480156104fd57600080fd5b50610518600480360381019061051391906132dc565b610efe565b604051610525919061334a565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906132dc565b610f10565b005b34801561056357600080fd5b5061057e600480360381019061057991906135cc565b610f59565b60405161058b91906133e0565b60405180910390f35b3480156105a057600080fd5b506105a9611012565b005b3480156105b757600080fd5b506105c061109a565b005b3480156105ce57600080fd5b506105e960048036038101906105e491906132dc565b61112e565b005b3480156105f757600080fd5b50610612600480360381019061060d91906132dc565b611177565b005b34801561062057600080fd5b506106296111c0565b604051610636919061334a565b60405180910390f35b34801561064b57600080fd5b506106546111ea565b6040516106619190613284565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061362f565b61127c565b005b34801561069f57600080fd5b506106ba60048036038101906106b5919061362f565b6112c5565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613688565b61130e565b005b3480156106f157600080fd5b506106fa611486565b60405161070791906133e0565b60405180910390f35b34801561071c57600080fd5b5061072561148c565b005b34801561073357600080fd5b5061074e600480360381019061074991906132dc565b6114f7565b005b34801561075c57600080fd5b5061077760048036038101906107729190613769565b61157d565b005b34801561078557600080fd5b506107a0600480360381019061079b91906132dc565b6115f0565b6040516107ad9190613284565b60405180910390f35b6107d060048036038101906107cb919061384c565b61173e565b005b3480156107de57600080fd5b506107e7611e0b565b6040516107f49190613284565b60405180910390f35b34801561080957600080fd5b50610812611e99565b60405161081f91906133e0565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906138c0565b611e9f565b60405161085c91906131d0565b60405180910390f35b34801561087157600080fd5b5061087a611f33565b60405161088791906133e0565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190613583565b611f68565b005b3480156108c557600080fd5b506108e060048036038101906108db91906135cc565b611fc1565b005b3480156108ee57600080fd5b50610909600480360381019061090491906132dc565b6120b9565b005b34801561091757600080fd5b50610920612102565b60405161092d91906131d0565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613956565b612115565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ba57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ea5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a00906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c906139e5565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826122e5565b610ac4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0a82612344565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b91612412565b73ffffffffffffffffffffffffffffffffffffffff1614610bf457610bbd81610bb8612412565b611e9f565b610bf3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610cb661241a565b6001546000540303905090565b610cce83838361241f565b505050565b600e5481565b610cf48383836040518060200160405280600081525061157d565b505050565b600a8054610d06906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d32906139e5565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b505050505081565b610d8f6127c9565b73ffffffffffffffffffffffffffffffffffffffff16610dad6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90613a63565b60405180910390fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610e2c6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c57600080fd5b8060099080519060200190610e62929190613079565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610e856111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea557600080fd5b8060118190555050565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16610ed46111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610ef457600080fd5b80600d8190555050565b6000610f0982612344565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610f2f6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f4f57600080fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61101a6127c9565b73ffffffffffffffffffffffffffffffffffffffff166110386111c0565b73ffffffffffffffffffffffffffffffffffffffff161461108e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108590613a63565b60405180910390fd5b61109860006127d1565b565b3373ffffffffffffffffffffffffffffffffffffffff166110b96111c0565b73ffffffffffffffffffffffffffffffffffffffff16146110d957600080fd5b6011546010541115611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613acf565b60405180910390fd5b61112c33600f54612897565b565b3373ffffffffffffffffffffffffffffffffffffffff1661114d6111c0565b73ffffffffffffffffffffffffffffffffffffffff161461116d57600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166111966111c0565b73ffffffffffffffffffffffffffffffffffffffff16146111b657600080fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f9906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611225906139e5565b80156112725780601f1061124757610100808354040283529160200191611272565b820191906000526020600020905b81548152906001019060200180831161125557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff1661129b6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146112bb57600080fd5b8060148190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112e46111c0565b73ffffffffffffffffffffffffffffffffffffffff161461130457600080fd5b8060138190555050565b611316612412565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611388612412565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611435612412565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147a91906131d0565b60405180910390a35050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff166114ab6111c0565b73ffffffffffffffffffffffffffffffffffffffff16146114cb57600080fd5b601b60149054906101000a900460ff1615601b60146101000a81548160ff021916908315150217905550565b6114ff6127c9565b73ffffffffffffffffffffffffffffffffffffffff1661151d6111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90613a63565b60405180910390fd5b80601d8190555050565b61158884848461241f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ea576115b3848484846128b5565b6115e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115fb826122e5565b61163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190613b3b565b60405180910390fd5b601b60149054906101000a900460ff166116e057600a805461165b906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611687906139e5565b80156116d45780601f106116a9576101008083540402835291602001916116d4565b820191906000526020600020905b8154815290600101906020018083116116b757829003601f168201915b50505050509050611739565b60006116ea612a06565b9050600081511161170a5760405180602001604052806000815250611735565b8061171484612a98565b604051602001611725929190613be3565b6040516020818303038152906040525b9150505b919050565b600e54611749610cac565b111561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613c5e565b60405180910390fd5b42601d54601c5461179b9190613cad565b116117c0576001601b60146101000a81548160ff0219169083151502179055506117dc565b6000601b60146101000a81548160ff0219169083151502179055505b60006117e6610cac565b90506117f06111c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611dfa5760006012541415611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90613d4f565b60405180910390fd5b600e5485826118779190613cad565b11156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613dbb565b60405180910390fd5b60016012541415611962576118ce848484612bf9565b61190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490613e27565b60405180910390fd5b84600b5461191b9190613e47565b34101561195d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195490613eed565b60405180910390fd5b611a6a565b60026012541415611a0c57611978848484612c7d565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae90613e27565b60405180910390fd5b84600c546119c59190613e47565b341015611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613eed565b60405180910390fd5b611a69565b60036012541415611a685784600d54611a259190613e47565b341015611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90613eed565b60405180910390fd5b5b5b5b6000349050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064604e84611aba9190613e47565b611ac49190613f3c565b9081150290604051600060405180830381858888f19350505050158015611aef573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611b3b9190613e47565b611b459190613f3c565b9081150290604051600060405180830381858888f19350505050158015611b70573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984611bbd9190613e47565b611bc79190613f3c565b9081150290604051600060405180830381858888f19350505050158015611bf2573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600584611c3f9190613e47565b611c499190613f3c565b9081150290604051600060405180830381858888f19350505050158015611c74573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600184611cc09190613e47565b611cca9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611cf5573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600484611d419190613e47565b611d4b9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611d76573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a84611dc29190613e47565b611dcc9190613f3c565b9081150290604051600060405180830381858888f19350505050158015611df7573d6000803e3d6000fd5b50505b611e048286612897565b5050505050565b60098054611e18906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e44906139e5565b8015611e915780601f10611e6657610100808354040283529160200191611e91565b820191906000526020600020905b815481529060010190602001808311611e7457829003601f168201915b505050505081565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060016012541415611f4a57600b549050611f65565b60026012541415611f5f57600c549050611f65565b600d5490505b90565b3373ffffffffffffffffffffffffffffffffffffffff16611f876111c0565b73ffffffffffffffffffffffffffffffffffffffff1614611fa757600080fd5b80600a9080519060200190611fbd929190613079565b5050565b611fc96127c9565b73ffffffffffffffffffffffffffffffffffffffff16611fe76111c0565b73ffffffffffffffffffffffffffffffffffffffff161461203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490613a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613fdf565b60405180910390fd5b6120b6816127d1565b50565b3373ffffffffffffffffffffffffffffffffffffffff166120d86111c0565b73ffffffffffffffffffffffffffffffffffffffff16146120f857600080fd5b80600f8190555050565b601b60149054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166121346111c0565b73ffffffffffffffffffffffffffffffffffffffff161461215457600080fd5b600061215e610cac565b9050600e548111156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c9061404b565b60405180910390fd5b600e5484826121b49190613cad565b11156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613dbb565b60405180910390fd5b60005b838390508110156122de57600073ffffffffffffffffffffffffffffffffffffffff1684848381811061222e5761222d61406b565b5b905060200201602081019061224391906135cc565b73ffffffffffffffffffffffffffffffffffffffff16141561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906140e6565b60405180910390fd5b6122cb8484838181106122b0576122af61406b565b5b90506020020160208101906122c591906135cc565b86612897565b80806122d690614106565b9150506121f8565b5050505050565b6000816122f061241a565b111580156122ff575060005482105b801561233d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061235361241a565b116123db576000548110156123da5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123d8575b60008114156123ce5760046000836001900393508381526020019081526020016000205490506123a3565b809250505061240d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061242a82612344565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612491576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124b2612412565b73ffffffffffffffffffffffffffffffffffffffff1614806124e157506124e0856124db612412565b611e9f565b5b8061252657506124ef612412565b73ffffffffffffffffffffffffffffffffffffffff1661250e84610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061255f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125d38585856001612d01565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6126d086612d07565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561275a576000600184019050600060046000838152602001908152602001600020541415612758576000548114612757578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c28585856001612d11565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b1828260405180602001604052806000815250612d17565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128db612412565b8786866040518563ffffffff1660e01b81526004016128fd94939291906141a4565b6020604051808303816000875af192505050801561293957506040513d601f19601f820116820180604052508101906129369190614205565b60015b6129b3573d8060008114612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b506000815114156129ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612a15906139e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612a41906139e5565b8015612a8e5780601f10612a6357610100808354040283529160200191612a8e565b820191906000526020600020905b815481529060010190602001808311612a7157829003601f168201915b5050505050905090565b60606000821415612ae0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf4565b600082905060005b60008214612b12578080612afb90614106565b915050600a82612b0b9190613f3c565b9150612ae8565b60008167ffffffffffffffff811115612b2e57612b2d613458565b5b6040519080825280601f01601f191660200182016040528015612b605781602001600182028036833780820191505090505b5090505b60008514612bed57600182612b799190614232565b9150600a85612b889190614266565b6030612b949190613cad565b60f81b818381518110612baa57612ba961406b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be69190613f3c565b9450612b64565b8093505050505b919050565b60008082604051602001612c0d91906142df565b604051602081830303815290604052805190602001209050612c73858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060135483612fcc565b9150509392505050565b60008082604051602001612c9191906142df565b604051602081830303815290604052805190602001209050612cf7858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612fcc565b9150509392505050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d84576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612dbf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dcc6000858386612d01565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612e3160018514612fe3565b901b60a042901b612e4186612d07565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612f45575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef560008784806001019550876128b5565b612f2b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612e86578260005414612f4057600080fd5b612fb0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f46575b816000819055505050612fc66000858386612d11565b50505050565b600082612fd98584612fed565b1490509392505050565b6000819050919050565b60008082905060005b84518110156130575760008582815181106130145761301361406b565b5b602002602001015190508083116130365761302f8382613062565b9250613043565b6130408184613062565b92505b50808061304f90614106565b915050612ff6565b508091505092915050565b600082600052816020526040600020905092915050565b828054613085906139e5565b90600052602060002090601f0160209004810192826130a757600085556130ee565b82601f106130c057805160ff19168380011785556130ee565b828001600101855582156130ee579182015b828111156130ed5782518255916020019190600101906130d2565b5b5090506130fb91906130ff565b5090565b5b80821115613118576000816000905550600101613100565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61316581613130565b811461317057600080fd5b50565b6000813590506131828161315c565b92915050565b60006020828403121561319e5761319d613126565b5b60006131ac84828501613173565b91505092915050565b60008115159050919050565b6131ca816131b5565b82525050565b60006020820190506131e560008301846131c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561322557808201518184015260208101905061320a565b83811115613234576000848401525b50505050565b6000601f19601f8301169050919050565b6000613256826131eb565b61326081856131f6565b9350613270818560208601613207565b6132798161323a565b840191505092915050565b6000602082019050818103600083015261329e818461324b565b905092915050565b6000819050919050565b6132b9816132a6565b81146132c457600080fd5b50565b6000813590506132d6816132b0565b92915050565b6000602082840312156132f2576132f1613126565b5b6000613300848285016132c7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061333482613309565b9050919050565b61334481613329565b82525050565b600060208201905061335f600083018461333b565b92915050565b61336e81613329565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b600080604083850312156133a8576133a7613126565b5b60006133b68582860161337c565b92505060206133c7858286016132c7565b9150509250929050565b6133da816132a6565b82525050565b60006020820190506133f560008301846133d1565b92915050565b60008060006060848603121561341457613413613126565b5b60006134228682870161337c565b93505060206134338682870161337c565b9250506040613444868287016132c7565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134908261323a565b810181811067ffffffffffffffff821117156134af576134ae613458565b5b80604052505050565b60006134c261311c565b90506134ce8282613487565b919050565b600067ffffffffffffffff8211156134ee576134ed613458565b5b6134f78261323a565b9050602081019050919050565b82818337600083830152505050565b6000613526613521846134d3565b6134b8565b90508281526020810184848401111561354257613541613453565b5b61354d848285613504565b509392505050565b600082601f83011261356a5761356961344e565b5b813561357a848260208601613513565b91505092915050565b60006020828403121561359957613598613126565b5b600082013567ffffffffffffffff8111156135b7576135b661312b565b5b6135c384828501613555565b91505092915050565b6000602082840312156135e2576135e1613126565b5b60006135f08482850161337c565b91505092915050565b6000819050919050565b61360c816135f9565b811461361757600080fd5b50565b60008135905061362981613603565b92915050565b60006020828403121561364557613644613126565b5b60006136538482850161361a565b91505092915050565b613665816131b5565b811461367057600080fd5b50565b6000813590506136828161365c565b92915050565b6000806040838503121561369f5761369e613126565b5b60006136ad8582860161337c565b92505060206136be85828601613673565b9150509250929050565b600067ffffffffffffffff8211156136e3576136e2613458565b5b6136ec8261323a565b9050602081019050919050565b600061370c613707846136c8565b6134b8565b90508281526020810184848401111561372857613727613453565b5b613733848285613504565b509392505050565b600082601f8301126137505761374f61344e565b5b81356137608482602086016136f9565b91505092915050565b6000806000806080858703121561378357613782613126565b5b60006137918782880161337c565b94505060206137a28782880161337c565b93505060406137b3878288016132c7565b925050606085013567ffffffffffffffff8111156137d4576137d361312b565b5b6137e08782880161373b565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261380c5761380b61344e565b5b8235905067ffffffffffffffff811115613829576138286137ec565b5b602083019150836020820283011115613845576138446137f1565b5b9250929050565b6000806000806060858703121561386657613865613126565b5b6000613874878288016132c7565b945050602085013567ffffffffffffffff8111156138955761389461312b565b5b6138a1878288016137f6565b935093505060406138b48782880161337c565b91505092959194509250565b600080604083850312156138d7576138d6613126565b5b60006138e58582860161337c565b92505060206138f68582860161337c565b9150509250929050565b60008083601f8401126139165761391561344e565b5b8235905067ffffffffffffffff811115613933576139326137ec565b5b60208301915083602082028301111561394f5761394e6137f1565b5b9250929050565b60008060006040848603121561396f5761396e613126565b5b600061397d868287016132c7565b935050602084013567ffffffffffffffff81111561399e5761399d61312b565b5b6139aa86828701613900565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139fd57607f821691505b60208210811415613a1157613a106139b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a4d6020836131f6565b9150613a5882613a17565b602082019050919050565b60006020820190508181036000830152613a7c81613a40565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000613ab9601b836131f6565b9150613ac482613a83565b602082019050919050565b60006020820190508181036000830152613ae881613aac565b9050919050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b6000613b256015836131f6565b9150613b3082613aef565b602082019050919050565b60006020820190508181036000830152613b5481613b18565b9050919050565b600081905092915050565b6000613b71826131eb565b613b7b8185613b5b565b9350613b8b818560208601613207565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bcd600583613b5b565b9150613bd882613b97565b600582019050919050565b6000613bef8285613b66565b9150613bfb8284613b66565b9150613c0682613bc0565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613c48600f836131f6565b9150613c5382613c12565b602082019050919050565b60006020820190508181036000830152613c7781613c3b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cb8826132a6565b9150613cc3836132a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf857613cf7613c7e565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000613d39601d836131f6565b9150613d4482613d03565b602082019050919050565b60006020820190508181036000830152613d6881613d2c565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000613da56016836131f6565b9150613db082613d6f565b602082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c69737465642e0000600082015250565b6000613e11601e836131f6565b9150613e1c82613ddb565b602082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b6000613e52826132a6565b9150613e5d836132a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9657613e95613c7e565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613ed7601d836131f6565b9150613ee282613ea1565b602082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f47826132a6565b9150613f52836132a6565b925082613f6257613f61613f0d565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fc96026836131f6565b9150613fd482613f6d565b604082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b60006140356013836131f6565b915061404082613fff565b602082019050919050565b6000602082019050818103600083015261406481614028565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006140d06018836131f6565b91506140db8261409a565b602082019050919050565b600060208201905081810360008301526140ff816140c3565b9050919050565b6000614111826132a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561414457614143613c7e565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006141768261414f565b614180818561415a565b9350614190818560208601613207565b6141998161323a565b840191505092915050565b60006080820190506141b9600083018761333b565b6141c6602083018661333b565b6141d360408301856133d1565b81810360608301526141e5818461416b565b905095945050505050565b6000815190506141ff8161315c565b92915050565b60006020828403121561421b5761421a613126565b5b6000614229848285016141f0565b91505092915050565b600061423d826132a6565b9150614248836132a6565b92508282101561425b5761425a613c7e565b5b828203905092915050565b6000614271826132a6565b915061427c836132a6565b92508261428c5761428b613f0d565b5b828206905092915050565b60008160601b9050919050565b60006142af82614297565b9050919050565b60006142c1826142a4565b9050919050565b6142d96142d482613329565b6142b6565b82525050565b60006142eb82846142c8565b6014820191508190509291505056fea2646970667358221220988e4ba6aea59b94f80844b6d8031014dbc782f5bc75735ad2556f23956678e364736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d59444e5a4e535975396443415a506337757a6d725234797371784b664c656b4c4b34675a357157354e6e41532f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d625077524d337348394339416b4150646b6a33475752656f5958327934684a70764a486b734c595553714a750000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmYDNZNSYu9dCAZPc7uzmrR4ysqxKfLekLK4gZ5qW5NnAS/
Arg [1] : notRevealedURI (string): https://ipfs.io/ipfs/QmbPwRM3sH9C9AkAPdkj3GWReoYX2y4hJpvJHksLYUSqJu

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d59444e5a4e53597539
Arg [4] : 6443415a506337757a6d725234797371784b664c656b4c4b34675a357157354e
Arg [5] : 6e41532f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [7] : 68747470733a2f2f697066732e696f2f697066732f516d625077524d33734839
Arg [8] : 4339416b4150646b6a33475752656f5958327934684a70764a486b734c595553
Arg [9] : 714a750000000000000000000000000000000000000000000000000000000000


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.