ETH Price: $3,142.08 (-8.57%)
Gas: 9 Gwei

Contract

0xd3570174f71c7E37432eFbdc326514e00f945B2a
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040156721142022-10-04 3:31:59660 days ago1664854319IN
 Create: Jovynn
0 ETH0.0383375711.07070384

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Jovynn

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : Jovynn.sol
//SPDX-License-Identifier: None
pragma solidity ^0.8.7;

/*


 .d8888b.                    888                      d8b              888               888               
d88P  Y88b                   888                      Y8P              888               888               
888    888                   888                                       888               888               
888    888 888  888 888  888 888888  .d88b.   .d8888b 888 88888b.      888       8888b.  88888b.  .d8888b  
888    888 `Y8bd8P' 888  888 888    d88""88b d88P"    888 888 "88b     888          "88b 888 "88b 88K      
888    888   X88K   888  888 888    888  888 888      888 888  888     888      .d888888 888  888 "Y8888b. 
Y88b  d88P .d8""8b. Y88b 888 Y88b.  Y88..88P Y88b.    888 888  888     888      888  888 888 d88P      X88 
 "Y8888P"  888  888  "Y88888  "Y888  "Y88P"   "Y8888P 888 888  888     88888888 "Y888888 88888P"   88888P' 
                         888                                                                               
                    Y8b d88P                                                                               
                     "Y88P"                                                                                
*/


import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "./utils/ERC721AUpgradeable.sol";
import "./utils/JovynnWhitelist.sol";

contract Jovynn is
ERC721AUpgradeable,
OwnableUpgradeable,
Whitelist,
ReentrancyGuardUpgradeable
{
    /**
    @notice A struct that defines a Sale
    @params startTime Time when the Sale begins
    @params endTime Time when the Sale ends
    @params buyLimit Maximum number of tokens a wallet may mint
    @params maxAvailable Maximum number of tokens that may be sold in the Sale
    @params register Registry of minters 
    */
    struct sale {
        uint256 startTime;
        uint256 endTime;
        uint256 buyLimit;
        uint256 maxAvailable;
        mapping(address => uint256) register;
    }

    sale public WL1;
    sale public WL2;
    sale public WL3;
    sale public WL4;
    sale public WL5;
    sale public WL6;

    sale public PB;

    string public baseURI;
    address public designatedSigner;

    uint256 public maxSupply;
    uint256 public ownerRemainingTokens;

    modifier checkSupply(uint256 _amount) {
        require(_amount > 0, "Invalid Amount");
        require(_amount + totalSupply() <= maxSupply - ownerRemainingTokens, "Sold out");
        _;
    }

    /**
    @notice This function initializes Sale parameters  
    @param _name Collection name  
    @param _symbol Collection Symbol  
    @param _designatedSigner Public address of dedicated private key used for Whitelisting  
    */
    function initialize(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        address _designatedSigner
    ) public initializer {
        __Ownable_init();
        __ReentrancyGuard_init();
        __ERC721A_init(_name, _symbol);
        __JovynnSigner_init();

        baseURI = _uri;
        designatedSigner = _designatedSigner;
        maxSupply = 1000;
        ownerRemainingTokens = 100;

        WL1.startTime = 1664964000; // 5 Oct 2022, 3:30PM IST
        WL1.endTime = WL1.startTime + 4 hours;
        WL1.buyLimit = 1;
        WL1.maxAvailable = 74;

        WL2.startTime = WL1.startTime;
        WL2.endTime = WL1.endTime;
        WL2.buyLimit = 2;
        WL2.maxAvailable = 34;

        WL3.startTime = WL1.startTime;
        WL3.endTime = WL1.endTime;
        WL3.buyLimit = 3;
        WL3.maxAvailable = 15;

        WL4.startTime = WL1.startTime;
        WL4.endTime = WL1.endTime;
        WL4.buyLimit = 4;
        WL4.maxAvailable = 28;

        WL5.startTime = WL1.startTime;
        WL5.endTime = WL1.endTime;
        WL5.buyLimit = 5;
        WL5.maxAvailable = 35;

        WL6.startTime = WL1.endTime;
        WL6.endTime = WL6.startTime + 12 hours;
        WL6.buyLimit = 2;
        WL6.maxAvailable = maxSupply - ownerRemainingTokens;

        PB.startTime = WL6.endTime;
        PB.endTime = PB.startTime + 100 days;
        PB.buyLimit = 2;
        PB.maxAvailable = maxSupply - ownerRemainingTokens;
    }

    /**
    @notice This function allows only the owner to airdrop tokens to any address
    @param _amount Amount of tokens to mint in one transaction  
    @param _address Address of the recipient
    */
    function airDrop(uint256 _amount, address _address) external onlyOwner {
        require(_amount + totalSupply() <= maxSupply, "Exceeding supply");
        require(_amount <= ownerRemainingTokens, "Exceeding airdrop allotment");

        ownerRemainingTokens -= _amount;
        _mint(_address, _amount);
    }


    /**
    @notice This function allows members in Whitelist-1 to mint  
    @param _whitelist Whitelisting object which contains user address signed by the designated signer  
    @param _amount Amount of tokens to mint in one transaction   
    */
    function WL1mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 1, "!List");

        require(block.timestamp > WL1.startTime && block.timestamp <= WL1.endTime, "WL1 sale not active");
        require(_amount + WL1.register[msg.sender] <= WL1.buyLimit, "WL1 cannot mint more");

        require(_amount <= WL1.maxAvailable, "WL1 sold out");

        WL1.register[msg.sender] += _amount;
        WL1.maxAvailable -= _amount;

        _mint(msg.sender, _amount);
    }


    /**
    @notice This function allows members in Whitelist-2 to claim  
    @param _whitelist Whitelisting object which contains user address signed by the designated signer  
    @param _amount Amount of tokens to mint in one transaction   
    */
    function WL2mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 2, "!List");

        require(block.timestamp > WL2.startTime && block.timestamp <= WL2.endTime, "WL2 sale not active");
        require(_amount + WL2.register[msg.sender] <= WL2.buyLimit, "WL2 cannot claim more");

        require(_amount <= WL2.maxAvailable, "WL2 supply over");

        WL2.register[msg.sender] += _amount;
        WL2.maxAvailable -= _amount;

        _mint(msg.sender, _amount);
    }

    /**
    @notice This function allows members in the Whitelist-3 to mint 
    @param _whitelist Whitelisting object which contains user address signed by the designated signer 
    @param _amount Amount of tokens to mint in one transaction  
    */
    function WL3mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 3, "!List");

        require(block.timestamp > WL3.startTime && block.timestamp <= WL3.endTime, "WL3 sale not active");
        require(_amount + WL3.register[msg.sender] <= WL3.buyLimit, "WL3 cannot mint more");

        require(_amount <= WL3.maxAvailable, "WL3 sold out");

        WL3.register[msg.sender] += _amount;
        WL3.maxAvailable -= _amount;

        _mint(_whitelist.userAddress, _amount);
    }

    /**
    @notice This function allows members in the Whitelist-4 to mint 
    @param _whitelist Whitelisting object which contains user address signed by the designated signer 
    @param _amount Amount of tokens to mint in one transaction  
    */
    function WL4mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 4, "!List");

        require(block.timestamp > WL4.startTime && block.timestamp <= WL4.endTime, "WL4 sale not active");
        require(_amount + WL4.register[msg.sender] <= WL4.buyLimit, "WL4 cannot mint more");

        require(_amount <= WL4.maxAvailable, "WL4 sold out");

        WL4.register[msg.sender] += _amount;
        WL4.maxAvailable -= _amount;

        _mint(_whitelist.userAddress, _amount);
    }

    /**
    @notice This function allows members in the Whitelist-5 to mint 
    @param _whitelist Whitelisting object which contains user address signed by the designated signer 
    @param _amount Amount of tokens to mint in one transaction  
    */
    function WL5mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 5, "!List");

        require(block.timestamp > WL5.startTime && block.timestamp <= WL5.endTime, "WL5 sale not active");
        require(_amount + WL5.register[msg.sender] <= WL5.buyLimit, "WL5 cannot mint more");

        require(_amount <= WL5.maxAvailable, "WL5 sold out");

        WL5.register[msg.sender] += _amount;
        WL5.maxAvailable -= _amount;

        _mint(_whitelist.userAddress, _amount);
    }

    /**
    @notice This function allows members in the Whitelist-6 to mint 
    @param _whitelist Whitelisting object which contains user address signed by the designated signer 
    @param _amount Amount of tokens to mint in one transaction  
    */
    function WL6mint(whitelist memory _whitelist, uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(getSigner(_whitelist) == designatedSigner, "!Signer");
        require(_whitelist.userAddress == msg.sender, "!Sender");
        require(_whitelist.listType == 6, "!List");

        require(block.timestamp > WL6.startTime && block.timestamp <= WL6.endTime, "WL6 sale not active");
        require(_amount + WL6.register[msg.sender] <= WL6.buyLimit, "WL6 cannot mint more");

        require(_amount <= WL6.maxAvailable, "WL6 sold out");

        WL6.register[msg.sender] += _amount;
        WL6.maxAvailable -= _amount;

        _mint(_whitelist.userAddress, _amount);
    }

    /**
    @notice This function allows anyone to mint   
    @param _amount Amount of tokens to mint in one transactions   
    */
    function publicMint(uint256 _amount)
    external
    nonReentrant
    checkSupply(_amount)
    {
        require(msg.sender == tx.origin, "PB only users");

        require(block.timestamp > PB.startTime && block.timestamp <= PB.endTime, "PB sale not active");
        require(_amount + PB.register[msg.sender] <= PB.buyLimit, "PB cannot mint more");

        require(_amount <= PB.maxAvailable, "PB supply over");

        PB.register[msg.sender] += _amount;
        PB.maxAvailable -= _amount;

        _mint(msg.sender, _amount);
    }

    /**
    @notice This function returns the number of tokens minted by a member in Early Access list   
    @param _address Address of the member   
    */
    function readWL1register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL1.register[_address];
    }

    /**
    @notice This function returns the number of tokens claimed by a member in Early Access list   
    @param _address Address of the member   
    */
    function readWL2register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL2.register[_address];
    }

    /**
    @notice This function returns the number of tokens minted by a member in Blacklist  
    @param _address Address of the member   
    */
    function readWL3register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL3.register[_address];
    }

    /**
    @notice This function returns the number of tokens minted by a member in Blacklist  
    @param _address Address of the member   
    */
    function readWL4register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL4.register[_address];
    }

    /**
    @notice This function returns the number of tokens minted by a member in Blacklist  
    @param _address Address of the member   
    */
    function readWL5register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL5.register[_address];
    }

    /**
    @notice This function returns the number of tokens minted by a member in Blacklist  
    @param _address Address of the member   
    */
    function readWL6register(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return WL6.register[_address];
    }

    /**
    @notice This function returns the number of tokens minted by a user 
    @param _address Address of the user   
    */
    function readPBregister(address _address) public view returns (uint256) {
        require(_address != address(0), "Invalid address provided");
        return PB.register[_address];
    }

    ////////////////
    ////Setters////
    //////////////

    function setBaseURI(string memory baseURI_) public onlyOwner {
        require(bytes(baseURI_).length > 0, "Invalid Base URI Provided");
        baseURI = baseURI_;
    }

    function setDesignatedSigner(address _signer) external onlyOwner {
        require(_signer != address(0), "Invalid Address Provided");
        designatedSigner = _signer;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        require(totalSupply() <= _supply, "Total Supply Exceeding");
        maxSupply = _supply;
    }

    function setOwnerCap(uint256 _cap) external onlyOwner {
        ownerRemainingTokens = _cap;
    }

    function setWL1conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL1.startTime = _startTime;
        WL1.endTime = _endTime;
        WL1.buyLimit = _buyLimit;
        WL1.maxAvailable = _maxAvailable;
    }

    function setWL2Conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL2.startTime = _startTime;
        WL2.endTime = _endTime;
        WL2.buyLimit = _buyLimit;
        WL2.maxAvailable = _maxAvailable;
    }

    function setWL3conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL3.startTime = _startTime;
        WL3.endTime = _endTime;
        WL3.buyLimit = _buyLimit;
        WL3.maxAvailable = _maxAvailable;
    }

    function setWL4conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL4.startTime = _startTime;
        WL4.endTime = _endTime;
        WL4.buyLimit = _buyLimit;
        WL4.maxAvailable = _maxAvailable;
    }

    function setWL5conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL5.startTime = _startTime;
        WL5.endTime = _endTime;
        WL5.buyLimit = _buyLimit;
        WL5.maxAvailable = _maxAvailable;
    }

    function setWL6conditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        WL6.startTime = _startTime;
        WL6.endTime = _endTime;
        WL6.buyLimit = _buyLimit;
        WL6.maxAvailable = _maxAvailable;
    }

    function setPBconditions(
        uint256 _startTime,
        uint256 _endTime,
        uint256 _buyLimit,
        uint256 _maxAvailable
    ) external onlyOwner {
        require(_startTime < _endTime, "Invalid times");
        require(_maxAvailable <= maxSupply - ownerRemainingTokens, "_maxAvailable invalid");

        PB.startTime = _startTime;
        PB.endTime = _endTime;
        PB.buyLimit = _buyLimit;
        PB.maxAvailable = _maxAvailable;
    }

    ////////////////
    ///Overridden///
    ////////////////

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

File 2 of 18 : ERC721AUpgradeable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

    error ApprovalCallerNotOwnerNorApproved();
    error ApprovalQueryForNonexistentToken();
    error ApproveToCaller();
    error ApprovalToCurrentOwner();
    error BalanceQueryForZeroAddress();
    error MintToZeroAddress();
    error MintZeroQuantity();
    error OwnerQueryForNonexistentToken();
    error TransferCallerNotOwnerNorApproved();
    error TransferFromIncorrectOwner();
    error TransferToNonERC721ReceiverImplementer();
    error TransferToZeroAddress();
    error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    function __ERC721A_init(string memory name_, string memory symbol_)
    internal
    initializer
    {
        __Context_init();
        __ERC165_init();

        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

File 3 of 18 : JovynnWhitelist.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;

import "@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol";

contract Whitelist is EIP712Upgradeable {
    string private constant SIGNING_DOMAIN = "Jovynn";
    string private constant SIGNATURE_VERSION = "1";

    struct whitelist {
        address userAddress;
        uint256 listType;
        bytes signature;
    }

    function __JovynnSigner_init() internal initializer {
        __EIP712_init(SIGNING_DOMAIN, SIGNATURE_VERSION);   
    }

    function getSigner(whitelist memory _data) public view returns (address) {
        return _verify(_data);
    }

    /// @notice Returns a hash of the given rarity, prepared using EIP712 typed data hashing rules.

    function _hash(whitelist memory _data) internal view returns (bytes32) {
        return
        _hashTypedDataV4(
            keccak256(
                abi.encode(
                    keccak256(
                        "whitelist(address userAddress,uint256 listType)"
                    ),
                    _data.userAddress,
                    _data.listType
                )
            )
        );
    }

    function _verify(whitelist memory _data) internal view returns (address) {
        bytes32 digest = _hash(_data);
        return ECDSAUpgradeable.recover(digest, _data.signature);
    }
}

File 4 of 18 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 5 of 18 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ReentrancyGuardUpgradeable is Initializable {
    // 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;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 6 of 18 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 8 of 18 : IERC721ReceiverUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 18 : IERC721Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 10 of 18 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/MathUpgradeable.sol";

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = MathUpgradeable.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, MathUpgradeable.log256(value) + 1);
        }
    }

    /**
     * @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] = _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 11 of 18 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";

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

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

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

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

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

File 13 of 18 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Internal function that returns the initialized version. Returns `_initialized`
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Internal function that returns the initialized version. Returns `_initializing`
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

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

pragma solidity ^0.8.0;

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

File 15 of 18 : MathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 16 of 18 : draft-EIP712Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

// EIP-712 is Final as of 2022-08-11. This file is deprecated.

import "./EIP712Upgradeable.sol";

File 17 of 18 : EIP712Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSAUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 *
 * @custom:storage-size 52
 */
abstract contract EIP712Upgradeable is Initializable {
    /* solhint-disable var-name-mixedcase */
    bytes32 private _HASHED_NAME;
    bytes32 private _HASHED_VERSION;
    bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {
        __EIP712_init_unchained(name, version);
    }

    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev The hash of the name parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712NameHash() internal virtual view returns (bytes32) {
        return _HASHED_NAME;
    }

    /**
     * @dev The hash of the version parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712VersionHash() internal virtual view returns (bytes32) {
        return _HASHED_VERSION;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 18 of 18 : ECDSAUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../StringsUpgradeable.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PB","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL1","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL1mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL2","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL2mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL3","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL3mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL4","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL4mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL5","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL5mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL6","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"buyLimit","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_whitelist","type":"tuple"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WL6mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"designatedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"uint256","name":"listType","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct Whitelist.whitelist","name":"_data","type":"tuple"}],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_designatedSigner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerRemainingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readPBregister","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL1register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL2register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL3register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL4register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL5register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"readWL6register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setDesignatedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setOwnerCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setPBconditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL1conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL2Conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL3conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL4conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL5conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_buyLimit","type":"uint256"},{"internalType":"uint256","name":"_maxAvailable","type":"uint256"}],"name":"setWL6conditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50613daa806100206000396000f3fe608060405234801561001057600080fd5b50600436106103785760003560e01c8063731e44bf116101d3578063b0a015af11610104578063d5abeb01116100a2578063e985e9c51161007c578063e985e9c5146107aa578063f2fde38b146107e6578063fa835f04146107f9578063fe9083881461080c57600080fd5b8063d5abeb0114610773578063d67c1a181461077d578063e684797d1461079757600080fd5b8063c87b56dd116100de578063c87b56dd14610720578063ca40012614610733578063cade923d14610746578063cd37120b1461076057600080fd5b8063b0a015af146106e7578063b88d4fde146106fa578063c27ce0251461070d57600080fd5b806395d89b4111610171578063a461185d1161014b578063a461185d1461069a578063a83e52b4146106ad578063aae25051146106c0578063aed38015146106d457600080fd5b806395d89b411461066c5780639c2ef8ac14610674578063a22cb4651461068757600080fd5b806385696f90116101ad57806385696f901461061b5780638a8c2a971461062e5780638da5cb5b146106485780638fcfb3ae1461065957600080fd5b8063731e44bf146105db57806374752071146105f557806375cec1cd1461060857600080fd5b806342f08530116102ad57806355f804b31161024b5780636c0360eb116102255780636c0360eb146105a55780636f8b44b0146105ad57806370a08231146105c0578063715018a6146105d357600080fd5b806355f804b31461056c5780635c6d8da11461057f5780636352211e1461059257600080fd5b80634c9ec0db116102875780634c9ec0db146105195780634cab00901461052c5780634dc86d5714610546578063529a0bef1461055957600080fd5b806342f08530146104e9578063486877d4146104fc5780634c30482a1461050f57600080fd5b806323b872dd1161031a5780633029b024116102f45780633029b0241461046f5780633fd14ec6146104825780633fd3f824146104bc57806342842e0e146104d657600080fd5b806323b872dd146104365780632db11544146104495780632ff2fe231461045c57600080fd5b8063095ea7b311610356578063095ea7b3146103e557806317e3d5b2146103fa57806318160ddd1461041b5780631d0655851461042357600080fd5b806301ffc9a71461037d57806306fdde03146103a5578063081812fc146103ba575b600080fd5b61039061038b36600461381e565b61081f565b60405190151581526020015b60405180910390f35b6103ad610871565b60405161039c9190613aa2565b6103cd6103c836600461399c565b610903565b6040516001600160a01b03909116815260200161039c565b6103f86103f33660046137f4565b610947565b005b61040d6104083660046136c7565b6109d5565b60405190815260200161039c565b61040d610a23565b6103f8610431366004613958565b610a31565b6103f8610444366004613715565b610c7d565b6103f861045736600461399c565b610c88565b6103f861046a366004613958565b610e88565b6103f861047d3660046139d8565b6110b4565b61011e5461011f54610120546101215461049c9392919084565b60408051948552602085019390935291830152606082015260800161039c565b61010a5461010b5461010c5461010d5461049c9392919084565b6103f86104e4366004613715565b611124565b6103f86104f7366004613958565b61113f565b6103f861050a366004613958565b61136b565b61040d61012b5481565b6103f8610527366004613958565b6115a7565b61010f5461011054610111546101125461049c9392919084565b6103f86105543660046139d8565b6117d3565b61040d6105673660046136c7565b611843565b6103f861057a366004613858565b611888565b6103f861058d36600461388c565b6118f5565b6103cd6105a036600461399c565b611b0f565b6103ad611b21565b6103f86105bb36600461399c565b611bb0565b61040d6105ce3660046136c7565b611c0e565b6103f8611c5c565b6101235461012454610125546101265461049c9392919084565b61040d6106033660046136c7565b611c70565b61040d6106163660046136c7565b611cb5565b6103f86106293660046139d8565b611cfa565b6101055461010654610107546101085461049c9392919084565b606d546001600160a01b03166103cd565b6103f86106673660046139d8565b611d6a565b6103ad611dda565b6103f86106823660046139d8565b611de9565b6103f86106953660046137b8565b611e59565b6103cd6106a8366004613924565b611eef565b6103f86106bb3660046136c7565b611efa565b610129546103cd906001600160a01b031681565b6103f86106e23660046139b5565b611f7b565b6103f86106f53660046139d8565b612050565b6103f8610708366004613751565b6120c0565b6103f861071b3660046139d8565b612111565b6103ad61072e36600461399c565b612181565b6103f861074136600461399c565b612206565b6101145461011554610116546101175461049c9392919084565b61040d61076e3660046136c7565b612214565b61040d61012a5481565b6101195461011a5461011b5461011c5461049c9392919084565b61040d6107a53660046136c7565b612259565b6103906107b83660046136e2565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b6103f86107f43660046136c7565b61229e565b6103f8610807366004613958565b612314565b61040d61081a3660046136c7565b612544565b60006001600160e01b031982166380ac58cd60e01b148061085057506001600160e01b03198216635b5e139f60e01b145b8061086b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606067805461088090613ce1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90613ce1565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e82612589565b61092b576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b600061095282611b0f565b9050806001600160a01b0316836001600160a01b031614156109875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a757506109a581336107b8565b155b156109c5576040516367d9dca160e11b815260040160405180910390fd5b6109d08383836125c2565b505050565b60006001600160a01b038216610a065760405162461bcd60e51b81526004016109fd90613ab5565b60405180910390fd5b506001600160a01b03166000908152610113602052604090205490565b606654606554036000190190565b610a3961261e565b8060008111610a5a5760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610a6c9190613c9e565b610a74610a23565b610a7e9083613c86565b1115610a9c5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b0316610ab284611eef565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b03163314610b015760405162461bcd60e51b81526004016109fd90613b13565b8260200151600614610b255760405162461bcd60e51b81526004016109fd90613bfa565b61011e5442118015610b3a575061011f544211155b610b7c5760405162461bcd60e51b8152602060048201526013602482015272574c362073616c65206e6f742061637469766560681b60448201526064016109fd565b610120543360009081526101226020526040902054610b9b9084613c86565b1115610be05760405162461bcd60e51b8152602060048201526014602482015273574c362063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b61012154821115610c225760405162461bcd60e51b815260206004820152600c60248201526b15d30d881cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610122602052604081208054849290610c42908490613c86565b90915550506101218054839190600090610c5d908490613c9e565b90915550508251610c6e9083612678565b50610c79600160d355565b5050565b6109d08383836127af565b610c9061261e565b8060008111610cb15760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610cc39190613c9e565b610ccb610a23565b610cd59083613c86565b1115610cf35760405162461bcd60e51b81526004016109fd90613c19565b333214610d325760405162461bcd60e51b815260206004820152600d60248201526c5042206f6e6c7920757365727360981b60448201526064016109fd565b6101235442118015610d475750610124544211155b610d885760405162461bcd60e51b815260206004820152601260248201527150422073616c65206e6f742061637469766560701b60448201526064016109fd565b610125543360009081526101276020526040902054610da79084613c86565b1115610deb5760405162461bcd60e51b815260206004820152601360248201527250422063616e6e6f74206d696e74206d6f726560681b60448201526064016109fd565b61012654821115610e2f5760405162461bcd60e51b815260206004820152600e60248201526d28211039bab838363c9037bb32b960911b60448201526064016109fd565b336000908152610127602052604081208054849290610e4f908490613c86565b90915550506101268054839190600090610e6a908490613c9e565b90915550610e7a90503383612678565b50610e85600160d355565b50565b610e9061261e565b8060008111610eb15760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610ec39190613c9e565b610ecb610a23565b610ed59083613c86565b1115610ef35760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b0316610f0984611eef565b6001600160a01b031614610f2f5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b03163314610f585760405162461bcd60e51b81526004016109fd90613b13565b8260200151600314610f7c5760405162461bcd60e51b81526004016109fd90613bfa565b61010f5442118015610f915750610110544211155b610fd35760405162461bcd60e51b8152602060048201526013602482015272574c332073616c65206e6f742061637469766560681b60448201526064016109fd565b610111543360009081526101136020526040902054610ff29084613c86565b11156110375760405162461bcd60e51b8152602060048201526014602482015273574c332063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b610112548211156110795760405162461bcd60e51b815260206004820152600c60248201526b15d30cc81cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610113602052604081208054849290611099908490613c86565b90915550506101128054839190600090610c5d908490613c9e565b6110bc61299a565b8284106110db5760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a546110ed9190613c9e565b81111561110c5760405162461bcd60e51b81526004016109fd90613b7d565b61010593909355610106919091556101075561010855565b6109d0838383604051806020016040528060008152506120c0565b61114761261e565b80600081116111685760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a5461117a9190613c9e565b611182610a23565b61118c9083613c86565b11156111aa5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b03166111c084611eef565b6001600160a01b0316146111e65760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b0316331461120f5760405162461bcd60e51b81526004016109fd90613b13565b82602001516004146112335760405162461bcd60e51b81526004016109fd90613bfa565b61011454421180156112485750610115544211155b61128a5760405162461bcd60e51b8152602060048201526013602482015272574c342073616c65206e6f742061637469766560681b60448201526064016109fd565b6101165433600090815261011860205260409020546112a99084613c86565b11156112ee5760405162461bcd60e51b8152602060048201526014602482015273574c342063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b610117548211156113305760405162461bcd60e51b815260206004820152600c60248201526b15d30d081cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610118602052604081208054849290611350908490613c86565b90915550506101178054839190600090610c5d908490613c9e565b61137361261e565b80600081116113945760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a546113a69190613c9e565b6113ae610a23565b6113b89083613c86565b11156113d65760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b03166113ec84611eef565b6001600160a01b0316146114125760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b0316331461143b5760405162461bcd60e51b81526004016109fd90613b13565b826020015160011461145f5760405162461bcd60e51b81526004016109fd90613bfa565b61010554421180156114745750610106544211155b6114b65760405162461bcd60e51b8152602060048201526013602482015272574c312073616c65206e6f742061637469766560681b60448201526064016109fd565b6101075433600090815261010960205260409020546114d59084613c86565b111561151a5760405162461bcd60e51b8152602060048201526014602482015273574c312063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b6101085482111561155c5760405162461bcd60e51b815260206004820152600c60248201526b15d30c481cdbdb19081bdd5d60a21b60448201526064016109fd565b33600090815261010960205260408120805484929061157c908490613c86565b90915550506101088054839190600090611597908490613c9e565b90915550610c6e90503383612678565b6115af61261e565b80600081116115d05760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a546115e29190613c9e565b6115ea610a23565b6115f49083613c86565b11156116125760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b031661162884611eef565b6001600160a01b03161461164e5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b031633146116775760405162461bcd60e51b81526004016109fd90613b13565b826020015160051461169b5760405162461bcd60e51b81526004016109fd90613bfa565b61011954421180156116b0575061011a544211155b6116f25760405162461bcd60e51b8152602060048201526013602482015272574c352073616c65206e6f742061637469766560681b60448201526064016109fd565b61011b5433600090815261011d60205260409020546117119084613c86565b11156117565760405162461bcd60e51b8152602060048201526014602482015273574c352063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b61011c548211156117985760405162461bcd60e51b815260206004820152600c60248201526b15d30d481cdbdb19081bdd5d60a21b60448201526064016109fd565b33600090815261011d6020526040812080548492906117b8908490613c86565b909155505061011c8054839190600090610c5d908490613c9e565b6117db61299a565b8284106117fa5760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a5461180c9190613c9e565b81111561182b5760405162461bcd60e51b81526004016109fd90613b7d565b61010a9390935561010b9190915561010c5561010d55565b60006001600160a01b03821661186b5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b0316600090815261011d602052604090205490565b61189061299a565b60008151116118e15760405162461bcd60e51b815260206004820152601960248201527f496e76616c69642042617365205552492050726f76696465640000000000000060448201526064016109fd565b8051610c7990610128906020840190613507565b600054610100900460ff16158080156119155750600054600160ff909116105b8061192f5750303b15801561192f575060005460ff166001145b61194b5760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff19166001179055801561196e576000805461ff0019166101001790555b6119766129f4565b61197e612a23565b6119888585612a52565b611990612b52565b82516119a490610128906020860190613507565b5061012980546001600160a01b0319166001600160a01b0384161790556103e861012a55606461012b5563633d55a06101058190556119e590613840613c86565b610106819055600161010755604a610108556101055461010a81905561010b829055600261010c55602261010d5561010f819055610110829055600361011155600f61011255610114819055610115829055600461011655601c610117556101195561011a819055600561011b55602361011c5561011e819055611a6b9061a8c0613c86565b61011f5560026101205561012b5461012a54611a879190613c9e565b6101215561011f54610123819055611aa2906283d600613c86565b6101245560026101255561012b5461012a54611abe9190613c9e565b610126558015611b08576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b6000611b1a82612c54565b5192915050565b6101288054611b2f90613ce1565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5b90613ce1565b8015611ba85780601f10611b7d57610100808354040283529160200191611ba8565b820191906000526020600020905b815481529060010190602001808311611b8b57829003601f168201915b505050505081565b611bb861299a565b80611bc1610a23565b1115611c085760405162461bcd60e51b8152602060048201526016602482015275546f74616c20537570706c7920457863656564696e6760501b60448201526064016109fd565b61012a55565b60006001600160a01b038216611c37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611c6461299a565b611c6e6000612d7b565b565b60006001600160a01b038216611c985760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610127602052604090205490565b60006001600160a01b038216611cdd5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610122602052604090205490565b611d0261299a565b828410611d215760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611d339190613c9e565b811115611d525760405162461bcd60e51b81526004016109fd90613b7d565b6101199390935561011a9190915561011b5561011c55565b611d7261299a565b828410611d915760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611da39190613c9e565b811115611dc25760405162461bcd60e51b81526004016109fd90613b7d565b61011493909355610115919091556101165561011755565b60606068805461088090613ce1565b611df161299a565b828410611e105760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611e229190613c9e565b811115611e415760405162461bcd60e51b81526004016109fd90613b7d565b61010f93909355610110919091556101115561011255565b6001600160a01b038216331415611e835760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061086b82612dcd565b611f0261299a565b6001600160a01b038116611f585760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420416464726573732050726f7669646564000000000000000060448201526064016109fd565b61012980546001600160a01b0319166001600160a01b0392909216919091179055565b611f8361299a565b61012a54611f8f610a23565b611f999084613c86565b1115611fda5760405162461bcd60e51b815260206004820152601060248201526f457863656564696e6720737570706c7960801b60448201526064016109fd565b61012b5482111561202d5760405162461bcd60e51b815260206004820152601b60248201527f457863656564696e672061697264726f7020616c6c6f746d656e74000000000060448201526064016109fd565b8161012b60008282546120409190613c9e565b90915550610c7990508183612678565b61205861299a565b8284106120775760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a546120899190613c9e565b8111156120a85760405162461bcd60e51b81526004016109fd90613b7d565b61011e9390935561011f919091556101205561012155565b6120cb8484846127af565b6001600160a01b0383163b151580156120ed57506120eb84848484612de9565b155b1561210b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61211961299a565b8284106121385760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a5461214a9190613c9e565b8111156121695760405162461bcd60e51b81526004016109fd90613b7d565b61012393909355610124919091556101255561012655565b606061218c82612589565b6121a957604051630a14c4b560e41b815260040160405180910390fd5b60006121b3612ee1565b90508051600014156121d457604051806020016040528060008152506121ff565b806121de84612ef1565b6040516020016121ef929190613a36565b6040516020818303038152906040525b9392505050565b61220e61299a565b61012b55565b60006001600160a01b03821661223c5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610118602052604090205490565b60006001600160a01b0382166122815760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610109602052604090205490565b6122a661299a565b6001600160a01b03811661230b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fd565b610e8581612d7b565b61231c61261e565b806000811161233d5760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a5461234f9190613c9e565b612357610a23565b6123619083613c86565b111561237f5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b031661239584611eef565b6001600160a01b0316146123bb5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b031633146123e45760405162461bcd60e51b81526004016109fd90613b13565b82602001516002146124085760405162461bcd60e51b81526004016109fd90613bfa565b61010a544211801561241d575061010b544211155b61245f5760405162461bcd60e51b8152602060048201526013602482015272574c322073616c65206e6f742061637469766560681b60448201526064016109fd565b61010c5433600090815261010e602052604090205461247e9084613c86565b11156124c45760405162461bcd60e51b8152602060048201526015602482015274574c322063616e6e6f7420636c61696d206d6f726560581b60448201526064016109fd565b61010d548211156125095760405162461bcd60e51b815260206004820152600f60248201526e2ba6191039bab838363c9037bb32b960891b60448201526064016109fd565b33600090815261010e602052604081208054849290612529908490613c86565b909155505061010d8054839190600090611597908490613c9e565b60006001600160a01b03821661256c5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b0316600090815261010e602052604090205490565b60008160011115801561259d575060655482105b801561086b575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260d35414156126715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109fd565b600260d355565b6065546001600160a01b0383166126a157604051622e076360e81b815260040160405180910390fd5b816126bf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452606990925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561275b5750606555505050565b600160d355565b60006127ba82612c54565b9050836001600160a01b031681600001516001600160a01b0316146127f15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061280f575061280f85336107b8565b8061282a57503361281f84610903565b6001600160a01b0316145b90508061284a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661287157604051633a954ecd60e21b815260040160405180910390fd5b61287d600084876125c2565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661295157606554821461295157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b08565b606d546001600160a01b03163314611c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109fd565b600054610100900460ff16612a1b5760405162461bcd60e51b81526004016109fd90613c3b565b611c6e612f8d565b600054610100900460ff16612a4a5760405162461bcd60e51b81526004016109fd90613c3b565b611c6e612fbd565b600054610100900460ff1615808015612a725750600054600160ff909116105b80612a8c5750303b158015612a8c575060005460ff166001145b612aa85760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff191660011790558015612acb576000805461ff0019166101001790555b612ad3612fe4565b612adb612fe4565b8251612aee906067906020860190613507565b508151612b02906068906020850190613507565b50600160655580156109d0576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b600054610100900460ff1615808015612b725750600054600160ff909116105b80612b8c5750303b158015612b8c575060005460ff166001145b612ba85760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff191660011790558015612bcb576000805461ff0019166101001790555b612c0c604051806040016040528060068152602001652537bb3cb73760d11b815250604051806040016040528060018152602001603160f81b81525061300b565b8015610e85576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b60408051606081018252600080825260208201819052918101919091528180600111158015612c84575060655481105b15612d6257600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612d605780516001600160a01b031615612cf7579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612d5b579392505050565b612cf7565b505b604051636f96cda160e11b815260040160405180910390fd5b606d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612dd98361303c565b90506121ff8184604001516130b3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612e1e903390899088908890600401613a65565b602060405180830381600087803b158015612e3857600080fd5b505af1925050508015612e68575060408051601f3d908101601f19168201909252612e659181019061383b565b60015b612ec3573d808015612e96576040519150601f19603f3d011682016040523d82523d6000602084013e612e9b565b606091505b508051612ebb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060610128805461088090613ce1565b60606000612efe836130cf565b60010190506000816001600160401b03811115612f1d57612f1d613d48565b6040519080825280601f01601f191660200182016040528015612f47576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612f8057612f85565b612f51565b509392505050565b600054610100900460ff16612fb45760405162461bcd60e51b81526004016109fd90613c3b565b611c6e33612d7b565b600054610100900460ff166127a85760405162461bcd60e51b81526004016109fd90613c3b565b600054610100900460ff16611c6e5760405162461bcd60e51b81526004016109fd90613c3b565b600054610100900460ff166130325760405162461bcd60e51b81526004016109fd90613c3b565b610c7982826131a7565b600061086b7ffdd4cb02711acab264774ef11d46e22f150fabba06eddda945f4a080ba769aea83600001518460200151604051602001613098939291909283526001600160a01b03919091166020830152604082015260600190565b604051602081830303815290604052805190602001206131e8565b60008060006130c28585613236565b91509150612f858161327c565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061310e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061313a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061315857662386f26fc10000830492506010015b6305f5e1008310613170576305f5e100830492506008015b612710831061318457612710830492506004015b60648310613196576064830492506002015b600a831061086b5760010192915050565b600054610100900460ff166131ce5760405162461bcd60e51b81526004016109fd90613c3b565b815160209283012081519190920120609f9190915560a055565b600061086b6131f56133ca565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561326d5760208301516040840151606085015160001a61326187828585613443565b94509450505050613275565b506000905060025b9250929050565b600081600481111561329057613290613d32565b14156132995750565b60018160048111156132ad576132ad613d32565b14156132fb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109fd565b600281600481111561330f5761330f613d32565b141561335d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109fd565b600381600481111561337157613371613d32565b1415610e855760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109fd565b600061343e7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6133f9609f5490565b60a080546040805160208082019690965280820194909452606084019190915246608084015230838301528051808403909201825260c0909201909152805191012090565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561347a57506000905060036134fe565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156134ce573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134f7576000600192509250506134fe565b9150600090505b94509492505050565b82805461351390613ce1565b90600052602060002090601f016020900481019282613535576000855561357b565b82601f1061354e57805160ff191683800117855561357b565b8280016001018555821561357b579182015b8281111561357b578251825591602001919060010190613560565b5061358792915061358b565b5090565b5b80821115613587576000815560010161358c565b80356001600160a01b03811681146135b757600080fd5b919050565b600082601f8301126135cd57600080fd5b81356001600160401b03808211156135e7576135e7613d48565b604051601f8301601f19908116603f0116810190828211818310171561360f5761360f613d48565b8160405283815286602085880101111561362857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006060828403121561365a57600080fd5b604051606081016001600160401b03828210818311171561367d5761367d613d48565b8160405282935061368d856135a0565b83526020850135602084015260408501359150808211156136ad57600080fd5b506136ba858286016135bc565b6040830152505092915050565b6000602082840312156136d957600080fd5b6121ff826135a0565b600080604083850312156136f557600080fd5b6136fe836135a0565b915061370c602084016135a0565b90509250929050565b60008060006060848603121561372a57600080fd5b613733846135a0565b9250613741602085016135a0565b9150604084013590509250925092565b6000806000806080858703121561376757600080fd5b613770856135a0565b935061377e602086016135a0565b92506040850135915060608501356001600160401b038111156137a057600080fd5b6137ac878288016135bc565b91505092959194509250565b600080604083850312156137cb57600080fd5b6137d4836135a0565b9150602083013580151581146137e957600080fd5b809150509250929050565b6000806040838503121561380757600080fd5b613810836135a0565b946020939093013593505050565b60006020828403121561383057600080fd5b81356121ff81613d5e565b60006020828403121561384d57600080fd5b81516121ff81613d5e565b60006020828403121561386a57600080fd5b81356001600160401b0381111561388057600080fd5b612ed9848285016135bc565b600080600080608085870312156138a257600080fd5b84356001600160401b03808211156138b957600080fd5b6138c5888389016135bc565b955060208701359150808211156138db57600080fd5b6138e7888389016135bc565b945060408701359150808211156138fd57600080fd5b5061390a878288016135bc565b925050613919606086016135a0565b905092959194509250565b60006020828403121561393657600080fd5b81356001600160401b0381111561394c57600080fd5b612ed984828501613648565b6000806040838503121561396b57600080fd5b82356001600160401b0381111561398157600080fd5b61398d85828601613648565b95602094909401359450505050565b6000602082840312156139ae57600080fd5b5035919050565b600080604083850312156139c857600080fd5b8235915061370c602084016135a0565b600080600080608085870312156139ee57600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452613a22816020860160208601613cb5565b601f01601f19169290920160200192915050565b60008351613a48818460208801613cb5565b835190830190613a5c818360208801613cb5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a9890830184613a0a565b9695505050505050565b6020815260006121ff6020830184613a0a565b60208082526018908201527f496e76616c696420616464726573732070726f76696465640000000000000000604082015260600190565b6020808252600d908201526c496e76616c69642074696d657360981b604082015260600190565b60208082526007908201526610a9b2b73232b960c91b604082015260600190565b6020808252600e908201526d125b9d985b1a5908105b5bdd5b9d60921b604082015260600190565b60208082526007908201526610a9b4b3b732b960c91b604082015260600190565b60208082526015908201527417db585e105d985a5b18589b19481a5b9d985b1a59605a1b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526005908201526408531a5cdd60da1b604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115613c9957613c99613d1c565b500190565b600082821015613cb057613cb0613d1c565b500390565b60005b83811015613cd0578181015183820152602001613cb8565b8381111561210b5750506000910152565b600181811c90821680613cf557607f821691505b60208210811415613d1657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8557600080fdfea264697066735822122021c106c63f0910f16a1c46a9fe644f66d02e21108eaa9449062aa051ff8d09f064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103785760003560e01c8063731e44bf116101d3578063b0a015af11610104578063d5abeb01116100a2578063e985e9c51161007c578063e985e9c5146107aa578063f2fde38b146107e6578063fa835f04146107f9578063fe9083881461080c57600080fd5b8063d5abeb0114610773578063d67c1a181461077d578063e684797d1461079757600080fd5b8063c87b56dd116100de578063c87b56dd14610720578063ca40012614610733578063cade923d14610746578063cd37120b1461076057600080fd5b8063b0a015af146106e7578063b88d4fde146106fa578063c27ce0251461070d57600080fd5b806395d89b4111610171578063a461185d1161014b578063a461185d1461069a578063a83e52b4146106ad578063aae25051146106c0578063aed38015146106d457600080fd5b806395d89b411461066c5780639c2ef8ac14610674578063a22cb4651461068757600080fd5b806385696f90116101ad57806385696f901461061b5780638a8c2a971461062e5780638da5cb5b146106485780638fcfb3ae1461065957600080fd5b8063731e44bf146105db57806374752071146105f557806375cec1cd1461060857600080fd5b806342f08530116102ad57806355f804b31161024b5780636c0360eb116102255780636c0360eb146105a55780636f8b44b0146105ad57806370a08231146105c0578063715018a6146105d357600080fd5b806355f804b31461056c5780635c6d8da11461057f5780636352211e1461059257600080fd5b80634c9ec0db116102875780634c9ec0db146105195780634cab00901461052c5780634dc86d5714610546578063529a0bef1461055957600080fd5b806342f08530146104e9578063486877d4146104fc5780634c30482a1461050f57600080fd5b806323b872dd1161031a5780633029b024116102f45780633029b0241461046f5780633fd14ec6146104825780633fd3f824146104bc57806342842e0e146104d657600080fd5b806323b872dd146104365780632db11544146104495780632ff2fe231461045c57600080fd5b8063095ea7b311610356578063095ea7b3146103e557806317e3d5b2146103fa57806318160ddd1461041b5780631d0655851461042357600080fd5b806301ffc9a71461037d57806306fdde03146103a5578063081812fc146103ba575b600080fd5b61039061038b36600461381e565b61081f565b60405190151581526020015b60405180910390f35b6103ad610871565b60405161039c9190613aa2565b6103cd6103c836600461399c565b610903565b6040516001600160a01b03909116815260200161039c565b6103f86103f33660046137f4565b610947565b005b61040d6104083660046136c7565b6109d5565b60405190815260200161039c565b61040d610a23565b6103f8610431366004613958565b610a31565b6103f8610444366004613715565b610c7d565b6103f861045736600461399c565b610c88565b6103f861046a366004613958565b610e88565b6103f861047d3660046139d8565b6110b4565b61011e5461011f54610120546101215461049c9392919084565b60408051948552602085019390935291830152606082015260800161039c565b61010a5461010b5461010c5461010d5461049c9392919084565b6103f86104e4366004613715565b611124565b6103f86104f7366004613958565b61113f565b6103f861050a366004613958565b61136b565b61040d61012b5481565b6103f8610527366004613958565b6115a7565b61010f5461011054610111546101125461049c9392919084565b6103f86105543660046139d8565b6117d3565b61040d6105673660046136c7565b611843565b6103f861057a366004613858565b611888565b6103f861058d36600461388c565b6118f5565b6103cd6105a036600461399c565b611b0f565b6103ad611b21565b6103f86105bb36600461399c565b611bb0565b61040d6105ce3660046136c7565b611c0e565b6103f8611c5c565b6101235461012454610125546101265461049c9392919084565b61040d6106033660046136c7565b611c70565b61040d6106163660046136c7565b611cb5565b6103f86106293660046139d8565b611cfa565b6101055461010654610107546101085461049c9392919084565b606d546001600160a01b03166103cd565b6103f86106673660046139d8565b611d6a565b6103ad611dda565b6103f86106823660046139d8565b611de9565b6103f86106953660046137b8565b611e59565b6103cd6106a8366004613924565b611eef565b6103f86106bb3660046136c7565b611efa565b610129546103cd906001600160a01b031681565b6103f86106e23660046139b5565b611f7b565b6103f86106f53660046139d8565b612050565b6103f8610708366004613751565b6120c0565b6103f861071b3660046139d8565b612111565b6103ad61072e36600461399c565b612181565b6103f861074136600461399c565b612206565b6101145461011554610116546101175461049c9392919084565b61040d61076e3660046136c7565b612214565b61040d61012a5481565b6101195461011a5461011b5461011c5461049c9392919084565b61040d6107a53660046136c7565b612259565b6103906107b83660046136e2565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b6103f86107f43660046136c7565b61229e565b6103f8610807366004613958565b612314565b61040d61081a3660046136c7565b612544565b60006001600160e01b031982166380ac58cd60e01b148061085057506001600160e01b03198216635b5e139f60e01b145b8061086b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606067805461088090613ce1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90613ce1565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b600061090e82612589565b61092b576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b600061095282611b0f565b9050806001600160a01b0316836001600160a01b031614156109875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a757506109a581336107b8565b155b156109c5576040516367d9dca160e11b815260040160405180910390fd5b6109d08383836125c2565b505050565b60006001600160a01b038216610a065760405162461bcd60e51b81526004016109fd90613ab5565b60405180910390fd5b506001600160a01b03166000908152610113602052604090205490565b606654606554036000190190565b610a3961261e565b8060008111610a5a5760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610a6c9190613c9e565b610a74610a23565b610a7e9083613c86565b1115610a9c5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b0316610ab284611eef565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b03163314610b015760405162461bcd60e51b81526004016109fd90613b13565b8260200151600614610b255760405162461bcd60e51b81526004016109fd90613bfa565b61011e5442118015610b3a575061011f544211155b610b7c5760405162461bcd60e51b8152602060048201526013602482015272574c362073616c65206e6f742061637469766560681b60448201526064016109fd565b610120543360009081526101226020526040902054610b9b9084613c86565b1115610be05760405162461bcd60e51b8152602060048201526014602482015273574c362063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b61012154821115610c225760405162461bcd60e51b815260206004820152600c60248201526b15d30d881cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610122602052604081208054849290610c42908490613c86565b90915550506101218054839190600090610c5d908490613c9e565b90915550508251610c6e9083612678565b50610c79600160d355565b5050565b6109d08383836127af565b610c9061261e565b8060008111610cb15760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610cc39190613c9e565b610ccb610a23565b610cd59083613c86565b1115610cf35760405162461bcd60e51b81526004016109fd90613c19565b333214610d325760405162461bcd60e51b815260206004820152600d60248201526c5042206f6e6c7920757365727360981b60448201526064016109fd565b6101235442118015610d475750610124544211155b610d885760405162461bcd60e51b815260206004820152601260248201527150422073616c65206e6f742061637469766560701b60448201526064016109fd565b610125543360009081526101276020526040902054610da79084613c86565b1115610deb5760405162461bcd60e51b815260206004820152601360248201527250422063616e6e6f74206d696e74206d6f726560681b60448201526064016109fd565b61012654821115610e2f5760405162461bcd60e51b815260206004820152600e60248201526d28211039bab838363c9037bb32b960911b60448201526064016109fd565b336000908152610127602052604081208054849290610e4f908490613c86565b90915550506101268054839190600090610e6a908490613c9e565b90915550610e7a90503383612678565b50610e85600160d355565b50565b610e9061261e565b8060008111610eb15760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a54610ec39190613c9e565b610ecb610a23565b610ed59083613c86565b1115610ef35760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b0316610f0984611eef565b6001600160a01b031614610f2f5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b03163314610f585760405162461bcd60e51b81526004016109fd90613b13565b8260200151600314610f7c5760405162461bcd60e51b81526004016109fd90613bfa565b61010f5442118015610f915750610110544211155b610fd35760405162461bcd60e51b8152602060048201526013602482015272574c332073616c65206e6f742061637469766560681b60448201526064016109fd565b610111543360009081526101136020526040902054610ff29084613c86565b11156110375760405162461bcd60e51b8152602060048201526014602482015273574c332063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b610112548211156110795760405162461bcd60e51b815260206004820152600c60248201526b15d30cc81cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610113602052604081208054849290611099908490613c86565b90915550506101128054839190600090610c5d908490613c9e565b6110bc61299a565b8284106110db5760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a546110ed9190613c9e565b81111561110c5760405162461bcd60e51b81526004016109fd90613b7d565b61010593909355610106919091556101075561010855565b6109d0838383604051806020016040528060008152506120c0565b61114761261e565b80600081116111685760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a5461117a9190613c9e565b611182610a23565b61118c9083613c86565b11156111aa5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b03166111c084611eef565b6001600160a01b0316146111e65760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b0316331461120f5760405162461bcd60e51b81526004016109fd90613b13565b82602001516004146112335760405162461bcd60e51b81526004016109fd90613bfa565b61011454421180156112485750610115544211155b61128a5760405162461bcd60e51b8152602060048201526013602482015272574c342073616c65206e6f742061637469766560681b60448201526064016109fd565b6101165433600090815261011860205260409020546112a99084613c86565b11156112ee5760405162461bcd60e51b8152602060048201526014602482015273574c342063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b610117548211156113305760405162461bcd60e51b815260206004820152600c60248201526b15d30d081cdbdb19081bdd5d60a21b60448201526064016109fd565b336000908152610118602052604081208054849290611350908490613c86565b90915550506101178054839190600090610c5d908490613c9e565b61137361261e565b80600081116113945760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a546113a69190613c9e565b6113ae610a23565b6113b89083613c86565b11156113d65760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b03166113ec84611eef565b6001600160a01b0316146114125760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b0316331461143b5760405162461bcd60e51b81526004016109fd90613b13565b826020015160011461145f5760405162461bcd60e51b81526004016109fd90613bfa565b61010554421180156114745750610106544211155b6114b65760405162461bcd60e51b8152602060048201526013602482015272574c312073616c65206e6f742061637469766560681b60448201526064016109fd565b6101075433600090815261010960205260409020546114d59084613c86565b111561151a5760405162461bcd60e51b8152602060048201526014602482015273574c312063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b6101085482111561155c5760405162461bcd60e51b815260206004820152600c60248201526b15d30c481cdbdb19081bdd5d60a21b60448201526064016109fd565b33600090815261010960205260408120805484929061157c908490613c86565b90915550506101088054839190600090611597908490613c9e565b90915550610c6e90503383612678565b6115af61261e565b80600081116115d05760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a546115e29190613c9e565b6115ea610a23565b6115f49083613c86565b11156116125760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b031661162884611eef565b6001600160a01b03161461164e5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b031633146116775760405162461bcd60e51b81526004016109fd90613b13565b826020015160051461169b5760405162461bcd60e51b81526004016109fd90613bfa565b61011954421180156116b0575061011a544211155b6116f25760405162461bcd60e51b8152602060048201526013602482015272574c352073616c65206e6f742061637469766560681b60448201526064016109fd565b61011b5433600090815261011d60205260409020546117119084613c86565b11156117565760405162461bcd60e51b8152602060048201526014602482015273574c352063616e6e6f74206d696e74206d6f726560601b60448201526064016109fd565b61011c548211156117985760405162461bcd60e51b815260206004820152600c60248201526b15d30d481cdbdb19081bdd5d60a21b60448201526064016109fd565b33600090815261011d6020526040812080548492906117b8908490613c86565b909155505061011c8054839190600090610c5d908490613c9e565b6117db61299a565b8284106117fa5760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a5461180c9190613c9e565b81111561182b5760405162461bcd60e51b81526004016109fd90613b7d565b61010a9390935561010b9190915561010c5561010d55565b60006001600160a01b03821661186b5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b0316600090815261011d602052604090205490565b61189061299a565b60008151116118e15760405162461bcd60e51b815260206004820152601960248201527f496e76616c69642042617365205552492050726f76696465640000000000000060448201526064016109fd565b8051610c7990610128906020840190613507565b600054610100900460ff16158080156119155750600054600160ff909116105b8061192f5750303b15801561192f575060005460ff166001145b61194b5760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff19166001179055801561196e576000805461ff0019166101001790555b6119766129f4565b61197e612a23565b6119888585612a52565b611990612b52565b82516119a490610128906020860190613507565b5061012980546001600160a01b0319166001600160a01b0384161790556103e861012a55606461012b5563633d55a06101058190556119e590613840613c86565b610106819055600161010755604a610108556101055461010a81905561010b829055600261010c55602261010d5561010f819055610110829055600361011155600f61011255610114819055610115829055600461011655601c610117556101195561011a819055600561011b55602361011c5561011e819055611a6b9061a8c0613c86565b61011f5560026101205561012b5461012a54611a879190613c9e565b6101215561011f54610123819055611aa2906283d600613c86565b6101245560026101255561012b5461012a54611abe9190613c9e565b610126558015611b08576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b6000611b1a82612c54565b5192915050565b6101288054611b2f90613ce1565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5b90613ce1565b8015611ba85780601f10611b7d57610100808354040283529160200191611ba8565b820191906000526020600020905b815481529060010190602001808311611b8b57829003601f168201915b505050505081565b611bb861299a565b80611bc1610a23565b1115611c085760405162461bcd60e51b8152602060048201526016602482015275546f74616c20537570706c7920457863656564696e6760501b60448201526064016109fd565b61012a55565b60006001600160a01b038216611c37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611c6461299a565b611c6e6000612d7b565b565b60006001600160a01b038216611c985760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610127602052604090205490565b60006001600160a01b038216611cdd5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610122602052604090205490565b611d0261299a565b828410611d215760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611d339190613c9e565b811115611d525760405162461bcd60e51b81526004016109fd90613b7d565b6101199390935561011a9190915561011b5561011c55565b611d7261299a565b828410611d915760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611da39190613c9e565b811115611dc25760405162461bcd60e51b81526004016109fd90613b7d565b61011493909355610115919091556101165561011755565b60606068805461088090613ce1565b611df161299a565b828410611e105760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a54611e229190613c9e565b811115611e415760405162461bcd60e51b81526004016109fd90613b7d565b61010f93909355610110919091556101115561011255565b6001600160a01b038216331415611e835760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061086b82612dcd565b611f0261299a565b6001600160a01b038116611f585760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420416464726573732050726f7669646564000000000000000060448201526064016109fd565b61012980546001600160a01b0319166001600160a01b0392909216919091179055565b611f8361299a565b61012a54611f8f610a23565b611f999084613c86565b1115611fda5760405162461bcd60e51b815260206004820152601060248201526f457863656564696e6720737570706c7960801b60448201526064016109fd565b61012b5482111561202d5760405162461bcd60e51b815260206004820152601b60248201527f457863656564696e672061697264726f7020616c6c6f746d656e74000000000060448201526064016109fd565b8161012b60008282546120409190613c9e565b90915550610c7990508183612678565b61205861299a565b8284106120775760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a546120899190613c9e565b8111156120a85760405162461bcd60e51b81526004016109fd90613b7d565b61011e9390935561011f919091556101205561012155565b6120cb8484846127af565b6001600160a01b0383163b151580156120ed57506120eb84848484612de9565b155b1561210b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61211961299a565b8284106121385760405162461bcd60e51b81526004016109fd90613aec565b61012b5461012a5461214a9190613c9e565b8111156121695760405162461bcd60e51b81526004016109fd90613b7d565b61012393909355610124919091556101255561012655565b606061218c82612589565b6121a957604051630a14c4b560e41b815260040160405180910390fd5b60006121b3612ee1565b90508051600014156121d457604051806020016040528060008152506121ff565b806121de84612ef1565b6040516020016121ef929190613a36565b6040516020818303038152906040525b9392505050565b61220e61299a565b61012b55565b60006001600160a01b03821661223c5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610118602052604090205490565b60006001600160a01b0382166122815760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b03166000908152610109602052604090205490565b6122a661299a565b6001600160a01b03811661230b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fd565b610e8581612d7b565b61231c61261e565b806000811161233d5760405162461bcd60e51b81526004016109fd90613b34565b61012b5461012a5461234f9190613c9e565b612357610a23565b6123619083613c86565b111561237f5760405162461bcd60e51b81526004016109fd90613c19565b610129546001600160a01b031661239584611eef565b6001600160a01b0316146123bb5760405162461bcd60e51b81526004016109fd90613b5c565b82516001600160a01b031633146123e45760405162461bcd60e51b81526004016109fd90613b13565b82602001516002146124085760405162461bcd60e51b81526004016109fd90613bfa565b61010a544211801561241d575061010b544211155b61245f5760405162461bcd60e51b8152602060048201526013602482015272574c322073616c65206e6f742061637469766560681b60448201526064016109fd565b61010c5433600090815261010e602052604090205461247e9084613c86565b11156124c45760405162461bcd60e51b8152602060048201526015602482015274574c322063616e6e6f7420636c61696d206d6f726560581b60448201526064016109fd565b61010d548211156125095760405162461bcd60e51b815260206004820152600f60248201526e2ba6191039bab838363c9037bb32b960891b60448201526064016109fd565b33600090815261010e602052604081208054849290612529908490613c86565b909155505061010d8054839190600090611597908490613c9e565b60006001600160a01b03821661256c5760405162461bcd60e51b81526004016109fd90613ab5565b506001600160a01b0316600090815261010e602052604090205490565b60008160011115801561259d575060655482105b801561086b575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600260d35414156126715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109fd565b600260d355565b6065546001600160a01b0383166126a157604051622e076360e81b815260040160405180910390fd5b816126bf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383166000818152606a6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452606990925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561275b5750606555505050565b600160d355565b60006127ba82612c54565b9050836001600160a01b031681600001516001600160a01b0316146127f15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061280f575061280f85336107b8565b8061282a57503361281f84610903565b6001600160a01b0316145b90508061284a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661287157604051633a954ecd60e21b815260040160405180910390fd5b61287d600084876125c2565b6001600160a01b038581166000908152606a60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661295157606554821461295157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b08565b606d546001600160a01b03163314611c6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109fd565b600054610100900460ff16612a1b5760405162461bcd60e51b81526004016109fd90613c3b565b611c6e612f8d565b600054610100900460ff16612a4a5760405162461bcd60e51b81526004016109fd90613c3b565b611c6e612fbd565b600054610100900460ff1615808015612a725750600054600160ff909116105b80612a8c5750303b158015612a8c575060005460ff166001145b612aa85760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff191660011790558015612acb576000805461ff0019166101001790555b612ad3612fe4565b612adb612fe4565b8251612aee906067906020860190613507565b508151612b02906068906020850190613507565b50600160655580156109d0576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050565b600054610100900460ff1615808015612b725750600054600160ff909116105b80612b8c5750303b158015612b8c575060005460ff166001145b612ba85760405162461bcd60e51b81526004016109fd90613bac565b6000805460ff191660011790558015612bcb576000805461ff0019166101001790555b612c0c604051806040016040528060068152602001652537bb3cb73760d11b815250604051806040016040528060018152602001603160f81b81525061300b565b8015610e85576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b60408051606081018252600080825260208201819052918101919091528180600111158015612c84575060655481105b15612d6257600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612d605780516001600160a01b031615612cf7579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612d5b579392505050565b612cf7565b505b604051636f96cda160e11b815260040160405180910390fd5b606d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080612dd98361303c565b90506121ff8184604001516130b3565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612e1e903390899088908890600401613a65565b602060405180830381600087803b158015612e3857600080fd5b505af1925050508015612e68575060408051601f3d908101601f19168201909252612e659181019061383b565b60015b612ec3573d808015612e96576040519150601f19603f3d011682016040523d82523d6000602084013e612e9b565b606091505b508051612ebb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060610128805461088090613ce1565b60606000612efe836130cf565b60010190506000816001600160401b03811115612f1d57612f1d613d48565b6040519080825280601f01601f191660200182016040528015612f47576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612f8057612f85565b612f51565b509392505050565b600054610100900460ff16612fb45760405162461bcd60e51b81526004016109fd90613c3b565b611c6e33612d7b565b600054610100900460ff166127a85760405162461bcd60e51b81526004016109fd90613c3b565b600054610100900460ff16611c6e5760405162461bcd60e51b81526004016109fd90613c3b565b600054610100900460ff166130325760405162461bcd60e51b81526004016109fd90613c3b565b610c7982826131a7565b600061086b7ffdd4cb02711acab264774ef11d46e22f150fabba06eddda945f4a080ba769aea83600001518460200151604051602001613098939291909283526001600160a01b03919091166020830152604082015260600190565b604051602081830303815290604052805190602001206131e8565b60008060006130c28585613236565b91509150612f858161327c565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061310e5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061313a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061315857662386f26fc10000830492506010015b6305f5e1008310613170576305f5e100830492506008015b612710831061318457612710830492506004015b60648310613196576064830492506002015b600a831061086b5760010192915050565b600054610100900460ff166131ce5760405162461bcd60e51b81526004016109fd90613c3b565b815160209283012081519190920120609f9190915560a055565b600061086b6131f56133ca565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561326d5760208301516040840151606085015160001a61326187828585613443565b94509450505050613275565b506000905060025b9250929050565b600081600481111561329057613290613d32565b14156132995750565b60018160048111156132ad576132ad613d32565b14156132fb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109fd565b600281600481111561330f5761330f613d32565b141561335d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109fd565b600381600481111561337157613371613d32565b1415610e855760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109fd565b600061343e7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6133f9609f5490565b60a080546040805160208082019690965280820194909452606084019190915246608084015230838301528051808403909201825260c0909201909152805191012090565b905090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561347a57506000905060036134fe565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156134ce573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166134f7576000600192509250506134fe565b9150600090505b94509492505050565b82805461351390613ce1565b90600052602060002090601f016020900481019282613535576000855561357b565b82601f1061354e57805160ff191683800117855561357b565b8280016001018555821561357b579182015b8281111561357b578251825591602001919060010190613560565b5061358792915061358b565b5090565b5b80821115613587576000815560010161358c565b80356001600160a01b03811681146135b757600080fd5b919050565b600082601f8301126135cd57600080fd5b81356001600160401b03808211156135e7576135e7613d48565b604051601f8301601f19908116603f0116810190828211818310171561360f5761360f613d48565b8160405283815286602085880101111561362857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006060828403121561365a57600080fd5b604051606081016001600160401b03828210818311171561367d5761367d613d48565b8160405282935061368d856135a0565b83526020850135602084015260408501359150808211156136ad57600080fd5b506136ba858286016135bc565b6040830152505092915050565b6000602082840312156136d957600080fd5b6121ff826135a0565b600080604083850312156136f557600080fd5b6136fe836135a0565b915061370c602084016135a0565b90509250929050565b60008060006060848603121561372a57600080fd5b613733846135a0565b9250613741602085016135a0565b9150604084013590509250925092565b6000806000806080858703121561376757600080fd5b613770856135a0565b935061377e602086016135a0565b92506040850135915060608501356001600160401b038111156137a057600080fd5b6137ac878288016135bc565b91505092959194509250565b600080604083850312156137cb57600080fd5b6137d4836135a0565b9150602083013580151581146137e957600080fd5b809150509250929050565b6000806040838503121561380757600080fd5b613810836135a0565b946020939093013593505050565b60006020828403121561383057600080fd5b81356121ff81613d5e565b60006020828403121561384d57600080fd5b81516121ff81613d5e565b60006020828403121561386a57600080fd5b81356001600160401b0381111561388057600080fd5b612ed9848285016135bc565b600080600080608085870312156138a257600080fd5b84356001600160401b03808211156138b957600080fd5b6138c5888389016135bc565b955060208701359150808211156138db57600080fd5b6138e7888389016135bc565b945060408701359150808211156138fd57600080fd5b5061390a878288016135bc565b925050613919606086016135a0565b905092959194509250565b60006020828403121561393657600080fd5b81356001600160401b0381111561394c57600080fd5b612ed984828501613648565b6000806040838503121561396b57600080fd5b82356001600160401b0381111561398157600080fd5b61398d85828601613648565b95602094909401359450505050565b6000602082840312156139ae57600080fd5b5035919050565b600080604083850312156139c857600080fd5b8235915061370c602084016135a0565b600080600080608085870312156139ee57600080fd5b5050823594602084013594506040840135936060013592509050565b60008151808452613a22816020860160208601613cb5565b601f01601f19169290920160200192915050565b60008351613a48818460208801613cb5565b835190830190613a5c818360208801613cb5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a9890830184613a0a565b9695505050505050565b6020815260006121ff6020830184613a0a565b60208082526018908201527f496e76616c696420616464726573732070726f76696465640000000000000000604082015260600190565b6020808252600d908201526c496e76616c69642074696d657360981b604082015260600190565b60208082526007908201526610a9b2b73232b960c91b604082015260600190565b6020808252600e908201526d125b9d985b1a5908105b5bdd5b9d60921b604082015260600190565b60208082526007908201526610a9b4b3b732b960c91b604082015260600190565b60208082526015908201527417db585e105d985a5b18589b19481a5b9d985b1a59605a1b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526005908201526408531a5cdd60da1b604082015260600190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115613c9957613c99613d1c565b500190565b600082821015613cb057613cb0613d1c565b500390565b60005b83811015613cd0578181015183820152602001613cb8565b8381111561210b5750506000910152565b600181811c90821680613cf557607f821691505b60208210811415613d1657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8557600080fdfea264697066735822122021c106c63f0910f16a1c46a9fe644f66d02e21108eaa9449062aa051ff8d09f064736f6c63430008070033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.