ETH Price: $3,456.87 (-0.76%)
Gas: 3 Gwei

Token

Bobone (XMB)
 

Overview

Max Total Supply

2,089 XMB

Holders

860

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 XMB
0x9f432a2964351a7830bd9ea10f65107677d73e04
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XMB

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

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

pragma solidity 0.8.8;

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

//-----------------------------------------------------------------------------------------------------
// ___    ___                                                                                     
// |\  \  /  /|                                                                                    
// \ \  \/  / /                                                                                    
//  \ \    / /                                                                                     
//   /     \/                                                                                      
//  /  /\   \                                                                                      
// /__/ /\ __\                                                                                     
// |__|/ \|__|                                                                                     
                                                                                                                                                                                          
//  _____ ______   ________  ________   ________  _________  _______   ________  ________          
// |\   _ \  _   \|\   __  \|\   ___  \|\   ____\|\___   ___\\  ___ \ |\   __  \|\   ____\         
// \ \  \\\__\ \  \ \  \|\  \ \  \\ \  \ \  \___|\|___ \  \_\ \   __/|\ \  \|\  \ \  \___|_        
//  \ \  \\|__| \  \ \  \\\  \ \  \\ \  \ \_____  \   \ \  \ \ \  \_|/_\ \   _  _\ \_____  \       
//   \ \  \    \ \  \ \  \\\  \ \  \\ \  \|____|\  \   \ \  \ \ \  \_|\ \ \  \\  \\|____|\  \      
//    \ \__\    \ \__\ \_______\ \__\\ \__\____\_\  \   \ \__\ \ \_______\ \__\\ _\ ____\_\  \     
//     \|__|     \|__|\|_______|\|__| \|__|\_________\   \|__|  \|_______|\|__|\|__|\_________\    
//                                        \|_________|                             \|_________|    
                                                                                                                                                                                             
//  ________  ________  ________                                                                   
// |\   __  \|\   __  \|\   __  \                                                                  
// \ \  \|\ /\ \  \|\  \ \  \|\  \                                                                 
//  \ \   __  \ \   __  \ \   _  _\                                                                
//   \ \  \|\  \ \  \ \  \ \  \\  \|                                                               
//    \ \_______\ \__\ \__\ \__\\ _\                                                               
//     \|_______|\|__|\|__|\|__|\|__|                                                              
//
//------------------------------------------------------------------------------------------------------------                                                                              
                                                                                                
                                                                                                

contract XMB is ERC721A, Ownable {
    enum Status {
        Pending,
        EarlyBirdSale, 
        PreSale,
        PublicSale,
        Finished
    }

    Status public status;
    bytes32 public root;
    uint256 public tokensReserved;
    uint256 public PRICE;
    uint96 public royaltyNumerator;
    uint256 public immutable maxEarlybirdMint;
    uint256 public immutable maxPresaleMint;
    uint256 public immutable maxPublicMint;
    uint256 public immutable maxSupply;
    uint256 public immutable reserveAmount;
    uint256 public immutable earlybirdTotal;

    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event RootChanged(bytes32 root);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event BaseURIChanged(string newBaseURI);
    event PriceChanged(uint256 PRICE);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Contract is not allowed to mint.");
        _;
    }

    constructor(
        string memory initBaseURI,
        uint256 _maxEarlybirdMint,
        uint256 _maxPresaleMint,
        uint256 _maxPublicMint,
        uint256 _maxSupply,
        uint256 _reserveAmount,
        uint256 _earlyBirdTotal
    )
        ERC721A(
            "Bobone",
            "XMB",
            _maxPublicMint,
            _maxSupply
        )
    {
        baseURI = initBaseURI;
        maxEarlybirdMint = _maxEarlybirdMint;
        maxPresaleMint = _maxPresaleMint;
        maxPublicMint = _maxPublicMint;
        maxSupply = _maxSupply;
        reserveAmount = _reserveAmount;
        earlybirdTotal = _earlyBirdTotal;
    }

    function setPermitTransfers(bool _permit) external onlyOwner {
        permitTransfers = _permit;
    }

    function setPermitSetApprovalForAll(bool _permit) external onlyOwner {
        permitSetApprovalForAll = _permit;
    }

    function setPermitApprove(bool _permit) external onlyOwner {
        permitApprove = _permit;
    }

    function reserve(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Zero address");
        require(amount > 0, "Invalid amount");
        require(
            totalSupply() + amount <= collectionSize,
            "Max supply exceeded"
        );
        require(
            tokensReserved + amount <= reserveAmount,
            "Max reserve amount exceeded"
        );

        uint256 multiple = amount / maxBatchSize;
        for (uint256 i = 0; i < multiple; i++) {
            _safeMint(recipient, maxBatchSize);
        }
        uint256 remainder = amount % maxBatchSize;
        if (remainder != 0) {
            _safeMint(recipient, remainder);
        }
        tokensReserved += amount;
        emit ReservedToken(msg.sender, recipient, amount);
    }

    function earlybirdMint(uint256 amount, bytes32[] calldata proof)
        external
        payable
        callerIsUser
    {
        require(status == Status.EarlyBirdSale, "EarlyBirdSale is not active.");
        require(
            MerkleProof.verify(proof, root, keccak256(abi.encodePacked(msg.sender))),
            "Invalid proof."
        );
        require(
            numberMinted(msg.sender) + amount <= maxEarlybirdMint,
            "Max mint amount per wallet exceeded."
        );
        require(
            totalSupply() + amount <= earlybirdTotal,
            "Current mint limit exceeded."
        );
        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=
                collectionSize,
            "Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PRICE * amount);

        emit Minted(msg.sender, amount);
    }


    function presaleMint(uint256 amount, bytes32[] calldata proof)
        external
        payable
        callerIsUser
    {
        require(status == Status.PreSale, "Presale is not active.");
        require(
            MerkleProof.verify(proof, root, keccak256(abi.encodePacked(msg.sender))),
            "Invalid proof."
        );
        require(
            numberMinted(msg.sender) + amount <= maxPresaleMint,
            "Max mint amount per wallet exceeded."
        );
        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=
                collectionSize,
            "Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PRICE * amount);

        emit Minted(msg.sender, amount);
    }

    function mint(uint256 amount) external payable callerIsUser {
        require(status == Status.PublicSale, "Public sale is not active.");
        require(amount <= maxPublicMint, "Max mint amount per tx exceeded.");
        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=
                collectionSize,
            "Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PRICE * amount);

        emit Minted(msg.sender, amount);
    }

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

    function withdraw() external onlyOwner {
        require(status == Status.Finished, "Invalid status for withdrawn.");

        payable(owner()).transfer(address(this).balance);
    }

    /**
    * @dev For each existing tokenId, it returns the URI where metadata is stored
    * @param tokenId Token id
    */
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string memory uri = super.tokenURI(tokenId);
        return bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

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

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        if (status == Status.Pending){
            PRICE = 0;
        }
        if (status == Status.EarlyBirdSale) {
            PRICE = 0;
        } 
        else if (status == Status.PreSale) {
            PRICE = 0.03 ether; 
        }
        else{
            PRICE = 0.05 ether; 
        }
        emit StatusChanged(_status);
        emit PriceChanged(PRICE);
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
        emit RootChanged(_root);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }



    //// CODE for Royalties
    
    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner {
        require(feeNumerator <= 10000, "ERC2981: royalty fee exceeds 10% threshold");
        require(receiver != address(0), "ERC2981: invalid receiver");
        royaltyNumerator = feeNumerator;
        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function deleteDefaultRoyalty() external onlyOwner {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) external onlyOwner {
        require(feeNumerator <= 15000, "ERC2981: royalty fee exceeds the 15% threshold");
        require(receiver != address(0), "ERC2981: invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function resetTokenRoyalty(uint256 tokenId) external onlyOwner {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 2 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.8;

import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC2981,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    RoyaltyInfo internal _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) internal _tokenRoyaltyInfo;
    
    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    bool public permitTransfers;
    bool public permitSetApprovalForAll;
    bool public permitApprove;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base uri
    string public baseURI;

    // 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) private _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;

    modifier transferPermitted() {
        require(permitTransfers, "Token transfers not allowed.");
        _;
    }

    modifier setApprovalForAllPermitted() {
        require(permitSetApprovalForAll, "Listing not allowed.");
        _;
    }

    modifier approvePermitted() {
        require(permitApprove, "Listing not allowed.");
        _;
    }

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory base_URI = _baseURI();
        return bytes(base_URI).length > 0 ? string(abi.encodePacked(base_URI, 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 approvePermitted{
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator, 
        bool approved)
        public override setApprovalForAllPermitted{
            require(operator != _msgSender(), "ERC721A: approve to caller");
            _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        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 transferPermitted {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

    function burn(uint256 tokenId) public virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        _burn(tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);

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

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

        _addressData[owner].balance -= 1;
        _ownerships[tokenId] = TokenOwnership(address(0), uint64(block.timestamp));

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfers(owner, address(0), tokenId, 1);
    }

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    //// NEW CODE - for Royalties

    uint256 public constant ROYALTY_FEE_DENOMINATOR = 100000;

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / ROYALTY_FEE_DENOMINATOR;

        return (royalty.receiver, royaltyAmount);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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 functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxEarlybirdMint","type":"uint256"},{"internalType":"uint256","name":"_maxPresaleMint","type":"uint256"},{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"},{"internalType":"uint256","name":"_earlyBirdTotal","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PRICE","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"RootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum XMB.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"earlybirdMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"earlybirdTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxEarlybirdMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permitApprove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permitSetApprovalForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permitTransfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyNumerator","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_permit","type":"bool"}],"name":"setPermitApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_permit","type":"bool"}],"name":"setPermitSetApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_permit","type":"bool"}],"name":"setPermitTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum XMB.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum XMB.Status","name":"","type":"uint8"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61018060405260006002556000600b553480156200001c57600080fd5b50604051620043d4380380620043d48339810160408190526200003f91620002d8565b60405180604001604052806006815260200165426f626f6e6560d01b815250604051806040016040528060038152602001622c26a160e91b815250858560008111620000e95760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200014b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e0565b8351620001609060049060208701906200021c565b508251620001769060059060208601906200021c565b5060a091909152608052506200018e905033620001ca565b8651620001a39060069060208a01906200021c565b5060c09590955260e09390935261010091909152610120526101405261016052506200042e565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022a90620003f1565b90600052602060002090601f0160209004810192826200024e576000855562000299565b82601f106200026957805160ff191683800117855562000299565b8280016001018555821562000299579182015b82811115620002995782518255916020019190600101906200027c565b50620002a7929150620002ab565b5090565b5b80821115620002a75760008155600101620002ac565b634e487b7160e01b600052604160045260246000fd5b600080600080600080600060e0888a031215620002f457600080fd5b87516001600160401b03808211156200030c57600080fd5b818a0191508a601f8301126200032157600080fd5b815181811115620003365762000336620002c2565b604051601f8201601f19908116603f01168101908382118183101715620003615762000361620002c2565b81604052828152602093508d848487010111156200037e57600080fd5b600091505b82821015620003a2578482018401518183018501529083019062000383565b82821115620003b45760008484830101525b809b50505050808a01519750505060408801519450606088015193506080880151925060a0880151915060c0880151905092959891949750929550565b600181811c908216806200040657607f821691505b602082108114156200042857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516101405161016051613ed06200050460003960008181610709015261166a0152600081816106350152818161171101528181611d8e0152612167015260006109e101526000818161098d0152611cfa0152600081816108e5015261248401526000818161093901526116170152600081816121e9015281816122210152818161225f01528181612bc401528181612bee015261327f0152600081816116ed01528181611d6a015281816120ee015281816129c901526129fb0152613ed06000f3fe60806040526004361061036b5760003560e01c806370a08231116101c6578063c6bf711b116100f7578063dc33e68111610095578063e985e9c51161006f578063e985e9c514610a83578063ebf0c71714610acc578063f1261fce14610ae2578063f2fde38b14610afc57600080fd5b8063dc33e68114610a39578063e1a8bf2c14610a59578063e3e1e8ef14610a7057600080fd5b8063cc47a40b116100d1578063cc47a40b146109af578063d5abeb01146109cf578063d7224ba014610a03578063dab5f34014610a1957600080fd5b8063c6bf711b14610927578063c87b56dd1461095b578063cabadaa01461097b57600080fd5b806395d89b4111610164578063a82cc2871161013e578063a82cc2871461089e578063aa1b103f146108be578063b4576278146108d3578063b88d4fde1461090757600080fd5b806395d89b4114610856578063a0712d681461086b578063a22cb4651461087e57600080fd5b80638a616bc0116101a05780638a616bc0146107b45780638d859f3e146107d45780638da5cb5b146107ea5780639231ab2a1461080857600080fd5b806370a0823114610760578063715018a61461078057806383f808ea1461079557600080fd5b80633f442793116102a057806350852ac91161023e5780636352211e116102185780636352211e146106d7578063641c390c146106f757806365c86ac81461072b5780636c0360eb1461074b57600080fd5b806350852ac91461067757806355f804b3146106975780635944c753146106b757600080fd5b8063433adb051161027a578063433adb05146105fa578063438f8292146106105780634b09b72a146106235780634f6ccce71461065757600080fd5b80633f4427931461059a57806342842e0e146105ba57806342966c68146105da57600080fd5b806323b872dd1161030d5780632d20fb60116102e75780632d20fb60146105255780632e49d78b146105455780632f745c59146105655780633ccfd60b1461058557600080fd5b806323b872dd1461048e5780632a55205a146104ae5780632bb80474146104ed57600080fd5b8063081812fc11610349578063081812fc146103e9578063095ea7b31461042157806318160ddd14610441578063200d2ed21461046057600080fd5b806301ffc9a71461037057806304634d8d146103a557806306fdde03146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004613650565b610b1c565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c03660046136a0565b610ba4565b005b3480156103d357600080fd5b506103dc610ce6565b60405161039c919061372b565b3480156103f557600080fd5b5061040961040436600461373e565b610d78565b6040516001600160a01b03909116815260200161039c565b34801561042d57600080fd5b506103c561043c366004613757565b610e03565b34801561044d57600080fd5b506002545b60405190815260200161039c565b34801561046c57600080fd5b50600c5461048190600160a01b900460ff1681565b60405161039c9190613797565b34801561049a57600080fd5b506103c56104a93660046137bf565b610f6a565b3480156104ba57600080fd5b506104ce6104c93660046137fb565b610f75565b604080516001600160a01b03909316835260208301919091520161039c565b3480156104f957600080fd5b5060105461050d906001600160601b031681565b6040516001600160601b03909116815260200161039c565b34801561053157600080fd5b506103c561054036600461373e565b611021565b34801561055157600080fd5b506103c561056036600461381d565b611057565b34801561057157600080fd5b50610452610580366004613757565b6111be565b34801561059157600080fd5b506103c5611337565b3480156105a657600080fd5b506103c56105b536600461384e565b611407565b3480156105c657600080fd5b506103c56105d53660046137bf565b611444565b3480156105e657600080fd5b506103c56105f536600461373e565b61145f565b34801561060657600080fd5b50610452600e5481565b6103c561061e366004613869565b6114db565b34801561062f57600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b34801561066357600080fd5b5061045261067236600461373e565b6117fb565b34801561068357600080fd5b506103c561069236600461384e565b611864565b3480156106a357600080fd5b506103c56106b23660046138e8565b6118aa565b3480156106c357600080fd5b506103c56106d236600461395a565b61191e565b3480156106e357600080fd5b506104096106f236600461373e565b611a5a565b34801561070357600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b34801561073757600080fd5b506103c561074636600461384e565b611a6c565b34801561075757600080fd5b506103dc611ab0565b34801561076c57600080fd5b5061045261077b366004613996565b611b3e565b34801561078c57600080fd5b506103c5611bcf565b3480156107a157600080fd5b5060035461039090610100900460ff1681565b3480156107c057600080fd5b506103c56107cf36600461373e565b611c05565b3480156107e057600080fd5b50610452600f5481565b3480156107f657600080fd5b50600c546001600160a01b0316610409565b34801561081457600080fd5b5061082861082336600461373e565b611c40565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161039c565b34801561086257600080fd5b506103dc611c5d565b6103c561087936600461373e565b611c6c565b34801561088a57600080fd5b506103c56108993660046139b1565b611e6b565b3480156108aa57600080fd5b506003546103909062010000900460ff1681565b3480156108ca57600080fd5b506103c5611f7e565b3480156108df57600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b34801561091357600080fd5b506103c56109223660046139f1565b611fae565b34801561093357600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b34801561096757600080fd5b506103dc61097636600461373e565b611fe7565b34801561098757600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b3480156109bb57600080fd5b506103c56109ca366004613757565b61203c565b3480156109db57600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000081565b348015610a0f57600080fd5b50610452600b5481565b348015610a2557600080fd5b506103c5610a3436600461373e565b6122fc565b348015610a4557600080fd5b50610452610a54366004613996565b61235b565b348015610a6557600080fd5b50610452620186a081565b6103c5610a7e366004613869565b612366565b348015610a8f57600080fd5b50610390610a9e366004613acd565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610ad857600080fd5b50610452600d5481565b348015610aee57600080fd5b506003546103909060ff1681565b348015610b0857600080fd5b506103c5610b17366004613996565b6124d5565b60006001600160e01b031982166380ac58cd60e01b1480610b4d57506001600160e01b03198216635b5e139f60e01b145b80610b6857506001600160e01b0319821663780e9d6360e01b145b80610b8357506001600160e01b0319821663152a902d60e11b145b80610b9e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600c546001600160a01b03163314610bd75760405162461bcd60e51b8152600401610bce90613af7565b60405180910390fd5b612710816001600160601b03161115610c455760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c747920666565206578636565647320313025604482015269081d1a1c995cda1bdb1960b21b6064820152608401610bce565b6001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610bce565b601080546001600160601b039092166001600160601b031990921682179055604080518082019091526001600160a01b039092168083526020909201819052600160a01b0217600055565b606060048054610cf590613b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190613b2c565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d85826002541190565b610de75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bce565b506000908152600960205260409020546001600160a01b031690565b60035462010000900460ff16610e525760405162461bcd60e51b81526020600482015260146024820152732634b9ba34b733903737ba1030b63637bbb2b21760611b6044820152606401610bce565b6000610e5d82611a5a565b9050806001600160a01b0316836001600160a01b03161415610ecc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bce565b336001600160a01b0382161480610ee85750610ee88133610a9e565b610f5a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bce565b610f6583838361256d565b505050565b610f658383836125c9565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610fea5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6000620186a082602001516001600160601b0316866110099190613b7d565b6110139190613bb2565b915196919550909350505050565b600c546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610bce90613af7565b61105481612958565b50565b600c546001600160a01b031633146110815760405162461bcd60e51b8152600401610bce90613af7565b600c805482919060ff60a01b1916600160a01b8360048111156110a6576110a6613781565b02179055506000600c54600160a01b900460ff1660048111156110cb576110cb613781565b14156110d7576000600f555b6001600c54600160a01b900460ff1660048111156110f7576110f7613781565b1415611107576000600f55611149565b6002600c54600160a01b900460ff16600481111561112757611127613781565b141561113d57666a94d74f430000600f55611149565b66b1a2bc2ec50000600f555b7fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e816040516111789190613797565b60405180910390a17fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d622600f546040516111b391815260200190565b60405180910390a150565b60006111c983611b3e565b82106112225760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bce565b600061122d60025490565b905060008060005b838110156112d7576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561128857805192505b876001600160a01b0316836001600160a01b031614156112c457868414156112b657509350610b9e92505050565b836112c081613bc6565b9450505b50806112cf81613bc6565b915050611235565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bce565b600c546001600160a01b031633146113615760405162461bcd60e51b8152600401610bce90613af7565b6004600c54600160a01b900460ff16600481111561138157611381613781565b146113ce5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642073746174757320666f722077697468647261776e2e0000006044820152606401610bce565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611054573d6000803e3d6000fd5b600c546001600160a01b031633146114315760405162461bcd60e51b8152600401610bce90613af7565b6003805460ff1916911515919091179055565b610f6583838360405180602001604052806000815250611fae565b600061146a82612b42565b80519091506000906001600160a01b0316336001600160a01b031614806114a157503361149684610d78565b6001600160a01b0316145b806114b3575081516114b39033610a9e565b9050806114d25760405162461bcd60e51b8152600401610bce90613be1565b610f6583612cec565b3233146114fa5760405162461bcd60e51b8152600401610bce90613c33565b6001600c54600160a01b900460ff16600481111561151a5761151a613781565b146115675760405162461bcd60e51b815260206004820152601c60248201527f4561726c794269726453616c65206973206e6f74206163746976652e000000006044820152606401610bce565b6115d882828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612de3565b6116155760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000000836116403361235b565b61164a9190613c68565b11156116685760405162461bcd60e51b8152600401610bce90613c80565b7f00000000000000000000000000000000000000000000000000000000000000008361169360025490565b61169d9190613c68565b11156116eb5760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000000600e547f00000000000000000000000000000000000000000000000000000000000000008561173a60025490565b6117449190613c68565b61174e9190613c68565b6117589190613cc4565b111561179d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610bce565b6117a73384612df9565b6117bd83600f546117b89190613b7d565b612e13565b60408051338152602081018590527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b600061180660025490565b82106118605760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bce565b5090565b600c546001600160a01b0316331461188e5760405162461bcd60e51b8152600401610bce90613af7565b60038054911515620100000262ff000019909216919091179055565b600c546001600160a01b031633146118d45760405162461bcd60e51b8152600401610bce90613af7565b6118e0600683836135aa565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611912929190613cdb565b60405180910390a15050565b600c546001600160a01b031633146119485760405162461bcd60e51b8152600401610bce90613af7565b613a98816001600160601b031611156119ba5760405162461bcd60e51b815260206004820152602e60248201527f455243323938313a20726f79616c74792066656520657863656564732074686560448201526d080c4d49481d1a1c995cda1bdb1960921b6064820152608401610bce565b6001600160a01b038216611a105760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20696e76616c696420706172616d657465727300000000006044820152606401610bce565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600190529190942093519051909116600160a01b029116179055565b6000611a6582612b42565b5192915050565b600c546001600160a01b03163314611a965760405162461bcd60e51b8152600401610bce90613af7565b600380549115156101000261ff0019909216919091179055565b60068054611abd90613b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae990613b2c565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505081565b60006001600160a01b038216611baa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bce565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b600c546001600160a01b03163314611bf95760405162461bcd60e51b8152600401610bce90613af7565b611c036000612e9a565b565b600c546001600160a01b03163314611c2f5760405162461bcd60e51b8152600401610bce90613af7565b600090815260016020526040812055565b6040805180820190915260008082526020820152610b9e82612b42565b606060058054610cf590613b2c565b323314611c8b5760405162461bcd60e51b8152600401610bce90613c33565b6003600c54600160a01b900460ff166004811115611cab57611cab613781565b14611cf85760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000000811115611d685760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420616d6f756e74207065722074782065786365656465642e6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000000600e547f000000000000000000000000000000000000000000000000000000000000000083611db760025490565b611dc19190613c68565b611dcb9190613c68565b611dd59190613cc4565b1115611e1a5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610bce565b611e243382612df9565b611e3581600f546117b89190613b7d565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91016111b3565b600354610100900460ff16611eb95760405162461bcd60e51b81526020600482015260146024820152732634b9ba34b733903737ba1030b63637bbb2b21760611b6044820152606401610bce565b6001600160a01b038216331415611f125760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bce565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b03163314611fa85760405162461bcd60e51b8152600401610bce90613af7565b60008055565b611fb98484846125c9565b611fc584848484612eec565b611fe15760405162461bcd60e51b8152600401610bce90613d0a565b50505050565b60606000611ff483612ffa565b905060008151116120145760405180602001604052806000815250612035565b806040516020016120259190613d5d565b6040516020818303038152906040525b9392505050565b600c546001600160a01b031633146120665760405162461bcd60e51b8152600401610bce90613af7565b6001600160a01b0382166120ab5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610bce565b600081116120ec5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610bce565b7f00000000000000000000000000000000000000000000000000000000000000008161211760025490565b6121219190613c68565b11156121655760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610bce565b7f000000000000000000000000000000000000000000000000000000000000000081600e546121949190613c68565b11156121e25760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610bce565b600061220e7f000000000000000000000000000000000000000000000000000000000000000083613bb2565b905060005b8181101561225757612245847f0000000000000000000000000000000000000000000000000000000000000000612df9565b8061224f81613bc6565b915050612213565b5060006122847f000000000000000000000000000000000000000000000000000000000000000084613d86565b90508015612296576122968482612df9565b82600e60008282546122a89190613c68565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b600c546001600160a01b031633146123265760405162461bcd60e51b8152600401610bce90613af7565b600d8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e2906020016111b3565b6000610b9e826130b0565b3233146123855760405162461bcd60e51b8152600401610bce90613c33565b6002600c54600160a01b900460ff1660048111156123a5576123a5613781565b146123eb5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b6044820152606401610bce565b61244582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190506115bd565b6124825760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000000836124ad3361235b565b6124b79190613c68565b11156116eb5760405162461bcd60e51b8152600401610bce90613c80565b600c546001600160a01b031633146124ff5760405162461bcd60e51b8152600401610bce90613af7565b6001600160a01b0381166125645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bce565b61105481612e9a565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60035460ff1661261b5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e207472616e7366657273206e6f7420616c6c6f7765642e000000006044820152606401610bce565b600061262682612b42565b80519091506000906001600160a01b0316336001600160a01b0316148061265d57503361265284610d78565b6001600160a01b0316145b8061266f5750815161266f9033610a9e565b90508061268e5760405162461bcd60e51b8152600401610bce90613be1565b846001600160a01b031682600001516001600160a01b0316146127025760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bce565b6001600160a01b0384166127665760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bce565b612776600084846000015161256d565b6001600160a01b03851660009081526008602052604081208054600192906127a89084906001600160801b0316613d9a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926127f491859116613dc2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561287c846001613c68565b6000818152600760205260409020549091506001600160a01b031661290e576128a6816002541190565b1561290e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816129a85760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bce565b600060016129b68484613c68565b6129c09190613cc4565b90506129ed60017f0000000000000000000000000000000000000000000000000000000000000000613cc4565b811115612a2257612a1f60017f0000000000000000000000000000000000000000000000000000000000000000613cc4565b90505b612a2d816002541190565b612a885760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bce565b815b818111612b2e576000818152600760205260409020546001600160a01b0316612b1c576000612ab882612b42565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612b2681613bc6565b915050612a8a565b50612b3a816001613c68565b600b55505050565b6040805180820190915260008082526020820152612b61826002541190565b612bc05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bce565b60007f00000000000000000000000000000000000000000000000000000000000000008310612c2157612c137f000000000000000000000000000000000000000000000000000000000000000084613cc4565b612c1e906001613c68565b90505b825b818110612c8b576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612c7857949350505050565b5080612c8381613ded565b915050612c23565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bce565b6000612cf782611a5a565b9050612d056000838361256d565b6001600160a01b0381166000908152600860205260408120805460019290612d379084906001600160801b0316613d9a565b82546001600160801b039182166101009390930a928302919092021990911617905550604080518082018252600080825267ffffffffffffffff428116602080850191825287845260079052848320935184549151909216600160a01b026001600160e01b03199091166001600160a01b03928316171790925591518492918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45b5050565b600082612df0858461314e565b14949350505050565b612ddf8282604051806020016040528060008152506131c2565b80341015612e5c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bce565b8034111561105457336108fc612e728334613cc4565b6040518115909202916000818181858888f19350505050158015612ddf573d6000803e3d6000fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15612fee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f30903390899088908890600401613e04565b602060405180830381600087803b158015612f4a57600080fd5b505af1925050508015612f7a575060408051601f3d908101601f19168201909252612f7791810190613e41565b60015b612fd4573d808015612fa8576040519150601f19603f3d011682016040523d82523d6000602084013e612fad565b606091505b508051612fcc5760405162461bcd60e51b8152600401610bce90613d0a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ff2565b5060015b949350505050565b6060613007826002541190565b61306b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bce565b600061307561349d565b905060008151116130955760405180602001604052806000815250612035565b8061309f846134ac565b604051602001612025929190613e5e565b60006001600160a01b0382166131225760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bce565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b600081815b84518110156131ba57600085828151811061317057613170613e84565b6020026020010151905080831161319657600083815260208290526040902092506131a7565b600081815260208490526040902092505b50806131b281613bc6565b915050613153565b509392505050565b6002546001600160a01b0384166132255760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bce565b613230816002541190565b1561327d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bce565b7f00000000000000000000000000000000000000000000000000000000000000008311156132f85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bce565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613354908790613dc2565b6001600160801b031681526020018583602001516133729190613dc2565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156134925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134566000888488612eec565b6134725760405162461bcd60e51b8152600401610bce90613d0a565b8161347c81613bc6565b925050808061348a90613bc6565b915050613409565b506002819055612950565b606060068054610cf590613b2c565b6060816134d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156134fa57806134e481613bc6565b91506134f39050600a83613bb2565b91506134d4565b60008167ffffffffffffffff811115613515576135156139db565b6040519080825280601f01601f19166020018201604052801561353f576020820181803683370190505b5090505b8415612ff257613554600183613cc4565b9150613561600a86613d86565b61356c906030613c68565b60f81b81838151811061358157613581613e84565b60200101906001600160f81b031916908160001a9053506135a3600a86613bb2565b9450613543565b8280546135b690613b2c565b90600052602060002090601f0160209004810192826135d8576000855561361e565b82601f106135f15782800160ff1982351617855561361e565b8280016001018555821561361e579182015b8281111561361e578235825591602001919060010190613603565b506118609291505b808211156118605760008155600101613626565b6001600160e01b03198116811461105457600080fd5b60006020828403121561366257600080fd5b81356120358161363a565b80356001600160a01b038116811461368457600080fd5b919050565b80356001600160601b038116811461368457600080fd5b600080604083850312156136b357600080fd5b6136bc8361366d565b91506136ca60208401613689565b90509250929050565b60005b838110156136ee5781810151838201526020016136d6565b83811115611fe15750506000910152565b600081518084526137178160208601602086016136d3565b601f01601f19169290920160200192915050565b60208152600061203560208301846136ff565b60006020828403121561375057600080fd5b5035919050565b6000806040838503121561376a57600080fd5b6137738361366d565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60208101600583106137b957634e487b7160e01b600052602160045260246000fd5b91905290565b6000806000606084860312156137d457600080fd5b6137dd8461366d565b92506137eb6020850161366d565b9150604084013590509250925092565b6000806040838503121561380e57600080fd5b50508035926020909101359150565b60006020828403121561382f57600080fd5b81356005811061203557600080fd5b8035801515811461368457600080fd5b60006020828403121561386057600080fd5b6120358261383e565b60008060006040848603121561387e57600080fd5b83359250602084013567ffffffffffffffff8082111561389d57600080fd5b818601915086601f8301126138b157600080fd5b8135818111156138c057600080fd5b8760208260051b85010111156138d557600080fd5b6020830194508093505050509250925092565b600080602083850312156138fb57600080fd5b823567ffffffffffffffff8082111561391357600080fd5b818501915085601f83011261392757600080fd5b81358181111561393657600080fd5b86602082850101111561394857600080fd5b60209290920196919550909350505050565b60008060006060848603121561396f57600080fd5b8335925061397f6020850161366d565b915061398d60408501613689565b90509250925092565b6000602082840312156139a857600080fd5b6120358261366d565b600080604083850312156139c457600080fd5b6139cd8361366d565b91506136ca6020840161383e565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215613a0757600080fd5b613a108561366d565b9350613a1e6020860161366d565b925060408501359150606085013567ffffffffffffffff80821115613a4257600080fd5b818701915087601f830112613a5657600080fd5b813581811115613a6857613a686139db565b604051601f8201601f19908116603f01168101908382118183101715613a9057613a906139db565b816040528281528a6020848701011115613aa957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613ae057600080fd5b613ae98361366d565b91506136ca6020840161366d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680613b4057607f821691505b60208210811415613b6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613b9757613b97613b67565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bc157613bc1613b9c565b500490565b6000600019821415613bda57613bda613b67565b5060010190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252818101527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e604082015260600190565b60008219821115613c7b57613c7b613b67565b500190565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656040820152633232b21760e11b606082015260800190565b600082821015613cd657613cd6613b67565b500390565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008251613d6f8184602087016136d3565b64173539b7b760d91b920191825250600501919050565b600082613d9557613d95613b9c565b500690565b60006001600160801b0383811690831681811015613dba57613dba613b67565b039392505050565b60006001600160801b03808316818516808303821115613de457613de4613b67565b01949350505050565b600081613dfc57613dfc613b67565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e37908301846136ff565b9695505050505050565b600060208284031215613e5357600080fd5b81516120358161363a565b60008351613e708184602088016136d3565b835190830190613de48183602088016136d3565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bef705e97b64ae54b9074929cf44789e636bb8f86cfc8d8ab977dc2a4433ae0c64736f6c6343000808003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001a0a0000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000194e6f7420676f696e6720746f2074656c6c20796f752079657400000000000000

Deployed Bytecode

0x60806040526004361061036b5760003560e01c806370a08231116101c6578063c6bf711b116100f7578063dc33e68111610095578063e985e9c51161006f578063e985e9c514610a83578063ebf0c71714610acc578063f1261fce14610ae2578063f2fde38b14610afc57600080fd5b8063dc33e68114610a39578063e1a8bf2c14610a59578063e3e1e8ef14610a7057600080fd5b8063cc47a40b116100d1578063cc47a40b146109af578063d5abeb01146109cf578063d7224ba014610a03578063dab5f34014610a1957600080fd5b8063c6bf711b14610927578063c87b56dd1461095b578063cabadaa01461097b57600080fd5b806395d89b4111610164578063a82cc2871161013e578063a82cc2871461089e578063aa1b103f146108be578063b4576278146108d3578063b88d4fde1461090757600080fd5b806395d89b4114610856578063a0712d681461086b578063a22cb4651461087e57600080fd5b80638a616bc0116101a05780638a616bc0146107b45780638d859f3e146107d45780638da5cb5b146107ea5780639231ab2a1461080857600080fd5b806370a0823114610760578063715018a61461078057806383f808ea1461079557600080fd5b80633f442793116102a057806350852ac91161023e5780636352211e116102185780636352211e146106d7578063641c390c146106f757806365c86ac81461072b5780636c0360eb1461074b57600080fd5b806350852ac91461067757806355f804b3146106975780635944c753146106b757600080fd5b8063433adb051161027a578063433adb05146105fa578063438f8292146106105780634b09b72a146106235780634f6ccce71461065757600080fd5b80633f4427931461059a57806342842e0e146105ba57806342966c68146105da57600080fd5b806323b872dd1161030d5780632d20fb60116102e75780632d20fb60146105255780632e49d78b146105455780632f745c59146105655780633ccfd60b1461058557600080fd5b806323b872dd1461048e5780632a55205a146104ae5780632bb80474146104ed57600080fd5b8063081812fc11610349578063081812fc146103e9578063095ea7b31461042157806318160ddd14610441578063200d2ed21461046057600080fd5b806301ffc9a71461037057806304634d8d146103a557806306fdde03146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b366004613650565b610b1c565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c03660046136a0565b610ba4565b005b3480156103d357600080fd5b506103dc610ce6565b60405161039c919061372b565b3480156103f557600080fd5b5061040961040436600461373e565b610d78565b6040516001600160a01b03909116815260200161039c565b34801561042d57600080fd5b506103c561043c366004613757565b610e03565b34801561044d57600080fd5b506002545b60405190815260200161039c565b34801561046c57600080fd5b50600c5461048190600160a01b900460ff1681565b60405161039c9190613797565b34801561049a57600080fd5b506103c56104a93660046137bf565b610f6a565b3480156104ba57600080fd5b506104ce6104c93660046137fb565b610f75565b604080516001600160a01b03909316835260208301919091520161039c565b3480156104f957600080fd5b5060105461050d906001600160601b031681565b6040516001600160601b03909116815260200161039c565b34801561053157600080fd5b506103c561054036600461373e565b611021565b34801561055157600080fd5b506103c561056036600461381d565b611057565b34801561057157600080fd5b50610452610580366004613757565b6111be565b34801561059157600080fd5b506103c5611337565b3480156105a657600080fd5b506103c56105b536600461384e565b611407565b3480156105c657600080fd5b506103c56105d53660046137bf565b611444565b3480156105e657600080fd5b506103c56105f536600461373e565b61145f565b34801561060657600080fd5b50610452600e5481565b6103c561061e366004613869565b6114db565b34801561062f57600080fd5b506104527f00000000000000000000000000000000000000000000000000000000000000c881565b34801561066357600080fd5b5061045261067236600461373e565b6117fb565b34801561068357600080fd5b506103c561069236600461384e565b611864565b3480156106a357600080fd5b506103c56106b23660046138e8565b6118aa565b3480156106c357600080fd5b506103c56106d236600461395a565b61191e565b3480156106e357600080fd5b506104096106f236600461373e565b611a5a565b34801561070357600080fd5b506104527f00000000000000000000000000000000000000000000000000000000000003e881565b34801561073757600080fd5b506103c561074636600461384e565b611a6c565b34801561075757600080fd5b506103dc611ab0565b34801561076c57600080fd5b5061045261077b366004613996565b611b3e565b34801561078c57600080fd5b506103c5611bcf565b3480156107a157600080fd5b5060035461039090610100900460ff1681565b3480156107c057600080fd5b506103c56107cf36600461373e565b611c05565b3480156107e057600080fd5b50610452600f5481565b3480156107f657600080fd5b50600c546001600160a01b0316610409565b34801561081457600080fd5b5061082861082336600461373e565b611c40565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161039c565b34801561086257600080fd5b506103dc611c5d565b6103c561087936600461373e565b611c6c565b34801561088a57600080fd5b506103c56108993660046139b1565b611e6b565b3480156108aa57600080fd5b506003546103909062010000900460ff1681565b3480156108ca57600080fd5b506103c5611f7e565b3480156108df57600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000381565b34801561091357600080fd5b506103c56109223660046139f1565b611fae565b34801561093357600080fd5b506104527f000000000000000000000000000000000000000000000000000000000000000181565b34801561096757600080fd5b506103dc61097636600461373e565b611fe7565b34801561098757600080fd5b506104527f0000000000000000000000000000000000000000000000000000000000001a0a81565b3480156109bb57600080fd5b506103c56109ca366004613757565b61203c565b3480156109db57600080fd5b506104527f0000000000000000000000000000000000000000000000000000000000001a0a81565b348015610a0f57600080fd5b50610452600b5481565b348015610a2557600080fd5b506103c5610a3436600461373e565b6122fc565b348015610a4557600080fd5b50610452610a54366004613996565b61235b565b348015610a6557600080fd5b50610452620186a081565b6103c5610a7e366004613869565b612366565b348015610a8f57600080fd5b50610390610a9e366004613acd565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610ad857600080fd5b50610452600d5481565b348015610aee57600080fd5b506003546103909060ff1681565b348015610b0857600080fd5b506103c5610b17366004613996565b6124d5565b60006001600160e01b031982166380ac58cd60e01b1480610b4d57506001600160e01b03198216635b5e139f60e01b145b80610b6857506001600160e01b0319821663780e9d6360e01b145b80610b8357506001600160e01b0319821663152a902d60e11b145b80610b9e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b600c546001600160a01b03163314610bd75760405162461bcd60e51b8152600401610bce90613af7565b60405180910390fd5b612710816001600160601b03161115610c455760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c747920666565206578636565647320313025604482015269081d1a1c995cda1bdb1960b21b6064820152608401610bce565b6001600160a01b038216610c9b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610bce565b601080546001600160601b039092166001600160601b031990921682179055604080518082019091526001600160a01b039092168083526020909201819052600160a01b0217600055565b606060048054610cf590613b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190613b2c565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d85826002541190565b610de75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bce565b506000908152600960205260409020546001600160a01b031690565b60035462010000900460ff16610e525760405162461bcd60e51b81526020600482015260146024820152732634b9ba34b733903737ba1030b63637bbb2b21760611b6044820152606401610bce565b6000610e5d82611a5a565b9050806001600160a01b0316836001600160a01b03161415610ecc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bce565b336001600160a01b0382161480610ee85750610ee88133610a9e565b610f5a5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bce565b610f6583838361256d565b505050565b610f658383836125c9565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610fea5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6000620186a082602001516001600160601b0316866110099190613b7d565b6110139190613bb2565b915196919550909350505050565b600c546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610bce90613af7565b61105481612958565b50565b600c546001600160a01b031633146110815760405162461bcd60e51b8152600401610bce90613af7565b600c805482919060ff60a01b1916600160a01b8360048111156110a6576110a6613781565b02179055506000600c54600160a01b900460ff1660048111156110cb576110cb613781565b14156110d7576000600f555b6001600c54600160a01b900460ff1660048111156110f7576110f7613781565b1415611107576000600f55611149565b6002600c54600160a01b900460ff16600481111561112757611127613781565b141561113d57666a94d74f430000600f55611149565b66b1a2bc2ec50000600f555b7fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e816040516111789190613797565b60405180910390a17fa6dc15bdb68da224c66db4b3838d9a2b205138e8cff6774e57d0af91e196d622600f546040516111b391815260200190565b60405180910390a150565b60006111c983611b3e565b82106112225760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bce565b600061122d60025490565b905060008060005b838110156112d7576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561128857805192505b876001600160a01b0316836001600160a01b031614156112c457868414156112b657509350610b9e92505050565b836112c081613bc6565b9450505b50806112cf81613bc6565b915050611235565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bce565b600c546001600160a01b031633146113615760405162461bcd60e51b8152600401610bce90613af7565b6004600c54600160a01b900460ff16600481111561138157611381613781565b146113ce5760405162461bcd60e51b815260206004820152601d60248201527f496e76616c69642073746174757320666f722077697468647261776e2e0000006044820152606401610bce565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611054573d6000803e3d6000fd5b600c546001600160a01b031633146114315760405162461bcd60e51b8152600401610bce90613af7565b6003805460ff1916911515919091179055565b610f6583838360405180602001604052806000815250611fae565b600061146a82612b42565b80519091506000906001600160a01b0316336001600160a01b031614806114a157503361149684610d78565b6001600160a01b0316145b806114b3575081516114b39033610a9e565b9050806114d25760405162461bcd60e51b8152600401610bce90613be1565b610f6583612cec565b3233146114fa5760405162461bcd60e51b8152600401610bce90613c33565b6001600c54600160a01b900460ff16600481111561151a5761151a613781565b146115675760405162461bcd60e51b815260206004820152601c60248201527f4561726c794269726453616c65206973206e6f74206163746976652e000000006044820152606401610bce565b6115d882828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120612de3565b6116155760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000001836116403361235b565b61164a9190613c68565b11156116685760405162461bcd60e51b8152600401610bce90613c80565b7f00000000000000000000000000000000000000000000000000000000000003e88361169360025490565b61169d9190613c68565b11156116eb5760405162461bcd60e51b815260206004820152601c60248201527f43757272656e74206d696e74206c696d69742065786365656465642e000000006044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000001a0a600e547f00000000000000000000000000000000000000000000000000000000000000c88561173a60025490565b6117449190613c68565b61174e9190613c68565b6117589190613cc4565b111561179d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610bce565b6117a73384612df9565b6117bd83600f546117b89190613b7d565b612e13565b60408051338152602081018590527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1505050565b600061180660025490565b82106118605760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bce565b5090565b600c546001600160a01b0316331461188e5760405162461bcd60e51b8152600401610bce90613af7565b60038054911515620100000262ff000019909216919091179055565b600c546001600160a01b031633146118d45760405162461bcd60e51b8152600401610bce90613af7565b6118e0600683836135aa565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611912929190613cdb565b60405180910390a15050565b600c546001600160a01b031633146119485760405162461bcd60e51b8152600401610bce90613af7565b613a98816001600160601b031611156119ba5760405162461bcd60e51b815260206004820152602e60248201527f455243323938313a20726f79616c74792066656520657863656564732074686560448201526d080c4d49481d1a1c995cda1bdb1960921b6064820152608401610bce565b6001600160a01b038216611a105760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20696e76616c696420706172616d657465727300000000006044820152606401610bce565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600190529190942093519051909116600160a01b029116179055565b6000611a6582612b42565b5192915050565b600c546001600160a01b03163314611a965760405162461bcd60e51b8152600401610bce90613af7565b600380549115156101000261ff0019909216919091179055565b60068054611abd90613b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae990613b2c565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505081565b60006001600160a01b038216611baa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bce565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b600c546001600160a01b03163314611bf95760405162461bcd60e51b8152600401610bce90613af7565b611c036000612e9a565b565b600c546001600160a01b03163314611c2f5760405162461bcd60e51b8152600401610bce90613af7565b600090815260016020526040812055565b6040805180820190915260008082526020820152610b9e82612b42565b606060058054610cf590613b2c565b323314611c8b5760405162461bcd60e51b8152600401610bce90613c33565b6003600c54600160a01b900460ff166004811115611cab57611cab613781565b14611cf85760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000001a0a811115611d685760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e7420616d6f756e74207065722074782065786365656465642e6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000001a0a600e547f00000000000000000000000000000000000000000000000000000000000000c883611db760025490565b611dc19190613c68565b611dcb9190613c68565b611dd59190613cc4565b1115611e1a5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610bce565b611e243382612df9565b611e3581600f546117b89190613b7d565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91016111b3565b600354610100900460ff16611eb95760405162461bcd60e51b81526020600482015260146024820152732634b9ba34b733903737ba1030b63637bbb2b21760611b6044820152606401610bce565b6001600160a01b038216331415611f125760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bce565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b03163314611fa85760405162461bcd60e51b8152600401610bce90613af7565b60008055565b611fb98484846125c9565b611fc584848484612eec565b611fe15760405162461bcd60e51b8152600401610bce90613d0a565b50505050565b60606000611ff483612ffa565b905060008151116120145760405180602001604052806000815250612035565b806040516020016120259190613d5d565b6040516020818303038152906040525b9392505050565b600c546001600160a01b031633146120665760405162461bcd60e51b8152600401610bce90613af7565b6001600160a01b0382166120ab5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606401610bce565b600081116120ec5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000001a0a8161211760025490565b6121219190613c68565b11156121655760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610bce565b7f00000000000000000000000000000000000000000000000000000000000000c881600e546121949190613c68565b11156121e25760405162461bcd60e51b815260206004820152601b60248201527f4d6178207265736572766520616d6f756e7420657863656564656400000000006044820152606401610bce565b600061220e7f0000000000000000000000000000000000000000000000000000000000001a0a83613bb2565b905060005b8181101561225757612245847f0000000000000000000000000000000000000000000000000000000000001a0a612df9565b8061224f81613bc6565b915050612213565b5060006122847f0000000000000000000000000000000000000000000000000000000000001a0a84613d86565b90508015612296576122968482612df9565b82600e60008282546122a89190613c68565b9091555050604080513381526001600160a01b03861660208201529081018490527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600160405180910390a150505050565b600c546001600160a01b031633146123265760405162461bcd60e51b8152600401610bce90613af7565b600d8190556040518181527f545a99af2f74d472d3ceb11889ff68b31a1a02f48a9431f04cda814892ee57e2906020016111b3565b6000610b9e826130b0565b3233146123855760405162461bcd60e51b8152600401610bce90613c33565b6002600c54600160a01b900460ff1660048111156123a5576123a5613781565b146123eb5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b6329034b9903737ba1030b1ba34bb329760511b6044820152606401610bce565b61244582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040516001600160601b03193360601b16602082015290925060340190506115bd565b6124825760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000000003836124ad3361235b565b6124b79190613c68565b11156116eb5760405162461bcd60e51b8152600401610bce90613c80565b600c546001600160a01b031633146124ff5760405162461bcd60e51b8152600401610bce90613af7565b6001600160a01b0381166125645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bce565b61105481612e9a565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60035460ff1661261b5760405162461bcd60e51b815260206004820152601c60248201527f546f6b656e207472616e7366657273206e6f7420616c6c6f7765642e000000006044820152606401610bce565b600061262682612b42565b80519091506000906001600160a01b0316336001600160a01b0316148061265d57503361265284610d78565b6001600160a01b0316145b8061266f5750815161266f9033610a9e565b90508061268e5760405162461bcd60e51b8152600401610bce90613be1565b846001600160a01b031682600001516001600160a01b0316146127025760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bce565b6001600160a01b0384166127665760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bce565b612776600084846000015161256d565b6001600160a01b03851660009081526008602052604081208054600192906127a89084906001600160801b0316613d9a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260086020526040812080546001945090926127f491859116613dc2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561287c846001613c68565b6000818152600760205260409020549091506001600160a01b031661290e576128a6816002541190565b1561290e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816129a85760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610bce565b600060016129b68484613c68565b6129c09190613cc4565b90506129ed60017f0000000000000000000000000000000000000000000000000000000000001a0a613cc4565b811115612a2257612a1f60017f0000000000000000000000000000000000000000000000000000000000001a0a613cc4565b90505b612a2d816002541190565b612a885760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610bce565b815b818111612b2e576000818152600760205260409020546001600160a01b0316612b1c576000612ab882612b42565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80612b2681613bc6565b915050612a8a565b50612b3a816001613c68565b600b55505050565b6040805180820190915260008082526020820152612b61826002541190565b612bc05760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610bce565b60007f0000000000000000000000000000000000000000000000000000000000001a0a8310612c2157612c137f0000000000000000000000000000000000000000000000000000000000001a0a84613cc4565b612c1e906001613c68565b90505b825b818110612c8b576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612c7857949350505050565b5080612c8381613ded565b915050612c23565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bce565b6000612cf782611a5a565b9050612d056000838361256d565b6001600160a01b0381166000908152600860205260408120805460019290612d379084906001600160801b0316613d9a565b82546001600160801b039182166101009390930a928302919092021990911617905550604080518082018252600080825267ffffffffffffffff428116602080850191825287845260079052848320935184549151909216600160a01b026001600160e01b03199091166001600160a01b03928316171790925591518492918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45b5050565b600082612df0858461314e565b14949350505050565b612ddf8282604051806020016040528060008152506131c2565b80341015612e5c5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610bce565b8034111561105457336108fc612e728334613cc4565b6040518115909202916000818181858888f19350505050158015612ddf573d6000803e3d6000fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15612fee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f30903390899088908890600401613e04565b602060405180830381600087803b158015612f4a57600080fd5b505af1925050508015612f7a575060408051601f3d908101601f19168201909252612f7791810190613e41565b60015b612fd4573d808015612fa8576040519150601f19603f3d011682016040523d82523d6000602084013e612fad565b606091505b508051612fcc5760405162461bcd60e51b8152600401610bce90613d0a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ff2565b5060015b949350505050565b6060613007826002541190565b61306b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bce565b600061307561349d565b905060008151116130955760405180602001604052806000815250612035565b8061309f846134ac565b604051602001612025929190613e5e565b60006001600160a01b0382166131225760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bce565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b600081815b84518110156131ba57600085828151811061317057613170613e84565b6020026020010151905080831161319657600083815260208290526040902092506131a7565b600081815260208490526040902092505b50806131b281613bc6565b915050613153565b509392505050565b6002546001600160a01b0384166132255760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bce565b613230816002541190565b1561327d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bce565b7f0000000000000000000000000000000000000000000000000000000000001a0a8311156132f85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bce565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613354908790613dc2565b6001600160801b031681526020018583602001516133729190613dc2565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156134925760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46134566000888488612eec565b6134725760405162461bcd60e51b8152600401610bce90613d0a565b8161347c81613bc6565b925050808061348a90613bc6565b915050613409565b506002819055612950565b606060068054610cf590613b2c565b6060816134d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156134fa57806134e481613bc6565b91506134f39050600a83613bb2565b91506134d4565b60008167ffffffffffffffff811115613515576135156139db565b6040519080825280601f01601f19166020018201604052801561353f576020820181803683370190505b5090505b8415612ff257613554600183613cc4565b9150613561600a86613d86565b61356c906030613c68565b60f81b81838151811061358157613581613e84565b60200101906001600160f81b031916908160001a9053506135a3600a86613bb2565b9450613543565b8280546135b690613b2c565b90600052602060002090601f0160209004810192826135d8576000855561361e565b82601f106135f15782800160ff1982351617855561361e565b8280016001018555821561361e579182015b8281111561361e578235825591602001919060010190613603565b506118609291505b808211156118605760008155600101613626565b6001600160e01b03198116811461105457600080fd5b60006020828403121561366257600080fd5b81356120358161363a565b80356001600160a01b038116811461368457600080fd5b919050565b80356001600160601b038116811461368457600080fd5b600080604083850312156136b357600080fd5b6136bc8361366d565b91506136ca60208401613689565b90509250929050565b60005b838110156136ee5781810151838201526020016136d6565b83811115611fe15750506000910152565b600081518084526137178160208601602086016136d3565b601f01601f19169290920160200192915050565b60208152600061203560208301846136ff565b60006020828403121561375057600080fd5b5035919050565b6000806040838503121561376a57600080fd5b6137738361366d565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b60208101600583106137b957634e487b7160e01b600052602160045260246000fd5b91905290565b6000806000606084860312156137d457600080fd5b6137dd8461366d565b92506137eb6020850161366d565b9150604084013590509250925092565b6000806040838503121561380e57600080fd5b50508035926020909101359150565b60006020828403121561382f57600080fd5b81356005811061203557600080fd5b8035801515811461368457600080fd5b60006020828403121561386057600080fd5b6120358261383e565b60008060006040848603121561387e57600080fd5b83359250602084013567ffffffffffffffff8082111561389d57600080fd5b818601915086601f8301126138b157600080fd5b8135818111156138c057600080fd5b8760208260051b85010111156138d557600080fd5b6020830194508093505050509250925092565b600080602083850312156138fb57600080fd5b823567ffffffffffffffff8082111561391357600080fd5b818501915085601f83011261392757600080fd5b81358181111561393657600080fd5b86602082850101111561394857600080fd5b60209290920196919550909350505050565b60008060006060848603121561396f57600080fd5b8335925061397f6020850161366d565b915061398d60408501613689565b90509250925092565b6000602082840312156139a857600080fd5b6120358261366d565b600080604083850312156139c457600080fd5b6139cd8361366d565b91506136ca6020840161383e565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215613a0757600080fd5b613a108561366d565b9350613a1e6020860161366d565b925060408501359150606085013567ffffffffffffffff80821115613a4257600080fd5b818701915087601f830112613a5657600080fd5b813581811115613a6857613a686139db565b604051601f8201601f19908116603f01168101908382118183101715613a9057613a906139db565b816040528281528a6020848701011115613aa957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215613ae057600080fd5b613ae98361366d565b91506136ca6020840161366d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680613b4057607f821691505b60208210811415613b6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613b9757613b97613b67565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613bc157613bc1613b9c565b500490565b6000600019821415613bda57613bda613b67565b5060010190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252818101527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e604082015260600190565b60008219821115613c7b57613c7b613b67565b500190565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656040820152633232b21760e11b606082015260800190565b600082821015613cd657613cd6613b67565b500390565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008251613d6f8184602087016136d3565b64173539b7b760d91b920191825250600501919050565b600082613d9557613d95613b9c565b500690565b60006001600160801b0383811690831681811015613dba57613dba613b67565b039392505050565b60006001600160801b03808316818516808303821115613de457613de4613b67565b01949350505050565b600081613dfc57613dfc613b67565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613e37908301846136ff565b9695505050505050565b600060208284031215613e5357600080fd5b81516120358161363a565b60008351613e708184602088016136d3565b835190830190613de48183602088016136d3565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bef705e97b64ae54b9074929cf44789e636bb8f86cfc8d8ab977dc2a4433ae0c64736f6c63430008080033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000001a0a0000000000000000000000000000000000000000000000000000000000001a0a00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000194e6f7420676f696e6720746f2074656c6c20796f752079657400000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): Not going to tell you yet
Arg [1] : _maxEarlybirdMint (uint256): 1
Arg [2] : _maxPresaleMint (uint256): 3
Arg [3] : _maxPublicMint (uint256): 6666
Arg [4] : _maxSupply (uint256): 6666
Arg [5] : _reserveAmount (uint256): 200
Arg [6] : _earlyBirdTotal (uint256): 1000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [8] : 4e6f7420676f696e6720746f2074656c6c20796f752079657400000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.