ETH Price: $3,445.60 (-0.92%)
Gas: 3 Gwei

Token

sineMC (sineMC)
 

Overview

Max Total Supply

3,534 sineMC

Holders

676

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 sineMC
0xD3B2a8dAD4b14e02E9F7C73922E1E43A0e211ed9
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:
sineMC

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : sineMC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

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

contract sineMC is Ownable,  ReentrancyGuard, ERC721A, ERC4907A {
    uint256 public tokenCount;
    uint256 public batchSize = 1000;

    // 1st 
    uint256 public firstSaleMintPrice    = 0.04 ether; 
    // 2nd 
    uint256 public secondSaleMintPriceSP = 0.04 ether;
    uint256 public secondSaleMintPriceWL = 0.054 ether;
    uint256 public secondSaleMintPrice   = 0.06 ether;
    // 3rd
    
    uint256 public thirdSaleMintPriceSP  = 0.04 ether;
    uint256 public thirdSaleMintPriceWL  = 0.068 ether;
    uint256 public thirdSaleMintPrice    = 0.075 ether;

    // mint limit for each round for each addresses
    uint256 public firstSaleMintLimit = 5;
    uint256 public secondSaleMintLimit = 5;
    uint256 public thirdSaleMintLimit = 5;
    // 
    uint256 public totalMintLimit = 30;
    
    // 
    uint256 public ownerLimit = 1000; // 1000
    uint256 public firstSaleLimit = 3000;  // 2000
    uint256 public secondSaleLimit = 6000; // 3000
    uint256 public thirdSaleLimit = 10000;  // 4000

    //
    uint256 public _totalSupply = 10000;

    bool public firstSaleStart = false;
    bool public secondSaleStart = false;
    bool public thirdSaleStart = false;
    // 
    mapping(address => uint256) public totalMinted; // for all rounds
    mapping(address => uint256) public firstMinted; 
    mapping(address => uint256) public secondMinted; 
    mapping(address => uint256) public thirdMinted; 

    bytes32 public merkleRootWL;
    bytes32 public merkleRootSP;

    bool public revealed = false;
    address public manager;
    
    modifier onlyOwnerOrManager() {
        require(msg.sender == owner() || msg.sender == manager , "Not owner or manager ");
        _;
    }

  constructor(address _manager ) ERC721A("sineMC", "sineMC") {
      manager = _manager;
      tokenCount = 0;
  }

  // owner mint
  function ownerMint(uint256 quantity, address to) external onlyOwnerOrManager {
    require((quantity + tokenCount) <= (_totalSupply), "too many already minted before patner mint");
    require((quantity + tokenCount) <= (ownerLimit), "too many already minted before patner mint");
    _safeMint(to, quantity);
    tokenCount += quantity;
  }
  
  // 1st sale 
  function firstSaleMint(uint256 quantity, address to, bytes32[] calldata _merkleProof) public payable nonReentrant {
    require(firstSaleStart, "Sale Paused");
    require((quantity + tokenCount) <= (firstSaleLimit), "Sorry. No more NFTs for first sale");
    require(firstSaleMintLimit >= firstMinted[msg.sender] + quantity, "You have no Mint left");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRootWL, leaf),"Your address is not eligible whiltelist.");
    refundIfOver(firstSaleMintPrice * quantity);
         
    totalMinted[msg.sender] += quantity;
    firstMinted[msg.sender] += quantity;
    _safeMint(to, quantity);
    tokenCount += quantity;
  }

  // 2nd sale 
  function secondSaleMint(uint256 quantity, address to, bytes32[] calldata _merkleProof) public payable nonReentrant {
    require(secondSaleStart, "Sale Paused");
    require((quantity + tokenCount) <= (secondSaleLimit), "Sorry. No more NFTs for second sale");
    require(totalMintLimit >= totalMinted[msg.sender] + quantity, "You have no Mint left ( totalMintLimit ) ");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if( MerkleProof.verify(_merkleProof, merkleRootSP, leaf)) {
      // SP Price 
      // require(msg.value == secondSaleMintPriceSP * quantity, "Value sent is not correct (SP) ");
      refundIfOver(secondSaleMintPriceSP * quantity);

      // Mint Limitation for SP 
      require(secondSaleMintLimit >= secondMinted[msg.sender] + quantity, "You have no Mint left");

    } else if( MerkleProof.verify(_merkleProof, merkleRootWL, leaf)) {
      // WL Price 
      // require(msg.value == secondSaleMintPriceWL * quantity, "Value sent is not correct (WL) ");
      refundIfOver(secondSaleMintPriceWL * quantity);

      // Mint Limitation for WL 
      require(secondSaleMintLimit >= secondMinted[msg.sender] + quantity, "You have no Mint left");
    } else {
      // Regular Price 
      // require(msg.value == secondSaleMintPrice * quantity, "Value sent is not correct");
      refundIfOver(secondSaleMintPrice * quantity);
    }

    require((quantity + tokenCount) <= (_totalSupply), "Sorry. No more NFTs");
        
    totalMinted[msg.sender] += quantity;
    secondMinted[msg.sender] += quantity;
    _safeMint(to, quantity);
    tokenCount += quantity;
  }

  // 3rd sale 
  function thirdSaleMint(uint256 quantity, address to, bytes32[] calldata _merkleProof) public payable nonReentrant {
    require(thirdSaleStart, "Sale Paused");

    require(totalMintLimit >= totalMinted[msg.sender] + quantity, "You have no Mint left ( totalMintLimit ) ");
    require((quantity + tokenCount) <= (thirdSaleLimit), "Sorry. No more NFTs for third sale");
    // same 
    require((quantity + tokenCount) <= (_totalSupply), "Sorry. No more NFTs");

    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if( MerkleProof.verify(_merkleProof, merkleRootSP, leaf)) {
      // SP Price 
      // require(msg.value == thirdSaleMintPriceSP * quantity, "Value sent is not correct (SP) ");
      refundIfOver(thirdSaleMintPriceSP * quantity);

      // Mint Limitation for SP 
      require(thirdSaleMintLimit >= thirdMinted[msg.sender] + quantity, "You have no Mint left");
    } else if( MerkleProof.verify(_merkleProof, merkleRootWL, leaf)) {
      // WL Price 
      // require(msg.value == thirdSaleMintPriceWL * quantity, "Value sent is not correct (WL) ");
      refundIfOver(thirdSaleMintPriceWL * quantity);
      // Mint Limitation for WL 
      require(thirdSaleMintLimit >= thirdMinted[msg.sender] + quantity, "You have no Mint left");
    } else {
      // Regular Price 
      // require(msg.value == thirdSaleMintPrice * quantity, "Value sent is not correct");
      refundIfOver(thirdSaleMintPrice * quantity);
    }

    totalMinted[msg.sender] += quantity;
    thirdMinted[msg.sender] += quantity;
    _safeMint(to, quantity);
    tokenCount += quantity;
  }


  // check wl 
  function checkWL(address _addr, bytes32[] calldata _merkleProof) view external returns(bool) {
    bytes32 leaf = keccak256(abi.encodePacked(_addr));
    return MerkleProof.verify(_merkleProof, merkleRootWL, leaf);
  }

  // check sp
  function checkSP(address _addr, bytes32[] calldata _merkleProof) view external  returns(bool) {
    bytes32 leaf = keccak256(abi.encodePacked(_addr));
    return MerkleProof.verify(_merkleProof, merkleRootSP, leaf);
  }
  // check wl and sp
  function checkSPWL(address _addr, bytes32[] calldata _merkleProof) view external returns(bool wl, bool sp) {
    bytes32 leaf = keccak256(abi.encodePacked(_addr));
    wl = MerkleProof.verify(_merkleProof, merkleRootWL, leaf);
    sp = MerkleProof.verify(_merkleProof, merkleRootSP, leaf);
  }
  //  
  function switchFirstSale(bool _state) external onlyOwnerOrManager {
    firstSaleStart = _state;
  }
  function switchSecondSale(bool _state) external onlyOwnerOrManager {
    secondSaleStart = _state;
  }
  function switchThirdSale(bool _state) external onlyOwnerOrManager {
    thirdSaleStart = _state;
  }
  //
  function setFirstSaleMintLimit(uint256 newLimit) external onlyOwnerOrManager {
    // require(newLimit<=30, "too much");
    firstSaleMintLimit = newLimit;
  }
  function setSecondSaleMintLimit(uint256 newLimit) external onlyOwnerOrManager {
    // require(newLimit<=30, "too much");
    secondSaleMintLimit = newLimit;
  }
  function setThirdMintLimit(uint256 newLimit) external onlyOwnerOrManager {
    // require(newLimit<=30, "too much");
    thirdSaleMintLimit = newLimit;
  }
  function setTotalMintLimit(uint256 newLimit) external onlyOwnerOrManager {
    totalMintLimit = newLimit;
  }


  // first sale price 
  function setFirstSaleMintPrice(uint256 _price) external onlyOwnerOrManager {
    firstSaleMintPrice = _price;
  }
  // second sale prices 
  function setSecondSaleMintPrice(uint256 _price) external onlyOwnerOrManager {
    secondSaleMintPrice = _price;
  }

  function setSecondSaleMintPriceWL(uint256 _price) external onlyOwnerOrManager {
    secondSaleMintPriceWL = _price;
  }

  function setSecondSaleMintPriceSP(uint256 _price) external onlyOwnerOrManager {
    secondSaleMintPriceSP = _price;
  }
  // third sale prices 
  function setThirdMintPrice(uint256 _price) external onlyOwnerOrManager {
    thirdSaleMintPrice = _price;
  }
  function setThirdMintPriceWL(uint256 _price) external onlyOwnerOrManager {
    thirdSaleMintPriceWL = _price;
  }
  function setThirdMintPriceSP(uint256 _price) external onlyOwnerOrManager {
    thirdSaleMintPriceSP = _price;
  }


  function setMerkleRootWL(bytes32 _merkleRootWL) external onlyOwnerOrManager {
    merkleRootWL = _merkleRootWL;
  }

  function setMerkleRootSP(bytes32 _merkleRootSP) external onlyOwnerOrManager {
    merkleRootSP = _merkleRootSP;
  }

  function setMerkleRootSPWL(bytes32 _merkleRootSP, bytes32 _merkleRootWL) external onlyOwnerOrManager {
    merkleRootSP = _merkleRootSP;
    merkleRootWL = _merkleRootWL;
  }

  //URI
  string public baseURI;
  string public unrevealedTokenUri;
  string private ext;

  //retuen BaseURI.internal.
  function _baseURI() internal view override returns (string memory){
    return baseURI;
  }

  function setExtention(string calldata _ext) external onlyOwnerOrManager {
    ext = _ext;
  }

  function tokenURI(uint256 _tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) {
    require(_exists(_tokenId), "URI query for nonexistent token");
    if(revealed == false) {
      return unrevealedTokenUri;
    }
    return string(abi.encodePacked(_baseURI(), Strings.toString(_tokenId), ext));
  }
  

  //set URI
  function setBaseURI(string calldata _baseURI_) external onlyOwnerOrManager {
    baseURI = _baseURI_;
  }
  function setUnrevealedURI(string calldata uri_) public onlyOwnerOrManager {
    unrevealedTokenUri = uri_;
  }
  function setReveal(bool bool_) external onlyOwnerOrManager {
    revealed = bool_;
  }



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

  // withdraw 
  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }
  // 
  function setManager(address _manager) external onlyOwner{
    manager = _manager;
  }



    // for ERC4907A

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

    function explicitUserOf(uint256 tokenId) public view returns (address) {
        return _explicitUserOf(tokenId);
    }

}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 10 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 10 : ERC4907A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC4907A.sol';
import '../ERC721A.sol';

/**
 * @title ERC4907A
 *
 * @dev [ERC4907](https://eips.ethereum.org/EIPS/eip-4907) compliant
 * extension of ERC721A, which allows owners and authorized addresses
 * to add a time-limited role with restricted permissions to ERC721 tokens.
 */
abstract contract ERC4907A is ERC721A, IERC4907A {
    // The bit position of `expires` in packed user info.
    uint256 private constant _BITPOS_EXPIRES = 160;

    // Mapping from token ID to user info.
    //
    // Bits Layout:
    // - [0..159]   `user`
    // - [160..223] `expires`
    mapping(uint256 => uint256) private _packedUserInfo;

    /**
     * @dev Sets the `user` and `expires` for `tokenId`.
     * The zero address indicates there is no user.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function setUser(
        uint256 tokenId,
        address user,
        uint64 expires
    ) public virtual override {
        // Require the caller to be either the token owner or an approved operator.
        address owner = ownerOf(tokenId);
        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A()))
                if (getApproved(tokenId) != _msgSenderERC721A()) revert SetUserCallerNotOwnerNorApproved();

        _packedUserInfo[tokenId] = (uint256(expires) << _BITPOS_EXPIRES) | uint256(uint160(user));

        emit UpdateUser(tokenId, user, expires);
    }

    /**
     * @dev Returns the user address for `tokenId`.
     * The zero address indicates that there is no user or if the user is expired.
     */
    function userOf(uint256 tokenId) public view virtual override returns (address) {
        uint256 packed = _packedUserInfo[tokenId];
        assembly {
            // Branchless `packed *= (block.timestamp <= expires ? 1 : 0)`.
            // If the `block.timestamp == expires`, the `lt` clause will be true
            // if there is a non-zero user address in the lower 160 bits of `packed`.
            packed := mul(
                packed,
                // `block.timestamp <= expires ? 1 : 0`.
                lt(shl(_BITPOS_EXPIRES, timestamp()), packed)
            )
        }
        return address(uint160(packed));
    }

    /**
     * @dev Returns the user's expires of `tokenId`.
     */
    function userExpires(uint256 tokenId) public view virtual override returns (uint256) {
        return _packedUserInfo[tokenId] >> _BITPOS_EXPIRES;
    }

    /**
     * @dev Override of {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC721A) returns (bool) {
        // The interface ID for ERC4907 is `0xad092b5c`,
        // as defined in [ERC4907](https://eips.ethereum.org/EIPS/eip-4907).
        return super.supportsInterface(interfaceId) || interfaceId == 0xad092b5c;
    }

    /**
     * @dev Returns the user address for `tokenId`, ignoring the expiry status.
     */
    function _explicitUserOf(uint256 tokenId) internal view virtual returns (address) {
        return address(uint160(_packedUserInfo[tokenId]));
    }
}

File 7 of 10 : 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 8 of 10 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 9 of 10 : IERC4907A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC4907A.
 */
interface IERC4907A is IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error SetUserCallerNotOwnerNorApproved();

    /**
     * @dev Emitted when the `user` of an NFT or the `expires` of the `user` is changed.
     * The zero address for user indicates that there is no user address.
     */
    event UpdateUser(uint256 indexed tokenId, address indexed user, uint64 expires);

    /**
     * @dev Sets the `user` and `expires` for `tokenId`.
     * The zero address indicates there is no user.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function setUser(
        uint256 tokenId,
        address user,
        uint64 expires
    ) external;

    /**
     * @dev Returns the user address for `tokenId`.
     * The zero address indicates that there is no user or if the user is expired.
     */
    function userOf(uint256 tokenId) external view returns (address);

    /**
     * @dev Returns the user's expires of `tokenId`.
     */
    function userExpires(uint256 tokenId) external view returns (uint256);
}

File 10 of 10 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SetUserCallerNotOwnerNorApproved","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint64","name":"expires","type":"uint64"}],"name":"UpdateUser","type":"event"},{"inputs":[],"name":"_totalSupply","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkSP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkSPWL","outputs":[{"internalType":"bool","name":"wl","type":"bool"},{"internalType":"bool","name":"sp","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitUserOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"firstSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"firstSaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootSP","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"secondMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"secondSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"secondSaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleMintPriceSP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleMintPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"_ext","type":"string"}],"name":"setExtention","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setFirstSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setFirstSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootSP","type":"bytes32"}],"name":"setMerkleRootSP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootSP","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"}],"name":"setMerkleRootSPWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setSecondSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSecondSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSecondSaleMintPriceSP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSecondSaleMintPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setThirdMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setThirdMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setThirdMintPriceSP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setThirdMintPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setTotalMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint64","name":"expires","type":"uint64"}],"name":"setUser","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchFirstSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchSecondSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchThirdSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"thirdMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"thirdSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"thirdSaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdSaleMintPriceSP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdSaleMintPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userExpires","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600c819055668e1bc9bf040000600d819055600e81905566bfd8b6c1df0000600f5566d529ae9e86000060105560115566f195a3c4ba000060125567010a741a46278000601355600560148190556015819055601655601e601755601855610bb8601955611770601a55612710601b819055601c55601d805462ffffff191690556024805460ff191690553480156200009f57600080fd5b50604051620039b8380380620039b8833981016040819052620000c2916200027c565b6040518060400160405280600681526020016573696e654d4360d01b8152506040518060400160405280600681526020016573696e654d4360d01b8152506200011a620001146200018260201b60201c565b62000186565b60018055815162000133906004906020850190620001d6565b50805162000149906005906020840190620001d6565b5060006002555050602480546001600160a01b0390921661010002610100600160a81b03199092169190911790556000600b55620002ea565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001e490620002ae565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b6000602082840312156200028f57600080fd5b81516001600160a01b0381168114620002a757600080fd5b9392505050565b600181811c90821680620002c357607f821691505b602082108103620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b6136be80620002fa6000396000f3fe6080604052600436106104885760003560e01c80638da5cb5b11610255578063bd2eacce11610144578063dc610032116100c1578063ed19596811610085578063ed19596814610d96578063f2fde38b14610db6578063f4daaba114610dd6578063fc44287214610dec578063fe2c7fee14610e02578063ff887e2914610e2257600080fd5b8063dc61003214610cd7578063dd104a0e14610cf7578063e030565e14610d0d578063e57ff39714610d2d578063e985e9c514610d4d57600080fd5b8063d0ebdbe711610108578063d0ebdbe714610c4b578063d1eb54f414610c6b578063d52c57e014610c81578063d6492d8114610ca1578063d6ccef2a14610cb757600080fd5b8063bd2eacce14610bb8578063c2f1f14a14610bce578063c506ae5714610c02578063c87b56dd14610c18578063c89e6b5c14610c3857600080fd5b8063a22cb465116101d2578063b1488be311610196578063b1488be314610b25578063b177303914610b45578063b88d4fde14610b65578063ba70732b14610b78578063ba7af02214610b9857600080fd5b8063a22cb46514610a90578063a47f794914610ab0578063abf62a1614610ad0578063ac44600214610af0578063ad3e31b714610b0557600080fd5b806395d89b411161021957806395d89b4114610a0f578063991ec43414610a2457806399735a5f14610a445780639994640814610a5a5780639f181b5e14610a7a57600080fd5b80638da5cb5b1461095e5780638fc88c481461097c57806390dc794a146109ac57806392b7fb8d146109cc57806393720d4c146109f957600080fd5b80634bbe43e01161037c5780636cc5ef17116102f9578063787b5de4116102bd578063787b5de4146108d357806385536e99146108e95780638721cf66146108ff57806389ada5f9146109155780638b81676c1461092b5780638c1685b51461093e57600080fd5b80636cc5ef171461085f57806370a0823114610875578063715018a614610895578063731b55c9146108aa57806376dd1f86146108bd57600080fd5b80635633188e116103405780635633188e146107bd57806358d5629e146107ea57806362d154801461080a5780636352211e1461082a5780636c0360eb1461084a57600080fd5b80634bbe43e01461070c578063518302271461072c578063519abdf414610746578063539d49fc1461076657806355f804b31461079d57600080fd5b806329855a4e1161040a57806342842e0e116103ce57806342842e0e1461068e578063463f99d3146106a1578063481c6a75146106b7578063492516a3146106dc578063498e50b9146106f657600080fd5b806329855a4e146105ed5780632a3f300c1461061957806330265f93146106395780633dfc1782146106585780633eaaf86b1461067857600080fd5b8063081812fc11610451578063081812fc1461055657806308bff6ff1461058e578063095ea7b3146105ae57806318160ddd146105c157806323b872dd146105da57600080fd5b80623d47901461048d57806301ffc9a7146104cd57806306c536ab146104fd57806306fdde031461051f5780630775dbac14610534575b600080fd5b34801561049957600080fd5b506104ba6104a8366004612e47565b601e6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156104d957600080fd5b506104ed6104e8366004612e78565b610e38565b60405190151581526020016104c4565b34801561050957600080fd5b50610512610e49565b6040516104c49190612eed565b34801561052b57600080fd5b50610512610ed7565b34801561054057600080fd5b5061055461054f366004612f00565b610f69565b005b34801561056257600080fd5b50610576610571366004612f00565b610fbb565b6040516001600160a01b0390911681526020016104c4565b34801561059a57600080fd5b506105546105a9366004612f00565b610fff565b6105546105bc366004612f19565b611048565b3480156105cd57600080fd5b50600354600254036104ba565b6105546105e8366004612f43565b6110e8565b3480156105f957600080fd5b506104ba610608366004612e47565b602080526000908152604090205481565b34801561062557600080fd5b50610554610634366004612f8f565b611280565b34801561064557600080fd5b50601d546104ed90610100900460ff1681565b34801561066457600080fd5b50610554610673366004612f00565b6112d7565b34801561068457600080fd5b506104ba601c5481565b61055461069c366004612f43565b611320565b3480156106ad57600080fd5b506104ba60185481565b3480156106c357600080fd5b506024546105769061010090046001600160a01b031681565b3480156106e857600080fd5b50601d546104ed9060ff1681565b34801561070257600080fd5b506104ba60155481565b34801561071857600080fd5b50610554610727366004612f00565b611340565b34801561073857600080fd5b506024546104ed9060ff1681565b34801561075257600080fd5b50610554610761366004612f00565b611389565b34801561077257600080fd5b50610786610781366004612ff6565b6113d2565b6040805192151583529015156020830152016104c4565b3480156107a957600080fd5b506105546107b8366004613049565b61148f565b3480156107c957600080fd5b506104ba6107d8366004612e47565b601f6020526000908152604090205481565b3480156107f657600080fd5b506104ed610805366004612ff6565b6114df565b34801561081657600080fd5b506104ed610825366004612ff6565b611555565b34801561083657600080fd5b50610576610845366004612f00565b6115c2565b34801561085657600080fd5b506105126115cd565b34801561086b57600080fd5b506104ba600f5481565b34801561088157600080fd5b506104ba610890366004612e47565b6115da565b3480156108a157600080fd5b50610554611629565b6105546108b83660046130bb565b61163d565b3480156108c957600080fd5b506104ba60175481565b3480156108df57600080fd5b506104ba600e5481565b3480156108f557600080fd5b506104ba60195481565b34801561090b57600080fd5b506104ba60105481565b34801561092157600080fd5b506104ba60235481565b6105546109393660046130bb565b611928565b34801561094a57600080fd5b50610554610959366004612f00565b611b33565b34801561096a57600080fd5b506000546001600160a01b0316610576565b34801561098857600080fd5b506104ba610997366004612f00565b6000908152600a602052604090205460a01c90565b3480156109b857600080fd5b506105546109c7366004612f00565b611b7c565b3480156109d857600080fd5b506104ba6109e7366004612e47565b60216020526000908152604090205481565b348015610a0557600080fd5b506104ba60145481565b348015610a1b57600080fd5b50610512611bc5565b348015610a3057600080fd5b50610554610a3f366004612f00565b611bd4565b348015610a5057600080fd5b506104ba600d5481565b348015610a6657600080fd5b50610554610a75366004612f00565b611c1d565b348015610a8657600080fd5b506104ba600b5481565b348015610a9c57600080fd5b50610554610aab366004613115565b611c66565b348015610abc57600080fd5b50610554610acb366004612f00565b611cd2565b348015610adc57600080fd5b50601d546104ed9062010000900460ff1681565b348015610afc57600080fd5b50610554611d1b565b348015610b1157600080fd5b50610554610b20366004612f00565b611ddc565b348015610b3157600080fd5b50610554610b40366004612f8f565b611e25565b348015610b5157600080fd5b50610554610b60366004613148565b611e83565b610554610b73366004613180565b611ed2565b348015610b8457600080fd5b50610554610b93366004613049565b611f1c565b348015610ba457600080fd5b50610554610bb3366004612f8f565b611f6c565b348015610bc457600080fd5b506104ba60135481565b348015610bda57600080fd5b50610576610be9366004612f00565b6000908152600a60205260409020544260a01b81110290565b348015610c0e57600080fd5b506104ba60165481565b348015610c2457600080fd5b50610512610c33366004612f00565b611fc3565b610554610c463660046130bb565b6120f6565b348015610c5757600080fd5b50610554610c66366004612e47565b6123ac565b348015610c7757600080fd5b506104ba60125481565b348015610c8d57600080fd5b50610554610c9c36600461325c565b6123dc565b348015610cad57600080fd5b506104ba60225481565b348015610cc357600080fd5b50610554610cd2366004612f00565b6124a1565b348015610ce357600080fd5b50610554610cf2366004612f00565b6124ea565b348015610d0357600080fd5b506104ba60115481565b348015610d1957600080fd5b50610554610d2836600461327f565b612533565b348015610d3957600080fd5b50610554610d48366004612f8f565b612604565b348015610d5957600080fd5b506104ed610d683660046132cc565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610da257600080fd5b50610576610db1366004612f00565b612664565b348015610dc257600080fd5b50610554610dd1366004612e47565b612678565b348015610de257600080fd5b506104ba600c5481565b348015610df857600080fd5b506104ba601a5481565b348015610e0e57600080fd5b50610554610e1d366004613049565b6126f1565b348015610e2e57600080fd5b506104ba601b5481565b6000610e4382612741565b92915050565b60268054610e56906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e82906132f6565b8015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b820191906000526020600020905b815481529060010190602001808311610eb257829003601f168201915b505050505081565b606060048054610ee6906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f12906132f6565b8015610f5f5780601f10610f3457610100808354040283529160200191610f5f565b820191906000526020600020905b815481529060010190602001808311610f4257829003601f168201915b5050505050905090565b6000546001600160a01b0316331480610f91575060245461010090046001600160a01b031633145b610fb65760405162461bcd60e51b8152600401610fad90613330565b60405180910390fd5b601355565b6000610fc682612769565b610fe3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000546001600160a01b0316331480611027575060245461010090046001600160a01b031633145b6110435760405162461bcd60e51b8152600401610fad90613330565b601255565b6000611053826115c2565b9050336001600160a01b0382161461108c5761106f8133610d68565b61108c576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f382612791565b9050836001600160a01b0316816001600160a01b0316146111265760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b03881690911417611173576111568633610d68565b61117357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661119a57604051633a954ecd60e21b815260040160405180910390fd5b80156111a557600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b84169003611237576001840160008181526006602052604081205490036112355760025481146112355760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314806112a8575060245461010090046001600160a01b031633145b6112c45760405162461bcd60e51b8152600401610fad90613330565b6024805460ff1916911515919091179055565b6000546001600160a01b03163314806112ff575060245461010090046001600160a01b031633145b61131b5760405162461bcd60e51b8152600401610fad90613330565b600f55565b61133b83838360405180602001604052806000815250611ed2565b505050565b6000546001600160a01b0316331480611368575060245461010090046001600160a01b031633145b6113845760405162461bcd60e51b8152600401610fad90613330565b601655565b6000546001600160a01b03163314806113b1575060245461010090046001600160a01b031633145b6113cd5760405162461bcd60e51b8152600401610fad90613330565b600e55565b6000806000856040516020016113e8919061335f565b6040516020818303038152906040528051906020012090506114418585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b92506114848585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b915050935093915050565b6000546001600160a01b03163314806114b7575060245461010090046001600160a01b031633145b6114d35760405162461bcd60e51b8152600401610fad90613330565b61133b60258383612d92565b600080846040516020016114f3919061335f565b60405160208183030381529060405280519060200120905061154c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b95945050505050565b60008084604051602001611569919061335f565b60405160208183030381529060405280519060200120905061154c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b6000610e4382612791565b60258054610e56906132f6565b60006001600160a01b038216611603576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b611631612815565b61163b600061286f565b565b60026001540361165f5760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d54610100900460ff1661168b5760405162461bcd60e51b8152600401610fad906133b3565b601a54600b5461169b90866133ee565b11156116f55760405162461bcd60e51b815260206004820152602360248201527f536f7272792e204e6f206d6f7265204e46547320666f72207365636f6e642073604482015262616c6560e81b6064820152608401610fad565b336000908152601e60205260409020546117109085906133ee565b60175410156117315760405162461bcd60e51b8152600401610fad90613406565b600033604051602001611744919061335f565b60405160208183030381529060405280519060200120905061179d8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b156117f8576117b885600e546117b3919061344f565b6128bf565b3360009081526020805260409020546117d29086906133ee565b60155410156117f35760405162461bcd60e51b8152600401610fad9061346e565b611860565b6118398383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b1561184f576117b885600f546117b3919061344f565b611860856010546117b3919061344f565b601c54600b5461187090876133ee565b11156118b45760405162461bcd60e51b8152602060048201526013602482015272536f7272792e204e6f206d6f7265204e46547360681b6044820152606401610fad565b336000908152601e6020526040812080548792906118d39084906133ee565b9091555050336000908152602080526040812080548792906118f69084906133ee565b909155506119069050848661294a565b84600b600082825461191891906133ee565b9091555050600180555050505050565b60026001540361194a5760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d5460ff166119715760405162461bcd60e51b8152600401610fad906133b3565b601954600b5461198190866133ee565b11156119da5760405162461bcd60e51b815260206004820152602260248201527f536f7272792e204e6f206d6f7265204e46547320666f722066697273742073616044820152616c6560f01b6064820152608401610fad565b336000908152601f60205260409020546119f59085906133ee565b6014541015611a165760405162461bcd60e51b8152600401610fad9061346e565b600033604051602001611a29919061335f565b604051602081830303815290604052805190602001209050611a828383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b611adf5760405162461bcd60e51b815260206004820152602860248201527f596f75722061646472657373206973206e6f7420656c696769626c6520776869604482015267363a32b634b9ba1760c11b6064820152608401610fad565b611af085600d546117b3919061344f565b336000908152601e602052604081208054879290611b0f9084906133ee565b9091555050336000908152601f6020526040812080548792906118f69084906133ee565b6000546001600160a01b0316331480611b5b575060245461010090046001600160a01b031633145b611b775760405162461bcd60e51b8152600401610fad90613330565b601055565b6000546001600160a01b0316331480611ba4575060245461010090046001600160a01b031633145b611bc05760405162461bcd60e51b8152600401610fad90613330565b601455565b606060058054610ee6906132f6565b6000546001600160a01b0316331480611bfc575060245461010090046001600160a01b031633145b611c185760405162461bcd60e51b8152600401610fad90613330565b601555565b6000546001600160a01b0316331480611c45575060245461010090046001600160a01b031633145b611c615760405162461bcd60e51b8152600401610fad90613330565b600d55565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331480611cfa575060245461010090046001600160a01b031633145b611d165760405162461bcd60e51b8152600401610fad90613330565b602355565b611d23612815565b600260015403611d455760405162461bcd60e51b8152600401610fad9061337c565b6002600155604051600090339047908381818185875af1925050503d8060008114611d8c576040519150601f19603f3d011682016040523d82523d6000602084013e611d91565b606091505b5050905080611dd55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610fad565b5060018055565b6000546001600160a01b0316331480611e04575060245461010090046001600160a01b031633145b611e205760405162461bcd60e51b8152600401610fad90613330565b602255565b6000546001600160a01b0316331480611e4d575060245461010090046001600160a01b031633145b611e695760405162461bcd60e51b8152600401610fad90613330565b601d80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331480611eab575060245461010090046001600160a01b031633145b611ec75760405162461bcd60e51b8152600401610fad90613330565b602391909155602255565b611edd8484846110e8565b6001600160a01b0383163b15611f1657611ef984848484612964565b611f16576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331480611f44575060245461010090046001600160a01b031633145b611f605760405162461bcd60e51b8152600401610fad90613330565b61133b60278383612d92565b6000546001600160a01b0316331480611f94575060245461010090046001600160a01b031633145b611fb05760405162461bcd60e51b8152600401610fad90613330565b601d805460ff1916911515919091179055565b6060611fce82612769565b61201a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610fad565b60245460ff1615156000036120bb5760268054612036906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612062906132f6565b80156120af5780601f10612084576101008083540402835291602001916120af565b820191906000526020600020905b81548152906001019060200180831161209257829003601f168201915b50505050509050919050565b6120c3612a50565b6120cc83612a5f565b60276040516020016120e09392919061349d565b6040516020818303038152906040529050919050565b6002600154036121185760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d5462010000900460ff166121455760405162461bcd60e51b8152600401610fad906133b3565b336000908152601e60205260409020546121609085906133ee565b60175410156121815760405162461bcd60e51b8152600401610fad90613406565b601b54600b5461219190866133ee565b11156121ea5760405162461bcd60e51b815260206004820152602260248201527f536f7272792e204e6f206d6f7265204e46547320666f722074686972642073616044820152616c6560f01b6064820152608401610fad565b601c54600b546121fa90866133ee565b111561223e5760405162461bcd60e51b8152602060048201526013602482015272536f7272792e204e6f206d6f7265204e46547360681b6044820152606401610fad565b600033604051602001612251919061335f565b6040516020818303038152906040528051906020012090506122aa8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b15612301576122c0856011546117b3919061344f565b336000908152602160205260409020546122db9086906133ee565b60165410156122fc5760405162461bcd60e51b8152600401610fad9061346e565b612369565b6123428383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b15612358576122c0856012546117b3919061344f565b612369856013546117b3919061344f565b336000908152601e6020526040812080548792906123889084906133ee565b909155505033600090815260216020526040812080548792906118f69084906133ee565b6123b4612815565b602480546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331480612404575060245461010090046001600160a01b031633145b6124205760405162461bcd60e51b8152600401610fad90613330565b601c54600b5461243090846133ee565b111561244e5760405162461bcd60e51b8152600401610fad90613560565b601854600b5461245e90846133ee565b111561247c5760405162461bcd60e51b8152600401610fad90613560565b612486818361294a565b81600b600082825461249891906133ee565b90915550505050565b6000546001600160a01b03163314806124c9575060245461010090046001600160a01b031633145b6124e55760405162461bcd60e51b8152600401610fad90613330565b601755565b6000546001600160a01b0316331480612512575060245461010090046001600160a01b031633145b61252e5760405162461bcd60e51b8152600401610fad90613330565b601155565b600061253e846115c2565b9050336001600160a01b0382161461258f5761255a8133610d68565b61258f573361256885610fbb565b6001600160a01b03161461258f576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600a60209081526040918290206001600160a01b03861660a086901b67ffffffffffffffff60a01b168117909155915167ffffffffffffffff8516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b6000546001600160a01b031633148061262c575060245461010090046001600160a01b031633145b6126485760405162461bcd60e51b8152600401610fad90613330565b601d8054911515620100000262ff000019909216919091179055565b6000818152600a6020526040812054610e43565b612680612815565b6001600160a01b0381166126e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fad565b6126ee8161286f565b50565b6000546001600160a01b0316331480612719575060245461010090046001600160a01b031633145b6127355760405162461bcd60e51b8152600401610fad90613330565b61133b60268383612d92565b600061274c82612b60565b80610e435750506001600160e01b031916632b424ad760e21b1490565b600060025482108015610e43575050600090815260066020526040902054600160e01b161590565b6000816002548110156127e65760008181526006602052604081205490600160e01b821690036127e4575b806000036127dd5750600019016000818152600660205260409020546127bc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261280c8584612bae565b14949350505050565b6000546001600160a01b0316331461163b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610fad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156129085760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610fad565b803411156126ee57336108fc61291e83346135aa565b6040518115909202916000818181858888f19350505050158015612946573d6000803e3d6000fd5b5050565b612946828260405180602001604052806000815250612bfb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129999033908990889088906004016135c1565b6020604051808303816000875af19250505080156129d4575060408051601f3d908101601f191682019092526129d1918101906135fe565b60015b612a32573d808015612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b508051600003612a2a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060258054610ee6906132f6565b606081600003612a865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ab05780612a9a8161361b565b9150612aa99050600a8361364a565b9150612a8a565b60008167ffffffffffffffff811115612acb57612acb61316a565b6040519080825280601f01601f191660200182016040528015612af5576020820181803683370190505b5090505b8415612a4857612b0a6001836135aa565b9150612b17600a8661365e565b612b229060306133ee565b60f81b818381518110612b3757612b37613672565b60200101906001600160f81b031916908160001a905350612b59600a8661364a565b9450612af9565b60006301ffc9a760e01b6001600160e01b031983161480612b9157506380ac58cd60e01b6001600160e01b03198316145b80610e435750506001600160e01b031916635b5e139f60e01b1490565b600081815b8451811015612bf357612bdf82868381518110612bd257612bd2613672565b6020026020010151612c68565b915080612beb8161361b565b915050612bb3565b509392505050565b612c058383612c94565b6001600160a01b0383163b1561133b576002548281035b612c2f6000868380600101945086612964565b612c4c576040516368d2bf6b60e11b815260040160405180910390fd5b818110612c1c578160025414612c6157600080fd5b5050505050565b6000818310612c845760008281526020849052604090206127dd565b5060009182526020526040902090565b6002546000829003612cb95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612d6857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612d30565b5081600003612d8957604051622e076360e81b815260040160405180910390fd5b60025550505050565b828054612d9e906132f6565b90600052602060002090601f016020900481019282612dc05760008555612e06565b82601f10612dd95782800160ff19823516178555612e06565b82800160010185558215612e06579182015b82811115612e06578235825591602001919060010190612deb565b50612e12929150612e16565b5090565b5b80821115612e125760008155600101612e17565b80356001600160a01b0381168114612e4257600080fd5b919050565b600060208284031215612e5957600080fd5b6127dd82612e2b565b6001600160e01b0319811681146126ee57600080fd5b600060208284031215612e8a57600080fd5b81356127dd81612e62565b60005b83811015612eb0578181015183820152602001612e98565b83811115611f165750506000910152565b60008151808452612ed9816020860160208601612e95565b601f01601f19169290920160200192915050565b6020815260006127dd6020830184612ec1565b600060208284031215612f1257600080fd5b5035919050565b60008060408385031215612f2c57600080fd5b612f3583612e2b565b946020939093013593505050565b600080600060608486031215612f5857600080fd5b612f6184612e2b565b9250612f6f60208501612e2b565b9150604084013590509250925092565b80358015158114612e4257600080fd5b600060208284031215612fa157600080fd5b6127dd82612f7f565b60008083601f840112612fbc57600080fd5b50813567ffffffffffffffff811115612fd457600080fd5b6020830191508360208260051b8501011115612fef57600080fd5b9250929050565b60008060006040848603121561300b57600080fd5b61301484612e2b565b9250602084013567ffffffffffffffff81111561303057600080fd5b61303c86828701612faa565b9497909650939450505050565b6000806020838503121561305c57600080fd5b823567ffffffffffffffff8082111561307457600080fd5b818501915085601f83011261308857600080fd5b81358181111561309757600080fd5b8660208285010111156130a957600080fd5b60209290920196919550909350505050565b600080600080606085870312156130d157600080fd5b843593506130e160208601612e2b565b9250604085013567ffffffffffffffff8111156130fd57600080fd5b61310987828801612faa565b95989497509550505050565b6000806040838503121561312857600080fd5b61313183612e2b565b915061313f60208401612f7f565b90509250929050565b6000806040838503121561315b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561319657600080fd5b61319f85612e2b565b93506131ad60208601612e2b565b925060408501359150606085013567ffffffffffffffff808211156131d157600080fd5b818701915087601f8301126131e557600080fd5b8135818111156131f7576131f761316a565b604051601f8201601f19908116603f0116810190838211818310171561321f5761321f61316a565b816040528281528a602084870101111561323857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561326f57600080fd5b8235915061313f60208401612e2b565b60008060006060848603121561329457600080fd5b833592506132a460208501612e2b565b9150604084013567ffffffffffffffff811681146132c157600080fd5b809150509250925092565b600080604083850312156132df57600080fd5b6132e883612e2b565b915061313f60208401612e2b565b600181811c9082168061330a57607f821691505b60208210810361332a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527402737ba1037bbb732b91037b91036b0b730b3b2b91605d1b604082015260600190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a14d85b194814185d5cd95960aa1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613401576134016133d8565b500190565b60208082526029908201527f596f752068617665206e6f204d696e74206c656674202820746f74616c4d696e60408201526803a2634b6b4ba1014960bd1b606082015260800190565b6000816000190483118215151615613469576134696133d8565b500290565b602080825260159082015274165bdd481a185d99481b9bc8135a5b9d081b19599d605a1b604082015260600190565b6000845160206134b08285838a01612e95565b8551918401916134c38184848a01612e95565b8554920191600090600181811c90808316806134e057607f831692505b85831081036134fd57634e487b7160e01b85526022600452602485fd5b80801561351157600181146135225761354f565b60ff1985168852838801955061354f565b60008b81526020902060005b858110156135475781548a82015290840190880161352e565b505083880195505b50939b9a5050505050505050505050565b6020808252602a908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652070604082015269185d1b995c881b5a5b9d60b21b606082015260800190565b6000828210156135bc576135bc6133d8565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135f490830184612ec1565b9695505050505050565b60006020828403121561361057600080fd5b81516127dd81612e62565b60006001820161362d5761362d6133d8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261365957613659613634565b500490565b60008261366d5761366d613634565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b157d5075a95a8aeef52207820fedcdfd9a0c90e7cd556bc48015cd51f010c7c64736f6c634300080e00330000000000000000000000006ea8d23189ae68f1423c6fc8f93b602b5c0524a7

Deployed Bytecode

0x6080604052600436106104885760003560e01c80638da5cb5b11610255578063bd2eacce11610144578063dc610032116100c1578063ed19596811610085578063ed19596814610d96578063f2fde38b14610db6578063f4daaba114610dd6578063fc44287214610dec578063fe2c7fee14610e02578063ff887e2914610e2257600080fd5b8063dc61003214610cd7578063dd104a0e14610cf7578063e030565e14610d0d578063e57ff39714610d2d578063e985e9c514610d4d57600080fd5b8063d0ebdbe711610108578063d0ebdbe714610c4b578063d1eb54f414610c6b578063d52c57e014610c81578063d6492d8114610ca1578063d6ccef2a14610cb757600080fd5b8063bd2eacce14610bb8578063c2f1f14a14610bce578063c506ae5714610c02578063c87b56dd14610c18578063c89e6b5c14610c3857600080fd5b8063a22cb465116101d2578063b1488be311610196578063b1488be314610b25578063b177303914610b45578063b88d4fde14610b65578063ba70732b14610b78578063ba7af02214610b9857600080fd5b8063a22cb46514610a90578063a47f794914610ab0578063abf62a1614610ad0578063ac44600214610af0578063ad3e31b714610b0557600080fd5b806395d89b411161021957806395d89b4114610a0f578063991ec43414610a2457806399735a5f14610a445780639994640814610a5a5780639f181b5e14610a7a57600080fd5b80638da5cb5b1461095e5780638fc88c481461097c57806390dc794a146109ac57806392b7fb8d146109cc57806393720d4c146109f957600080fd5b80634bbe43e01161037c5780636cc5ef17116102f9578063787b5de4116102bd578063787b5de4146108d357806385536e99146108e95780638721cf66146108ff57806389ada5f9146109155780638b81676c1461092b5780638c1685b51461093e57600080fd5b80636cc5ef171461085f57806370a0823114610875578063715018a614610895578063731b55c9146108aa57806376dd1f86146108bd57600080fd5b80635633188e116103405780635633188e146107bd57806358d5629e146107ea57806362d154801461080a5780636352211e1461082a5780636c0360eb1461084a57600080fd5b80634bbe43e01461070c578063518302271461072c578063519abdf414610746578063539d49fc1461076657806355f804b31461079d57600080fd5b806329855a4e1161040a57806342842e0e116103ce57806342842e0e1461068e578063463f99d3146106a1578063481c6a75146106b7578063492516a3146106dc578063498e50b9146106f657600080fd5b806329855a4e146105ed5780632a3f300c1461061957806330265f93146106395780633dfc1782146106585780633eaaf86b1461067857600080fd5b8063081812fc11610451578063081812fc1461055657806308bff6ff1461058e578063095ea7b3146105ae57806318160ddd146105c157806323b872dd146105da57600080fd5b80623d47901461048d57806301ffc9a7146104cd57806306c536ab146104fd57806306fdde031461051f5780630775dbac14610534575b600080fd5b34801561049957600080fd5b506104ba6104a8366004612e47565b601e6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156104d957600080fd5b506104ed6104e8366004612e78565b610e38565b60405190151581526020016104c4565b34801561050957600080fd5b50610512610e49565b6040516104c49190612eed565b34801561052b57600080fd5b50610512610ed7565b34801561054057600080fd5b5061055461054f366004612f00565b610f69565b005b34801561056257600080fd5b50610576610571366004612f00565b610fbb565b6040516001600160a01b0390911681526020016104c4565b34801561059a57600080fd5b506105546105a9366004612f00565b610fff565b6105546105bc366004612f19565b611048565b3480156105cd57600080fd5b50600354600254036104ba565b6105546105e8366004612f43565b6110e8565b3480156105f957600080fd5b506104ba610608366004612e47565b602080526000908152604090205481565b34801561062557600080fd5b50610554610634366004612f8f565b611280565b34801561064557600080fd5b50601d546104ed90610100900460ff1681565b34801561066457600080fd5b50610554610673366004612f00565b6112d7565b34801561068457600080fd5b506104ba601c5481565b61055461069c366004612f43565b611320565b3480156106ad57600080fd5b506104ba60185481565b3480156106c357600080fd5b506024546105769061010090046001600160a01b031681565b3480156106e857600080fd5b50601d546104ed9060ff1681565b34801561070257600080fd5b506104ba60155481565b34801561071857600080fd5b50610554610727366004612f00565b611340565b34801561073857600080fd5b506024546104ed9060ff1681565b34801561075257600080fd5b50610554610761366004612f00565b611389565b34801561077257600080fd5b50610786610781366004612ff6565b6113d2565b6040805192151583529015156020830152016104c4565b3480156107a957600080fd5b506105546107b8366004613049565b61148f565b3480156107c957600080fd5b506104ba6107d8366004612e47565b601f6020526000908152604090205481565b3480156107f657600080fd5b506104ed610805366004612ff6565b6114df565b34801561081657600080fd5b506104ed610825366004612ff6565b611555565b34801561083657600080fd5b50610576610845366004612f00565b6115c2565b34801561085657600080fd5b506105126115cd565b34801561086b57600080fd5b506104ba600f5481565b34801561088157600080fd5b506104ba610890366004612e47565b6115da565b3480156108a157600080fd5b50610554611629565b6105546108b83660046130bb565b61163d565b3480156108c957600080fd5b506104ba60175481565b3480156108df57600080fd5b506104ba600e5481565b3480156108f557600080fd5b506104ba60195481565b34801561090b57600080fd5b506104ba60105481565b34801561092157600080fd5b506104ba60235481565b6105546109393660046130bb565b611928565b34801561094a57600080fd5b50610554610959366004612f00565b611b33565b34801561096a57600080fd5b506000546001600160a01b0316610576565b34801561098857600080fd5b506104ba610997366004612f00565b6000908152600a602052604090205460a01c90565b3480156109b857600080fd5b506105546109c7366004612f00565b611b7c565b3480156109d857600080fd5b506104ba6109e7366004612e47565b60216020526000908152604090205481565b348015610a0557600080fd5b506104ba60145481565b348015610a1b57600080fd5b50610512611bc5565b348015610a3057600080fd5b50610554610a3f366004612f00565b611bd4565b348015610a5057600080fd5b506104ba600d5481565b348015610a6657600080fd5b50610554610a75366004612f00565b611c1d565b348015610a8657600080fd5b506104ba600b5481565b348015610a9c57600080fd5b50610554610aab366004613115565b611c66565b348015610abc57600080fd5b50610554610acb366004612f00565b611cd2565b348015610adc57600080fd5b50601d546104ed9062010000900460ff1681565b348015610afc57600080fd5b50610554611d1b565b348015610b1157600080fd5b50610554610b20366004612f00565b611ddc565b348015610b3157600080fd5b50610554610b40366004612f8f565b611e25565b348015610b5157600080fd5b50610554610b60366004613148565b611e83565b610554610b73366004613180565b611ed2565b348015610b8457600080fd5b50610554610b93366004613049565b611f1c565b348015610ba457600080fd5b50610554610bb3366004612f8f565b611f6c565b348015610bc457600080fd5b506104ba60135481565b348015610bda57600080fd5b50610576610be9366004612f00565b6000908152600a60205260409020544260a01b81110290565b348015610c0e57600080fd5b506104ba60165481565b348015610c2457600080fd5b50610512610c33366004612f00565b611fc3565b610554610c463660046130bb565b6120f6565b348015610c5757600080fd5b50610554610c66366004612e47565b6123ac565b348015610c7757600080fd5b506104ba60125481565b348015610c8d57600080fd5b50610554610c9c36600461325c565b6123dc565b348015610cad57600080fd5b506104ba60225481565b348015610cc357600080fd5b50610554610cd2366004612f00565b6124a1565b348015610ce357600080fd5b50610554610cf2366004612f00565b6124ea565b348015610d0357600080fd5b506104ba60115481565b348015610d1957600080fd5b50610554610d2836600461327f565b612533565b348015610d3957600080fd5b50610554610d48366004612f8f565b612604565b348015610d5957600080fd5b506104ed610d683660046132cc565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610da257600080fd5b50610576610db1366004612f00565b612664565b348015610dc257600080fd5b50610554610dd1366004612e47565b612678565b348015610de257600080fd5b506104ba600c5481565b348015610df857600080fd5b506104ba601a5481565b348015610e0e57600080fd5b50610554610e1d366004613049565b6126f1565b348015610e2e57600080fd5b506104ba601b5481565b6000610e4382612741565b92915050565b60268054610e56906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e82906132f6565b8015610ecf5780601f10610ea457610100808354040283529160200191610ecf565b820191906000526020600020905b815481529060010190602001808311610eb257829003601f168201915b505050505081565b606060048054610ee6906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f12906132f6565b8015610f5f5780601f10610f3457610100808354040283529160200191610f5f565b820191906000526020600020905b815481529060010190602001808311610f4257829003601f168201915b5050505050905090565b6000546001600160a01b0316331480610f91575060245461010090046001600160a01b031633145b610fb65760405162461bcd60e51b8152600401610fad90613330565b60405180910390fd5b601355565b6000610fc682612769565b610fe3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000546001600160a01b0316331480611027575060245461010090046001600160a01b031633145b6110435760405162461bcd60e51b8152600401610fad90613330565b601255565b6000611053826115c2565b9050336001600160a01b0382161461108c5761106f8133610d68565b61108c576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f382612791565b9050836001600160a01b0316816001600160a01b0316146111265760405162a1148160e81b815260040160405180910390fd5b60008281526008602052604090208054338082146001600160a01b03881690911417611173576111568633610d68565b61117357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661119a57604051633a954ecd60e21b815260040160405180910390fd5b80156111a557600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b84169003611237576001840160008181526006602052604081205490036112355760025481146112355760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314806112a8575060245461010090046001600160a01b031633145b6112c45760405162461bcd60e51b8152600401610fad90613330565b6024805460ff1916911515919091179055565b6000546001600160a01b03163314806112ff575060245461010090046001600160a01b031633145b61131b5760405162461bcd60e51b8152600401610fad90613330565b600f55565b61133b83838360405180602001604052806000815250611ed2565b505050565b6000546001600160a01b0316331480611368575060245461010090046001600160a01b031633145b6113845760405162461bcd60e51b8152600401610fad90613330565b601655565b6000546001600160a01b03163314806113b1575060245461010090046001600160a01b031633145b6113cd5760405162461bcd60e51b8152600401610fad90613330565b600e55565b6000806000856040516020016113e8919061335f565b6040516020818303038152906040528051906020012090506114418585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b92506114848585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b915050935093915050565b6000546001600160a01b03163314806114b7575060245461010090046001600160a01b031633145b6114d35760405162461bcd60e51b8152600401610fad90613330565b61133b60258383612d92565b600080846040516020016114f3919061335f565b60405160208183030381529060405280519060200120905061154c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b95945050505050565b60008084604051602001611569919061335f565b60405160208183030381529060405280519060200120905061154c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b6000610e4382612791565b60258054610e56906132f6565b60006001600160a01b038216611603576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b611631612815565b61163b600061286f565b565b60026001540361165f5760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d54610100900460ff1661168b5760405162461bcd60e51b8152600401610fad906133b3565b601a54600b5461169b90866133ee565b11156116f55760405162461bcd60e51b815260206004820152602360248201527f536f7272792e204e6f206d6f7265204e46547320666f72207365636f6e642073604482015262616c6560e81b6064820152608401610fad565b336000908152601e60205260409020546117109085906133ee565b60175410156117315760405162461bcd60e51b8152600401610fad90613406565b600033604051602001611744919061335f565b60405160208183030381529060405280519060200120905061179d8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b156117f8576117b885600e546117b3919061344f565b6128bf565b3360009081526020805260409020546117d29086906133ee565b60155410156117f35760405162461bcd60e51b8152600401610fad9061346e565b611860565b6118398383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b1561184f576117b885600f546117b3919061344f565b611860856010546117b3919061344f565b601c54600b5461187090876133ee565b11156118b45760405162461bcd60e51b8152602060048201526013602482015272536f7272792e204e6f206d6f7265204e46547360681b6044820152606401610fad565b336000908152601e6020526040812080548792906118d39084906133ee565b9091555050336000908152602080526040812080548792906118f69084906133ee565b909155506119069050848661294a565b84600b600082825461191891906133ee565b9091555050600180555050505050565b60026001540361194a5760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d5460ff166119715760405162461bcd60e51b8152600401610fad906133b3565b601954600b5461198190866133ee565b11156119da5760405162461bcd60e51b815260206004820152602260248201527f536f7272792e204e6f206d6f7265204e46547320666f722066697273742073616044820152616c6560f01b6064820152608401610fad565b336000908152601f60205260409020546119f59085906133ee565b6014541015611a165760405162461bcd60e51b8152600401610fad9061346e565b600033604051602001611a29919061335f565b604051602081830303815290604052805190602001209050611a828383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b611adf5760405162461bcd60e51b815260206004820152602860248201527f596f75722061646472657373206973206e6f7420656c696769626c6520776869604482015267363a32b634b9ba1760c11b6064820152608401610fad565b611af085600d546117b3919061344f565b336000908152601e602052604081208054879290611b0f9084906133ee565b9091555050336000908152601f6020526040812080548792906118f69084906133ee565b6000546001600160a01b0316331480611b5b575060245461010090046001600160a01b031633145b611b775760405162461bcd60e51b8152600401610fad90613330565b601055565b6000546001600160a01b0316331480611ba4575060245461010090046001600160a01b031633145b611bc05760405162461bcd60e51b8152600401610fad90613330565b601455565b606060058054610ee6906132f6565b6000546001600160a01b0316331480611bfc575060245461010090046001600160a01b031633145b611c185760405162461bcd60e51b8152600401610fad90613330565b601555565b6000546001600160a01b0316331480611c45575060245461010090046001600160a01b031633145b611c615760405162461bcd60e51b8152600401610fad90613330565b600d55565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331480611cfa575060245461010090046001600160a01b031633145b611d165760405162461bcd60e51b8152600401610fad90613330565b602355565b611d23612815565b600260015403611d455760405162461bcd60e51b8152600401610fad9061337c565b6002600155604051600090339047908381818185875af1925050503d8060008114611d8c576040519150601f19603f3d011682016040523d82523d6000602084013e611d91565b606091505b5050905080611dd55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610fad565b5060018055565b6000546001600160a01b0316331480611e04575060245461010090046001600160a01b031633145b611e205760405162461bcd60e51b8152600401610fad90613330565b602255565b6000546001600160a01b0316331480611e4d575060245461010090046001600160a01b031633145b611e695760405162461bcd60e51b8152600401610fad90613330565b601d80549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331480611eab575060245461010090046001600160a01b031633145b611ec75760405162461bcd60e51b8152600401610fad90613330565b602391909155602255565b611edd8484846110e8565b6001600160a01b0383163b15611f1657611ef984848484612964565b611f16576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331480611f44575060245461010090046001600160a01b031633145b611f605760405162461bcd60e51b8152600401610fad90613330565b61133b60278383612d92565b6000546001600160a01b0316331480611f94575060245461010090046001600160a01b031633145b611fb05760405162461bcd60e51b8152600401610fad90613330565b601d805460ff1916911515919091179055565b6060611fce82612769565b61201a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610fad565b60245460ff1615156000036120bb5760268054612036906132f6565b80601f0160208091040260200160405190810160405280929190818152602001828054612062906132f6565b80156120af5780601f10612084576101008083540402835291602001916120af565b820191906000526020600020905b81548152906001019060200180831161209257829003601f168201915b50505050509050919050565b6120c3612a50565b6120cc83612a5f565b60276040516020016120e09392919061349d565b6040516020818303038152906040529050919050565b6002600154036121185760405162461bcd60e51b8152600401610fad9061337c565b6002600155601d5462010000900460ff166121455760405162461bcd60e51b8152600401610fad906133b3565b336000908152601e60205260409020546121609085906133ee565b60175410156121815760405162461bcd60e51b8152600401610fad90613406565b601b54600b5461219190866133ee565b11156121ea5760405162461bcd60e51b815260206004820152602260248201527f536f7272792e204e6f206d6f7265204e46547320666f722074686972642073616044820152616c6560f01b6064820152608401610fad565b601c54600b546121fa90866133ee565b111561223e5760405162461bcd60e51b8152602060048201526013602482015272536f7272792e204e6f206d6f7265204e46547360681b6044820152606401610fad565b600033604051602001612251919061335f565b6040516020818303038152906040528051906020012090506122aa8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060235491508490506127ff565b15612301576122c0856011546117b3919061344f565b336000908152602160205260409020546122db9086906133ee565b60165410156122fc5760405162461bcd60e51b8152600401610fad9061346e565b612369565b6123428383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060225491508490506127ff565b15612358576122c0856012546117b3919061344f565b612369856013546117b3919061344f565b336000908152601e6020526040812080548792906123889084906133ee565b909155505033600090815260216020526040812080548792906118f69084906133ee565b6123b4612815565b602480546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b0316331480612404575060245461010090046001600160a01b031633145b6124205760405162461bcd60e51b8152600401610fad90613330565b601c54600b5461243090846133ee565b111561244e5760405162461bcd60e51b8152600401610fad90613560565b601854600b5461245e90846133ee565b111561247c5760405162461bcd60e51b8152600401610fad90613560565b612486818361294a565b81600b600082825461249891906133ee565b90915550505050565b6000546001600160a01b03163314806124c9575060245461010090046001600160a01b031633145b6124e55760405162461bcd60e51b8152600401610fad90613330565b601755565b6000546001600160a01b0316331480612512575060245461010090046001600160a01b031633145b61252e5760405162461bcd60e51b8152600401610fad90613330565b601155565b600061253e846115c2565b9050336001600160a01b0382161461258f5761255a8133610d68565b61258f573361256885610fbb565b6001600160a01b03161461258f576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600a60209081526040918290206001600160a01b03861660a086901b67ffffffffffffffff60a01b168117909155915167ffffffffffffffff8516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b6000546001600160a01b031633148061262c575060245461010090046001600160a01b031633145b6126485760405162461bcd60e51b8152600401610fad90613330565b601d8054911515620100000262ff000019909216919091179055565b6000818152600a6020526040812054610e43565b612680612815565b6001600160a01b0381166126e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fad565b6126ee8161286f565b50565b6000546001600160a01b0316331480612719575060245461010090046001600160a01b031633145b6127355760405162461bcd60e51b8152600401610fad90613330565b61133b60268383612d92565b600061274c82612b60565b80610e435750506001600160e01b031916632b424ad760e21b1490565b600060025482108015610e43575050600090815260066020526040902054600160e01b161590565b6000816002548110156127e65760008181526006602052604081205490600160e01b821690036127e4575b806000036127dd5750600019016000818152600660205260409020546127bc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008261280c8584612bae565b14949350505050565b6000546001600160a01b0316331461163b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610fad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156129085760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610fad565b803411156126ee57336108fc61291e83346135aa565b6040518115909202916000818181858888f19350505050158015612946573d6000803e3d6000fd5b5050565b612946828260405180602001604052806000815250612bfb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129999033908990889088906004016135c1565b6020604051808303816000875af19250505080156129d4575060408051601f3d908101601f191682019092526129d1918101906135fe565b60015b612a32573d808015612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b508051600003612a2a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060258054610ee6906132f6565b606081600003612a865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ab05780612a9a8161361b565b9150612aa99050600a8361364a565b9150612a8a565b60008167ffffffffffffffff811115612acb57612acb61316a565b6040519080825280601f01601f191660200182016040528015612af5576020820181803683370190505b5090505b8415612a4857612b0a6001836135aa565b9150612b17600a8661365e565b612b229060306133ee565b60f81b818381518110612b3757612b37613672565b60200101906001600160f81b031916908160001a905350612b59600a8661364a565b9450612af9565b60006301ffc9a760e01b6001600160e01b031983161480612b9157506380ac58cd60e01b6001600160e01b03198316145b80610e435750506001600160e01b031916635b5e139f60e01b1490565b600081815b8451811015612bf357612bdf82868381518110612bd257612bd2613672565b6020026020010151612c68565b915080612beb8161361b565b915050612bb3565b509392505050565b612c058383612c94565b6001600160a01b0383163b1561133b576002548281035b612c2f6000868380600101945086612964565b612c4c576040516368d2bf6b60e11b815260040160405180910390fd5b818110612c1c578160025414612c6157600080fd5b5050505050565b6000818310612c845760008281526020849052604090206127dd565b5060009182526020526040902090565b6002546000829003612cb95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612d6857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612d30565b5081600003612d8957604051622e076360e81b815260040160405180910390fd5b60025550505050565b828054612d9e906132f6565b90600052602060002090601f016020900481019282612dc05760008555612e06565b82601f10612dd95782800160ff19823516178555612e06565b82800160010185558215612e06579182015b82811115612e06578235825591602001919060010190612deb565b50612e12929150612e16565b5090565b5b80821115612e125760008155600101612e17565b80356001600160a01b0381168114612e4257600080fd5b919050565b600060208284031215612e5957600080fd5b6127dd82612e2b565b6001600160e01b0319811681146126ee57600080fd5b600060208284031215612e8a57600080fd5b81356127dd81612e62565b60005b83811015612eb0578181015183820152602001612e98565b83811115611f165750506000910152565b60008151808452612ed9816020860160208601612e95565b601f01601f19169290920160200192915050565b6020815260006127dd6020830184612ec1565b600060208284031215612f1257600080fd5b5035919050565b60008060408385031215612f2c57600080fd5b612f3583612e2b565b946020939093013593505050565b600080600060608486031215612f5857600080fd5b612f6184612e2b565b9250612f6f60208501612e2b565b9150604084013590509250925092565b80358015158114612e4257600080fd5b600060208284031215612fa157600080fd5b6127dd82612f7f565b60008083601f840112612fbc57600080fd5b50813567ffffffffffffffff811115612fd457600080fd5b6020830191508360208260051b8501011115612fef57600080fd5b9250929050565b60008060006040848603121561300b57600080fd5b61301484612e2b565b9250602084013567ffffffffffffffff81111561303057600080fd5b61303c86828701612faa565b9497909650939450505050565b6000806020838503121561305c57600080fd5b823567ffffffffffffffff8082111561307457600080fd5b818501915085601f83011261308857600080fd5b81358181111561309757600080fd5b8660208285010111156130a957600080fd5b60209290920196919550909350505050565b600080600080606085870312156130d157600080fd5b843593506130e160208601612e2b565b9250604085013567ffffffffffffffff8111156130fd57600080fd5b61310987828801612faa565b95989497509550505050565b6000806040838503121561312857600080fd5b61313183612e2b565b915061313f60208401612f7f565b90509250929050565b6000806040838503121561315b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561319657600080fd5b61319f85612e2b565b93506131ad60208601612e2b565b925060408501359150606085013567ffffffffffffffff808211156131d157600080fd5b818701915087601f8301126131e557600080fd5b8135818111156131f7576131f761316a565b604051601f8201601f19908116603f0116810190838211818310171561321f5761321f61316a565b816040528281528a602084870101111561323857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561326f57600080fd5b8235915061313f60208401612e2b565b60008060006060848603121561329457600080fd5b833592506132a460208501612e2b565b9150604084013567ffffffffffffffff811681146132c157600080fd5b809150509250925092565b600080604083850312156132df57600080fd5b6132e883612e2b565b915061313f60208401612e2b565b600181811c9082168061330a57607f821691505b60208210810361332a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527402737ba1037bbb732b91037b91036b0b730b3b2b91605d1b604082015260600190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600b908201526a14d85b194814185d5cd95960aa1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613401576134016133d8565b500190565b60208082526029908201527f596f752068617665206e6f204d696e74206c656674202820746f74616c4d696e60408201526803a2634b6b4ba1014960bd1b606082015260800190565b6000816000190483118215151615613469576134696133d8565b500290565b602080825260159082015274165bdd481a185d99481b9bc8135a5b9d081b19599d605a1b604082015260600190565b6000845160206134b08285838a01612e95565b8551918401916134c38184848a01612e95565b8554920191600090600181811c90808316806134e057607f831692505b85831081036134fd57634e487b7160e01b85526022600452602485fd5b80801561351157600181146135225761354f565b60ff1985168852838801955061354f565b60008b81526020902060005b858110156135475781548a82015290840190880161352e565b505083880195505b50939b9a5050505050505050505050565b6020808252602a908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652070604082015269185d1b995c881b5a5b9d60b21b606082015260800190565b6000828210156135bc576135bc6133d8565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135f490830184612ec1565b9695505050505050565b60006020828403121561361057600080fd5b81516127dd81612e62565b60006001820161362d5761362d6133d8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261365957613659613634565b500490565b60008261366d5761366d613634565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b157d5075a95a8aeef52207820fedcdfd9a0c90e7cd556bc48015cd51f010c7c64736f6c634300080e0033

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

0000000000000000000000006ea8d23189ae68f1423c6fc8f93b602b5c0524a7

-----Decoded View---------------
Arg [0] : _manager (address): 0x6eA8D23189aE68F1423c6Fc8f93b602B5C0524A7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006ea8d23189ae68f1423c6fc8f93b602b5c0524a7


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.