ETH Price: $3,394.07 (-1.23%)
Gas: 2 Gwei

Token

0xFellaz (0xFellaz)
 

Overview

Max Total Supply

3,030 0xFellaz

Holders

687

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 0xFellaz
0x431973b9593a6f273512008670979d32ce4f756d
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:
xFellaz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract xFellaz is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    uint256 public PRICE;
    string private BASE_URI;

    bool public IS_PRE_SALE_ACTIVE;
    bool public IS_PUBLIC_SALE_ACTIVE;
    
    uint256 public MAX_FREE_MINT_PER_WALLET;
    uint256 public MAX_MINT_PER_TRANSACTION;
    
    uint256 public MAX_FREE_MINT_SUPPLY; 
    uint256 public MAX_SUPPLY;

    mapping(address => uint256) private freeMintCounts;

    constructor(uint256 price, string memory baseURI, uint256 maxFreeMintPerWallet, uint256 maxMintPerTransaction, uint256 maxFreeMintSupply, uint256 maxSupply) ERC721A("0xFellaz", "0xFellaz") {
        PRICE = price;
        BASE_URI = baseURI;

        IS_PRE_SALE_ACTIVE = false;
        IS_PUBLIC_SALE_ACTIVE = false;

        MAX_FREE_MINT_PER_WALLET = maxFreeMintPerWallet;
        MAX_MINT_PER_TRANSACTION = maxMintPerTransaction;

        MAX_FREE_MINT_SUPPLY = maxFreeMintSupply;
        MAX_SUPPLY = maxSupply;
    }

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

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "New max supply must be lower than current");
        require(newMaxSupply >= _currentIndex, "New max supply lower than total number of mints");
        MAX_SUPPLY = newMaxSupply;
    }

    function raiseMaxFreeMintSupply(uint256 newMaxFreeMintSupply) external onlyOwner {
        require(newMaxFreeMintSupply <= MAX_SUPPLY, "New max free mint supply must be lower or equal to max supply");
        require(newMaxFreeMintSupply > MAX_FREE_MINT_SUPPLY, "New max free mint supply must be higher than current");
        MAX_FREE_MINT_SUPPLY = newMaxFreeMintSupply;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        BASE_URI = newBaseURI;
    }

    function setPreSaleActive(bool preSaleIsActive) external onlyOwner {
        IS_PRE_SALE_ACTIVE = preSaleIsActive;
    }

    function setPublicSaleActive(bool publicSaleIsActive) external onlyOwner {
        IS_PUBLIC_SALE_ACTIVE = publicSaleIsActive;
    }

    modifier validMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "Must mint at least one token");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "Exceeded max tokens minted");
        _;
    }

    function freeMint(uint256 _mintAmount) public payable validMintAmount(_mintAmount) {
        require(IS_PRE_SALE_ACTIVE, "Pre-sale is not active");
        require(freeMintCounts[msg.sender] + _mintAmount <= MAX_FREE_MINT_PER_WALLET, "Max amount of free mints per wallet exceeded");
        require(totalSupply() + _mintAmount <= MAX_FREE_MINT_SUPPLY, "Max free mint supply exceeded");
        
        // Update how many free mints this address has done
        freeMintCounts[msg.sender] += _mintAmount;

        _safeMint(msg.sender, _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable validMintAmount(_mintAmount) {
        require(IS_PUBLIC_SALE_ACTIVE, "Public sale is not active");
        require(_mintAmount <= MAX_MINT_PER_TRANSACTION, "Max amount of mints per transaction exceeded");
        require(msg.value >= SafeMath.mul(PRICE, _mintAmount), "Insufficient funds");
        
        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount) public onlyOwner validMintAmount(_mintAmount) {
        _safeMint(_to, _mintAmount);
    }

    address private constant payoutAddress1 =
    0x573fbe11F7d06284b699dFd4B9C941D47700e6BA;

    address private constant payoutAddress2 =
    0x5Cb90548FaAeD7Aa5DAd107D35DEb266B1E7ED66;

    address private constant payoutAddress3 =
    0x6eF8C5eaEC11Fc6fa5bbA4BB183DFd5A1405E8cf;

    address private constant payoutAddress4 =
    0xea0F9254950C9dC5c2DD3423091ace518bd69aa9;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(payable(payoutAddress1), balance / 4);
        Address.sendValue(payable(payoutAddress2), balance / 4);
        Address.sendValue(payable(payoutAddress3), balance / 4);
        Address.sendValue(payable(payoutAddress4), balance / 4);
    }

}

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

pragma solidity ^0.8.4;

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). 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) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 3 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 14 : 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 5 of 14 : 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 6 of 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : 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 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxFreeMintPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTransaction","type":"uint256"},{"internalType":"uint256","name":"maxFreeMintSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_PRE_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_PUBLIC_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxFreeMintSupply","type":"uint256"}],"name":"raiseMaxFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"preSaleIsActive","type":"bool"}],"name":"setPreSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"publicSaleIsActive","type":"bool"}],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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"}]

60806040523480156200001157600080fd5b5060405162004e7a38038062004e7a833981810160405281019062000037919062000390565b6040518060400160405280600881526020017f307846656c6c617a0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f307846656c6c617a0000000000000000000000000000000000000000000000008152508160019080519060200190620000bb9291906200024b565b508060029080519060200190620000d49291906200024b565b505050620000f7620000eb6200017d60201b60201c565b6200018560201b60201c565b60016008819055508560098190555084600a90805190602001906200011e9291906200024b565b506000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff02191690831515021790555083600c8190555082600d8190555081600e8190555080600f81905550505050505050620005f3565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025990620004ea565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000620003126200030c8462000474565b6200044b565b905082815260208101848484011115620003315762000330620005b9565b5b6200033e848285620004b4565b509392505050565b600082601f8301126200035e576200035d620005b4565b5b815162000370848260208601620002fb565b91505092915050565b6000815190506200038a81620005d9565b92915050565b60008060008060008060c08789031215620003b057620003af620005c3565b5b6000620003c089828a0162000379565b965050602087015167ffffffffffffffff811115620003e457620003e3620005be565b5b620003f289828a0162000346565b95505060406200040589828a0162000379565b94505060606200041889828a0162000379565b93505060806200042b89828a0162000379565b92505060a06200043e89828a0162000379565b9150509295509295509295565b6000620004576200046a565b905062000465828262000520565b919050565b6000604051905090565b600067ffffffffffffffff82111562000492576200049162000585565b5b6200049d82620005c8565b9050602081019050919050565b6000819050919050565b60005b83811015620004d4578082015181840152602081019050620004b7565b83811115620004e4576000848401525b50505050565b600060028204905060018216806200050357607f821691505b602082108114156200051a576200051962000556565b5b50919050565b6200052b82620005c8565b810181811067ffffffffffffffff821117156200054d576200054c62000585565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e481620004aa565b8114620005f057600080fd5b50565b61487780620006036000396000f3fe60806040526004361061020f5760003560e01c80637c928fe911610118578063b88d4fde116100a0578063e94d75f31161006f578063e94d75f31461076b578063e985e9c514610796578063efc01729146107d3578063f0571446146107fe578063f2fde38b146108275761020f565b8063b88d4fde146106b3578063c4e9374d146106dc578063c87b56dd14610705578063e2e06fa3146107425761020f565b806391b7f5ed116100e757806391b7f5ed146105ef57806395d89b4114610618578063a0712d6814610643578063a22cb4651461065f578063a6eb27e2146106885761020f565b80637c928fe9146105525780638d859f3e1461056e5780638da5cb5b146105995780638e70d274146105c45761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780636352211e1461049857806364d2e9d0146104d557806370a08231146104fe578063715018a61461053b5761020f565b80633ccfd60b146103c9578063408cbf94146103e057806342842e0e146104095780634f6ccce7146104325761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d57806324ef901e146103365780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061383e565b610850565b6040516102489190613cf4565b60405180910390f35b34801561025d57600080fd5b5061026661099a565b6040516102739190613d0f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906138e1565b610a2c565b6040516102b09190613c8d565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906137d1565b610aa8565b005b3480156102ee57600080fd5b506102f7610bb3565b6040516103049190613f51565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906136bb565b610c08565b005b34801561034257600080fd5b5061034b610c18565b6040516103589190613f51565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906137d1565b610c1e565b6040516103959190613f51565b60405180910390f35b3480156103aa57600080fd5b506103b3610e25565b6040516103c09190613f51565b60405180910390f35b3480156103d557600080fd5b506103de610e2b565b005b3480156103ec57600080fd5b50610407600480360381019061040291906137d1565b610fad565b005b34801561041557600080fd5b50610430600480360381019061042b91906136bb565b6110fa565b005b34801561043e57600080fd5b50610459600480360381019061045491906138e1565b61111a565b6040516104669190613f51565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613898565b61128b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906138e1565b611321565b6040516104cc9190613c8d565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613811565b611337565b005b34801561050a57600080fd5b506105256004803603810190610520919061364e565b6113d0565b6040516105329190613f51565b60405180910390f35b34801561054757600080fd5b506105506114a0565b005b61056c600480360381019061056791906138e1565b611528565b005b34801561057a57600080fd5b50610583611783565b6040516105909190613f51565b60405180910390f35b3480156105a557600080fd5b506105ae611789565b6040516105bb9190613c8d565b60405180910390f35b3480156105d057600080fd5b506105d96117b3565b6040516105e69190613cf4565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906138e1565b6117c6565b005b34801561062457600080fd5b5061062d61184c565b60405161063a9190613d0f565b60405180910390f35b61065d600480360381019061065891906138e1565b6118de565b005b34801561066b57600080fd5b5061068660048036038101906106819190613791565b611a90565b005b34801561069457600080fd5b5061069d611c08565b6040516106aa9190613f51565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061370e565b611c0e565b005b3480156106e857600080fd5b5061070360048036038101906106fe91906138e1565b611c61565b005b34801561071157600080fd5b5061072c600480360381019061072791906138e1565b611d9c565b6040516107399190613d0f565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613811565b611e3b565b005b34801561077757600080fd5b50610780611ed4565b60405161078d9190613cf4565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061367b565b611ee7565b6040516107ca9190613cf4565b60405180910390f35b3480156107df57600080fd5b506107e8611f7b565b6040516107f59190613f51565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906138e1565b611f81565b005b34801561083357600080fd5b5061084e6004803603810190610849919061364e565b612090565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610993575061099282612188565b5b9050919050565b6060600180546109a99061420c565b80601f01602080910402602001604051908101604052809291908181526020018280546109d59061420c565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b5050505050905090565b6000610a37826121f2565b610a6d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab382611321565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a61225a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b6561225a565b611ee7565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383612262565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c13838383612314565b505050565b600d5481565b6000610c29836113d0565b8210610c61576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e19576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d785750610e0c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0a5786841415610e01578195505050505050610e1f565b83806001019450505b505b8080600101915050610c9b565b50600080fd5b92915050565b600f5481565b610e3361225a565b73ffffffffffffffffffffffffffffffffffffffff16610e51611789565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613e51565b60405180910390fd5b60026008541415610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613f31565b60405180910390fd5b60026008819055506000479050610f2473573fbe11f7d06284b699dfd4b9c941d47700e6ba600483610f1f9190614097565b612831565b610f4e735cb90548faaed7aa5dad107d35deb266b1e7ed66600483610f499190614097565b612831565b610f78736ef8c5eaec11fc6fa5bba4bb183dfd5a1405e8cf600483610f739190614097565b612831565b610fa273ea0f9254950c9dc5c2dd3423091ace518bd69aa9600483610f9d9190614097565b612831565b506001600881905550565b610fb561225a565b73ffffffffffffffffffffffffffffffffffffffff16610fd3611789565b73ffffffffffffffffffffffffffffffffffffffff1614611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613e51565b60405180910390fd5b806000811161106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166110aa9190614041565b11156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613f11565b60405180910390fd5b6110f58383612925565b505050565b61111583838360405180602001604052806000815250611c0e565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611253576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611245578583141561123c5781945050505050611286565b82806001019350505b508080600101915050611152565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61129361225a565b73ffffffffffffffffffffffffffffffffffffffff166112b1611789565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613e51565b60405180910390fd5b80600a908051906020019061131d92919061341f565b5050565b600061132c82612943565b600001519050919050565b61133f61225a565b73ffffffffffffffffffffffffffffffffffffffff1661135d611789565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90613e51565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114a861225a565b73ffffffffffffffffffffffffffffffffffffffff166114c6611789565b73ffffffffffffffffffffffffffffffffffffffff161461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613e51565b60405180910390fd5b6115266000612beb565b565b806000811161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166115a99190614041565b11156115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613f11565b60405180910390fd5b600b60009054906101000a900460ff16611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613e71565b60405180910390fd5b600c5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116879190614041565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613d71565b60405180910390fd5b600e54826116d4610bb3565b6116de9190614041565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613ef1565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176e9190614041565b9250508190555061177f3383612925565b5050565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff1681565b6117ce61225a565b73ffffffffffffffffffffffffffffffffffffffff166117ec611789565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613e51565b60405180910390fd5b8060098190555050565b60606002805461185b9061420c565b80601f01602080910402602001604051908101604052809291908181526020018280546118879061420c565b80156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b8060008111611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1661195f9190614041565b11156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613f11565b60405180910390fd5b600b60019054906101000a900460ff166119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613e11565b60405180910390fd5b600d54821115611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90613ed1565b60405180910390fd5b611a4060095483612cb1565b341015611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613dd1565b60405180910390fd5b611a8c3383612925565b5050565b611a9861225a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b0a61225a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb761225a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613cf4565b60405180910390a35050565b600c5481565b611c19848484612314565b611c2584848484612cc7565b611c5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c6961225a565b73ffffffffffffffffffffffffffffffffffffffff16611c87611789565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613e51565b60405180910390fd5b600f548110611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613e91565b60405180910390fd5b60008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613df1565b60405180910390fd5b80600f8190555050565b6060611da7826121f2565b611ddd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611de7612e55565b9050600081511415611e085760405180602001604052806000815250611e33565b80611e1284612ee7565b604051602001611e23929190613c54565b6040516020818303038152906040525b915050919050565b611e4361225a565b73ffffffffffffffffffffffffffffffffffffffff16611e61611789565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613e51565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611f8961225a565b73ffffffffffffffffffffffffffffffffffffffff16611fa7611789565b73ffffffffffffffffffffffffffffffffffffffff1614611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490613e51565b60405180910390fd5b600f54811115612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990613d51565b60405180910390fd5b600e548111612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90613e31565b60405180910390fd5b80600e8190555050565b61209861225a565b73ffffffffffffffffffffffffffffffffffffffff166120b6611789565b73ffffffffffffffffffffffffffffffffffffffff161461210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613e51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390613d31565b60405180910390fd5b61218581612beb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612253575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061231f82612943565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661234661225a565b73ffffffffffffffffffffffffffffffffffffffff1614806123795750612378826000015161237361225a565b611ee7565b5b806123be575061238761225a565b73ffffffffffffffffffffffffffffffffffffffff166123a684610a2c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123f7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612460576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d48585856001613048565b6124e46000848460000151612262565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c15760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127c05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282a858585600161304e565b5050505050565b80471015612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90613db1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161289a90613c78565b60006040518083038185875af1925050503d80600081146128d7576040519150601f19603f3d011682016040523d82523d6000602084013e6128dc565b606091505b5050905080612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790613d91565b60405180910390fd5b505050565b61293f828260405180602001604052806000815250613054565b5050565b61294b6134a5565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612bb4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612bb257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a96578092505050612be6565b5b600115612bb157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bac578092505050612be6565b612a97565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612cbf91906140c8565b905092915050565b6000612ce88473ffffffffffffffffffffffffffffffffffffffff16613066565b15612e48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d1161225a565b8786866040518563ffffffff1660e01b8152600401612d339493929190613ca8565b602060405180830381600087803b158015612d4d57600080fd5b505af1925050508015612d7e57506040513d601f19601f82011682018060405250810190612d7b919061386b565b60015b612df8573d8060008114612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b50600081511415612df0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4d565b600190505b949350505050565b6060600a8054612e649061420c565b80601f0160208091040260200160405190810160405280929190818152602001828054612e909061420c565b8015612edd5780601f10612eb257610100808354040283529160200191612edd565b820191906000526020600020905b815481529060010190602001808311612ec057829003601f168201915b5050505050905090565b60606000821415612f2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613043565b600082905060005b60008214612f61578080612f4a9061426f565b915050600a82612f5a9190614097565b9150612f37565b60008167ffffffffffffffff811115612f7d57612f7c6143a5565b5b6040519080825280601f01601f191660200182016040528015612faf5781602001600182028036833780820191505090505b5090505b6000851461303c57600182612fc89190614122565b9150600a85612fd791906142b8565b6030612fe39190614041565b60f81b818381518110612ff957612ff8614376565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130359190614097565b9450612fb3565b8093505050505b919050565b50505050565b50505050565b6130618383836001613089565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613124576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561315f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316c6000868387613048565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133d157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561338557506133836000888488612cc7565b155b156133bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061330a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613418600086838761304e565b5050505050565b82805461342b9061420c565b90600052602060002090601f01602090048101928261344d5760008555613494565b82601f1061346657805160ff1916838001178555613494565b82800160010185558215613494579182015b82811115613493578251825591602001919060010190613478565b5b5090506134a191906134e8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135015760008160009055506001016134e9565b5090565b600061351861351384613f91565b613f6c565b905082815260208101848484011115613534576135336143d9565b5b61353f8482856141ca565b509392505050565b600061355a61355584613fc2565b613f6c565b905082815260208101848484011115613576576135756143d9565b5b6135818482856141ca565b509392505050565b600081359050613598816147e5565b92915050565b6000813590506135ad816147fc565b92915050565b6000813590506135c281614813565b92915050565b6000815190506135d781614813565b92915050565b600082601f8301126135f2576135f16143d4565b5b8135613602848260208601613505565b91505092915050565b600082601f8301126136205761361f6143d4565b5b8135613630848260208601613547565b91505092915050565b6000813590506136488161482a565b92915050565b600060208284031215613664576136636143e3565b5b600061367284828501613589565b91505092915050565b60008060408385031215613692576136916143e3565b5b60006136a085828601613589565b92505060206136b185828601613589565b9150509250929050565b6000806000606084860312156136d4576136d36143e3565b5b60006136e286828701613589565b93505060206136f386828701613589565b925050604061370486828701613639565b9150509250925092565b60008060008060808587031215613728576137276143e3565b5b600061373687828801613589565b945050602061374787828801613589565b935050604061375887828801613639565b925050606085013567ffffffffffffffff811115613779576137786143de565b5b613785878288016135dd565b91505092959194509250565b600080604083850312156137a8576137a76143e3565b5b60006137b685828601613589565b92505060206137c78582860161359e565b9150509250929050565b600080604083850312156137e8576137e76143e3565b5b60006137f685828601613589565b925050602061380785828601613639565b9150509250929050565b600060208284031215613827576138266143e3565b5b60006138358482850161359e565b91505092915050565b600060208284031215613854576138536143e3565b5b6000613862848285016135b3565b91505092915050565b600060208284031215613881576138806143e3565b5b600061388f848285016135c8565b91505092915050565b6000602082840312156138ae576138ad6143e3565b5b600082013567ffffffffffffffff8111156138cc576138cb6143de565b5b6138d88482850161360b565b91505092915050565b6000602082840312156138f7576138f66143e3565b5b600061390584828501613639565b91505092915050565b61391781614156565b82525050565b61392681614168565b82525050565b600061393782613ff3565b6139418185614009565b93506139518185602086016141d9565b61395a816143e8565b840191505092915050565b600061397082613ffe565b61397a8185614025565b935061398a8185602086016141d9565b613993816143e8565b840191505092915050565b60006139a982613ffe565b6139b38185614036565b93506139c38185602086016141d9565b80840191505092915050565b60006139dc602683614025565b91506139e7826143f9565b604082019050919050565b60006139ff603d83614025565b9150613a0a82614448565b604082019050919050565b6000613a22602c83614025565b9150613a2d82614497565b604082019050919050565b6000613a45603a83614025565b9150613a50826144e6565b604082019050919050565b6000613a68601d83614025565b9150613a7382614535565b602082019050919050565b6000613a8b601283614025565b9150613a968261455e565b602082019050919050565b6000613aae602f83614025565b9150613ab982614587565b604082019050919050565b6000613ad1601983614025565b9150613adc826145d6565b602082019050919050565b6000613af4603483614025565b9150613aff826145ff565b604082019050919050565b6000613b17602083614025565b9150613b228261464e565b602082019050919050565b6000613b3a601683614025565b9150613b4582614677565b602082019050919050565b6000613b5d602983614025565b9150613b68826146a0565b604082019050919050565b6000613b80601c83614025565b9150613b8b826146ef565b602082019050919050565b6000613ba3602c83614025565b9150613bae82614718565b604082019050919050565b6000613bc6601d83614025565b9150613bd182614767565b602082019050919050565b6000613be960008361401a565b9150613bf482614790565b600082019050919050565b6000613c0c601a83614025565b9150613c1782614793565b602082019050919050565b6000613c2f601f83614025565b9150613c3a826147bc565b602082019050919050565b613c4e816141c0565b82525050565b6000613c60828561399e565b9150613c6c828461399e565b91508190509392505050565b6000613c8382613bdc565b9150819050919050565b6000602082019050613ca2600083018461390e565b92915050565b6000608082019050613cbd600083018761390e565b613cca602083018661390e565b613cd76040830185613c45565b8181036060830152613ce9818461392c565b905095945050505050565b6000602082019050613d09600083018461391d565b92915050565b60006020820190508181036000830152613d298184613965565b905092915050565b60006020820190508181036000830152613d4a816139cf565b9050919050565b60006020820190508181036000830152613d6a816139f2565b9050919050565b60006020820190508181036000830152613d8a81613a15565b9050919050565b60006020820190508181036000830152613daa81613a38565b9050919050565b60006020820190508181036000830152613dca81613a5b565b9050919050565b60006020820190508181036000830152613dea81613a7e565b9050919050565b60006020820190508181036000830152613e0a81613aa1565b9050919050565b60006020820190508181036000830152613e2a81613ac4565b9050919050565b60006020820190508181036000830152613e4a81613ae7565b9050919050565b60006020820190508181036000830152613e6a81613b0a565b9050919050565b60006020820190508181036000830152613e8a81613b2d565b9050919050565b60006020820190508181036000830152613eaa81613b50565b9050919050565b60006020820190508181036000830152613eca81613b73565b9050919050565b60006020820190508181036000830152613eea81613b96565b9050919050565b60006020820190508181036000830152613f0a81613bb9565b9050919050565b60006020820190508181036000830152613f2a81613bff565b9050919050565b60006020820190508181036000830152613f4a81613c22565b9050919050565b6000602082019050613f666000830184613c45565b92915050565b6000613f76613f87565b9050613f82828261423e565b919050565b6000604051905090565b600067ffffffffffffffff821115613fac57613fab6143a5565b5b613fb5826143e8565b9050602081019050919050565b600067ffffffffffffffff821115613fdd57613fdc6143a5565b5b613fe6826143e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061404c826141c0565b9150614057836141c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561408c5761408b6142e9565b5b828201905092915050565b60006140a2826141c0565b91506140ad836141c0565b9250826140bd576140bc614318565b5b828204905092915050565b60006140d3826141c0565b91506140de836141c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614117576141166142e9565b5b828202905092915050565b600061412d826141c0565b9150614138836141c0565b92508282101561414b5761414a6142e9565b5b828203905092915050565b6000614161826141a0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141f75780820151818401526020810190506141dc565b83811115614206576000848401525b50505050565b6000600282049050600182168061422457607f821691505b6020821081141561423857614237614347565b5b50919050565b614247826143e8565b810181811067ffffffffffffffff82111715614266576142656143a5565b5b80604052505050565b600061427a826141c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ad576142ac6142e9565b5b600182019050919050565b60006142c3826141c0565b91506142ce836141c0565b9250826142de576142dd614318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6577206d61782066726565206d696e7420737570706c79206d75737420626560008201527f206c6f776572206f7220657175616c20746f206d617820737570706c79000000602082015250565b7f4d617820616d6f756e74206f662066726565206d696e7473207065722077616c60008201527f6c65742065786365656465640000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6577206d617820737570706c79206c6f776572207468616e20746f74616c2060008201527f6e756d626572206f66206d696e74730000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4e6577206d61782066726565206d696e7420737570706c79206d75737420626560008201527f20686967686572207468616e2063757272656e74000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5072652d73616c65206973206e6f742061637469766500000000000000000000600082015250565b7f4e6577206d617820737570706c79206d757374206265206c6f7765722074686160008201527f6e2063757272656e740000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4d617820616d6f756e74206f66206d696e747320706572207472616e7361637460008201527f696f6e2065786365656465640000000000000000000000000000000000000000602082015250565b7f4d61782066726565206d696e7420737570706c79206578636565646564000000600082015250565b50565b7f4578636565646564206d617820746f6b656e73206d696e746564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147ee81614156565b81146147f957600080fd5b50565b61480581614168565b811461481057600080fd5b50565b61481c81614174565b811461482757600080fd5b50565b614833816141c0565b811461483e57600080fd5b5056fea264697066735822122070e8394a8957d0770e7b3e85616e5eca87f84edcbb932d54595d3653aa3e023264736f6c6343000807003300000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000270f000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59446b516431384b79526b4877486334476b736170737871386b7a3376726769546f74764471614e557265522f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637c928fe911610118578063b88d4fde116100a0578063e94d75f31161006f578063e94d75f31461076b578063e985e9c514610796578063efc01729146107d3578063f0571446146107fe578063f2fde38b146108275761020f565b8063b88d4fde146106b3578063c4e9374d146106dc578063c87b56dd14610705578063e2e06fa3146107425761020f565b806391b7f5ed116100e757806391b7f5ed146105ef57806395d89b4114610618578063a0712d6814610643578063a22cb4651461065f578063a6eb27e2146106885761020f565b80637c928fe9146105525780638d859f3e1461056e5780638da5cb5b146105995780638e70d274146105c45761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046f5780636352211e1461049857806364d2e9d0146104d557806370a08231146104fe578063715018a61461053b5761020f565b80633ccfd60b146103c9578063408cbf94146103e057806342842e0e146104095780634f6ccce7146104325761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d57806324ef901e146103365780632f745c591461036157806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061383e565b610850565b6040516102489190613cf4565b60405180910390f35b34801561025d57600080fd5b5061026661099a565b6040516102739190613d0f565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906138e1565b610a2c565b6040516102b09190613c8d565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906137d1565b610aa8565b005b3480156102ee57600080fd5b506102f7610bb3565b6040516103049190613f51565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906136bb565b610c08565b005b34801561034257600080fd5b5061034b610c18565b6040516103589190613f51565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906137d1565b610c1e565b6040516103959190613f51565b60405180910390f35b3480156103aa57600080fd5b506103b3610e25565b6040516103c09190613f51565b60405180910390f35b3480156103d557600080fd5b506103de610e2b565b005b3480156103ec57600080fd5b50610407600480360381019061040291906137d1565b610fad565b005b34801561041557600080fd5b50610430600480360381019061042b91906136bb565b6110fa565b005b34801561043e57600080fd5b50610459600480360381019061045491906138e1565b61111a565b6040516104669190613f51565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613898565b61128b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba91906138e1565b611321565b6040516104cc9190613c8d565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190613811565b611337565b005b34801561050a57600080fd5b506105256004803603810190610520919061364e565b6113d0565b6040516105329190613f51565b60405180910390f35b34801561054757600080fd5b506105506114a0565b005b61056c600480360381019061056791906138e1565b611528565b005b34801561057a57600080fd5b50610583611783565b6040516105909190613f51565b60405180910390f35b3480156105a557600080fd5b506105ae611789565b6040516105bb9190613c8d565b60405180910390f35b3480156105d057600080fd5b506105d96117b3565b6040516105e69190613cf4565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906138e1565b6117c6565b005b34801561062457600080fd5b5061062d61184c565b60405161063a9190613d0f565b60405180910390f35b61065d600480360381019061065891906138e1565b6118de565b005b34801561066b57600080fd5b5061068660048036038101906106819190613791565b611a90565b005b34801561069457600080fd5b5061069d611c08565b6040516106aa9190613f51565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d5919061370e565b611c0e565b005b3480156106e857600080fd5b5061070360048036038101906106fe91906138e1565b611c61565b005b34801561071157600080fd5b5061072c600480360381019061072791906138e1565b611d9c565b6040516107399190613d0f565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613811565b611e3b565b005b34801561077757600080fd5b50610780611ed4565b60405161078d9190613cf4565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061367b565b611ee7565b6040516107ca9190613cf4565b60405180910390f35b3480156107df57600080fd5b506107e8611f7b565b6040516107f59190613f51565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906138e1565b611f81565b005b34801561083357600080fd5b5061084e6004803603810190610849919061364e565b612090565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610993575061099282612188565b5b9050919050565b6060600180546109a99061420c565b80601f01602080910402602001604051908101604052809291908181526020018280546109d59061420c565b8015610a225780601f106109f757610100808354040283529160200191610a22565b820191906000526020600020905b815481529060010190602001808311610a0557829003601f168201915b5050505050905090565b6000610a37826121f2565b610a6d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab382611321565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3a61225a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6c5750610b6a81610b6561225a565b611ee7565b155b15610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bae838383612262565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610c13838383612314565b505050565b600d5481565b6000610c29836113d0565b8210610c61576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610e19576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d785750610e0c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e0a5786841415610e01578195505050505050610e1f565b83806001019450505b505b8080600101915050610c9b565b50600080fd5b92915050565b600f5481565b610e3361225a565b73ffffffffffffffffffffffffffffffffffffffff16610e51611789565b73ffffffffffffffffffffffffffffffffffffffff1614610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613e51565b60405180910390fd5b60026008541415610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613f31565b60405180910390fd5b60026008819055506000479050610f2473573fbe11f7d06284b699dfd4b9c941d47700e6ba600483610f1f9190614097565b612831565b610f4e735cb90548faaed7aa5dad107d35deb266b1e7ed66600483610f499190614097565b612831565b610f78736ef8c5eaec11fc6fa5bba4bb183dfd5a1405e8cf600483610f739190614097565b612831565b610fa273ea0f9254950c9dc5c2dd3423091ace518bd69aa9600483610f9d9190614097565b612831565b506001600881905550565b610fb561225a565b73ffffffffffffffffffffffffffffffffffffffff16610fd3611789565b73ffffffffffffffffffffffffffffffffffffffff1614611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613e51565b60405180910390fd5b806000811161106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166110aa9190614041565b11156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290613f11565b60405180910390fd5b6110f58383612925565b505050565b61111583838360405180602001604052806000815250611c0e565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611253576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611245578583141561123c5781945050505050611286565b82806001019350505b508080600101915050611152565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61129361225a565b73ffffffffffffffffffffffffffffffffffffffff166112b1611789565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613e51565b60405180910390fd5b80600a908051906020019061131d92919061341f565b5050565b600061132c82612943565b600001519050919050565b61133f61225a565b73ffffffffffffffffffffffffffffffffffffffff1661135d611789565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa90613e51565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114a861225a565b73ffffffffffffffffffffffffffffffffffffffff166114c6611789565b73ffffffffffffffffffffffffffffffffffffffff161461151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151390613e51565b60405180910390fd5b6115266000612beb565b565b806000811161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166115a99190614041565b11156115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190613f11565b60405180910390fd5b600b60009054906101000a900460ff16611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613e71565b60405180910390fd5b600c5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116879190614041565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613d71565b60405180910390fd5b600e54826116d4610bb3565b6116de9190614041565b111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613ef1565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176e9190614041565b9250508190555061177f3383612925565b5050565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff1681565b6117ce61225a565b73ffffffffffffffffffffffffffffffffffffffff166117ec611789565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613e51565b60405180910390fd5b8060098190555050565b60606002805461185b9061420c565b80601f01602080910402602001604051908101604052809291908181526020018280546118879061420c565b80156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b8060008111611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613eb1565b60405180910390fd5b600f548160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1661195f9190614041565b11156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613f11565b60405180910390fd5b600b60019054906101000a900460ff166119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613e11565b60405180910390fd5b600d54821115611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b90613ed1565b60405180910390fd5b611a4060095483612cb1565b341015611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613dd1565b60405180910390fd5b611a8c3383612925565b5050565b611a9861225a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b0a61225a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bb761225a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bfc9190613cf4565b60405180910390a35050565b600c5481565b611c19848484612314565b611c2584848484612cc7565b611c5b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c6961225a565b73ffffffffffffffffffffffffffffffffffffffff16611c87611789565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613e51565b60405180910390fd5b600f548110611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890613e91565b60405180910390fd5b60008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990613df1565b60405180910390fd5b80600f8190555050565b6060611da7826121f2565b611ddd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611de7612e55565b9050600081511415611e085760405180602001604052806000815250611e33565b80611e1284612ee7565b604051602001611e23929190613c54565b6040516020818303038152906040525b915050919050565b611e4361225a565b73ffffffffffffffffffffffffffffffffffffffff16611e61611789565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613e51565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611f8961225a565b73ffffffffffffffffffffffffffffffffffffffff16611fa7611789565b73ffffffffffffffffffffffffffffffffffffffff1614611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490613e51565b60405180910390fd5b600f54811115612042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203990613d51565b60405180910390fd5b600e548111612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90613e31565b60405180910390fd5b80600e8190555050565b61209861225a565b73ffffffffffffffffffffffffffffffffffffffff166120b6611789565b73ffffffffffffffffffffffffffffffffffffffff161461210c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210390613e51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217390613d31565b60405180910390fd5b61218581612beb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612253575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061231f82612943565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661234661225a565b73ffffffffffffffffffffffffffffffffffffffff1614806123795750612378826000015161237361225a565b611ee7565b5b806123be575061238761225a565b73ffffffffffffffffffffffffffffffffffffffff166123a684610a2c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123f7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612460576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d48585856001613048565b6124e46000848460000151612262565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c15760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156127c05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282a858585600161304e565b5050505050565b80471015612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b90613db1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161289a90613c78565b60006040518083038185875af1925050503d80600081146128d7576040519150601f19603f3d011682016040523d82523d6000602084013e6128dc565b606091505b5050905080612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790613d91565b60405180910390fd5b505050565b61293f828260405180602001604052806000815250613054565b5050565b61294b6134a5565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612bb4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612bb257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a96578092505050612be6565b5b600115612bb157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bac578092505050612be6565b612a97565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612cbf91906140c8565b905092915050565b6000612ce88473ffffffffffffffffffffffffffffffffffffffff16613066565b15612e48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d1161225a565b8786866040518563ffffffff1660e01b8152600401612d339493929190613ca8565b602060405180830381600087803b158015612d4d57600080fd5b505af1925050508015612d7e57506040513d601f19601f82011682018060405250810190612d7b919061386b565b60015b612df8573d8060008114612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b50600081511415612df0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4d565b600190505b949350505050565b6060600a8054612e649061420c565b80601f0160208091040260200160405190810160405280929190818152602001828054612e909061420c565b8015612edd5780601f10612eb257610100808354040283529160200191612edd565b820191906000526020600020905b815481529060010190602001808311612ec057829003601f168201915b5050505050905090565b60606000821415612f2f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613043565b600082905060005b60008214612f61578080612f4a9061426f565b915050600a82612f5a9190614097565b9150612f37565b60008167ffffffffffffffff811115612f7d57612f7c6143a5565b5b6040519080825280601f01601f191660200182016040528015612faf5781602001600182028036833780820191505090505b5090505b6000851461303c57600182612fc89190614122565b9150600a85612fd791906142b8565b6030612fe39190614041565b60f81b818381518110612ff957612ff8614376565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130359190614097565b9450612fb3565b8093505050505b919050565b50505050565b50505050565b6130618383836001613089565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613124576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561315f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61316c6000868387613048565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133d157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561338557506133836000888488612cc7565b155b156133bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061330a565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613418600086838761304e565b5050505050565b82805461342b9061420c565b90600052602060002090601f01602090048101928261344d5760008555613494565b82601f1061346657805160ff1916838001178555613494565b82800160010185558215613494579182015b82811115613493578251825591602001919060010190613478565b5b5090506134a191906134e8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135015760008160009055506001016134e9565b5090565b600061351861351384613f91565b613f6c565b905082815260208101848484011115613534576135336143d9565b5b61353f8482856141ca565b509392505050565b600061355a61355584613fc2565b613f6c565b905082815260208101848484011115613576576135756143d9565b5b6135818482856141ca565b509392505050565b600081359050613598816147e5565b92915050565b6000813590506135ad816147fc565b92915050565b6000813590506135c281614813565b92915050565b6000815190506135d781614813565b92915050565b600082601f8301126135f2576135f16143d4565b5b8135613602848260208601613505565b91505092915050565b600082601f8301126136205761361f6143d4565b5b8135613630848260208601613547565b91505092915050565b6000813590506136488161482a565b92915050565b600060208284031215613664576136636143e3565b5b600061367284828501613589565b91505092915050565b60008060408385031215613692576136916143e3565b5b60006136a085828601613589565b92505060206136b185828601613589565b9150509250929050565b6000806000606084860312156136d4576136d36143e3565b5b60006136e286828701613589565b93505060206136f386828701613589565b925050604061370486828701613639565b9150509250925092565b60008060008060808587031215613728576137276143e3565b5b600061373687828801613589565b945050602061374787828801613589565b935050604061375887828801613639565b925050606085013567ffffffffffffffff811115613779576137786143de565b5b613785878288016135dd565b91505092959194509250565b600080604083850312156137a8576137a76143e3565b5b60006137b685828601613589565b92505060206137c78582860161359e565b9150509250929050565b600080604083850312156137e8576137e76143e3565b5b60006137f685828601613589565b925050602061380785828601613639565b9150509250929050565b600060208284031215613827576138266143e3565b5b60006138358482850161359e565b91505092915050565b600060208284031215613854576138536143e3565b5b6000613862848285016135b3565b91505092915050565b600060208284031215613881576138806143e3565b5b600061388f848285016135c8565b91505092915050565b6000602082840312156138ae576138ad6143e3565b5b600082013567ffffffffffffffff8111156138cc576138cb6143de565b5b6138d88482850161360b565b91505092915050565b6000602082840312156138f7576138f66143e3565b5b600061390584828501613639565b91505092915050565b61391781614156565b82525050565b61392681614168565b82525050565b600061393782613ff3565b6139418185614009565b93506139518185602086016141d9565b61395a816143e8565b840191505092915050565b600061397082613ffe565b61397a8185614025565b935061398a8185602086016141d9565b613993816143e8565b840191505092915050565b60006139a982613ffe565b6139b38185614036565b93506139c38185602086016141d9565b80840191505092915050565b60006139dc602683614025565b91506139e7826143f9565b604082019050919050565b60006139ff603d83614025565b9150613a0a82614448565b604082019050919050565b6000613a22602c83614025565b9150613a2d82614497565b604082019050919050565b6000613a45603a83614025565b9150613a50826144e6565b604082019050919050565b6000613a68601d83614025565b9150613a7382614535565b602082019050919050565b6000613a8b601283614025565b9150613a968261455e565b602082019050919050565b6000613aae602f83614025565b9150613ab982614587565b604082019050919050565b6000613ad1601983614025565b9150613adc826145d6565b602082019050919050565b6000613af4603483614025565b9150613aff826145ff565b604082019050919050565b6000613b17602083614025565b9150613b228261464e565b602082019050919050565b6000613b3a601683614025565b9150613b4582614677565b602082019050919050565b6000613b5d602983614025565b9150613b68826146a0565b604082019050919050565b6000613b80601c83614025565b9150613b8b826146ef565b602082019050919050565b6000613ba3602c83614025565b9150613bae82614718565b604082019050919050565b6000613bc6601d83614025565b9150613bd182614767565b602082019050919050565b6000613be960008361401a565b9150613bf482614790565b600082019050919050565b6000613c0c601a83614025565b9150613c1782614793565b602082019050919050565b6000613c2f601f83614025565b9150613c3a826147bc565b602082019050919050565b613c4e816141c0565b82525050565b6000613c60828561399e565b9150613c6c828461399e565b91508190509392505050565b6000613c8382613bdc565b9150819050919050565b6000602082019050613ca2600083018461390e565b92915050565b6000608082019050613cbd600083018761390e565b613cca602083018661390e565b613cd76040830185613c45565b8181036060830152613ce9818461392c565b905095945050505050565b6000602082019050613d09600083018461391d565b92915050565b60006020820190508181036000830152613d298184613965565b905092915050565b60006020820190508181036000830152613d4a816139cf565b9050919050565b60006020820190508181036000830152613d6a816139f2565b9050919050565b60006020820190508181036000830152613d8a81613a15565b9050919050565b60006020820190508181036000830152613daa81613a38565b9050919050565b60006020820190508181036000830152613dca81613a5b565b9050919050565b60006020820190508181036000830152613dea81613a7e565b9050919050565b60006020820190508181036000830152613e0a81613aa1565b9050919050565b60006020820190508181036000830152613e2a81613ac4565b9050919050565b60006020820190508181036000830152613e4a81613ae7565b9050919050565b60006020820190508181036000830152613e6a81613b0a565b9050919050565b60006020820190508181036000830152613e8a81613b2d565b9050919050565b60006020820190508181036000830152613eaa81613b50565b9050919050565b60006020820190508181036000830152613eca81613b73565b9050919050565b60006020820190508181036000830152613eea81613b96565b9050919050565b60006020820190508181036000830152613f0a81613bb9565b9050919050565b60006020820190508181036000830152613f2a81613bff565b9050919050565b60006020820190508181036000830152613f4a81613c22565b9050919050565b6000602082019050613f666000830184613c45565b92915050565b6000613f76613f87565b9050613f82828261423e565b919050565b6000604051905090565b600067ffffffffffffffff821115613fac57613fab6143a5565b5b613fb5826143e8565b9050602081019050919050565b600067ffffffffffffffff821115613fdd57613fdc6143a5565b5b613fe6826143e8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061404c826141c0565b9150614057836141c0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561408c5761408b6142e9565b5b828201905092915050565b60006140a2826141c0565b91506140ad836141c0565b9250826140bd576140bc614318565b5b828204905092915050565b60006140d3826141c0565b91506140de836141c0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614117576141166142e9565b5b828202905092915050565b600061412d826141c0565b9150614138836141c0565b92508282101561414b5761414a6142e9565b5b828203905092915050565b6000614161826141a0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141f75780820151818401526020810190506141dc565b83811115614206576000848401525b50505050565b6000600282049050600182168061422457607f821691505b6020821081141561423857614237614347565b5b50919050565b614247826143e8565b810181811067ffffffffffffffff82111715614266576142656143a5565b5b80604052505050565b600061427a826141c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142ad576142ac6142e9565b5b600182019050919050565b60006142c3826141c0565b91506142ce836141c0565b9250826142de576142dd614318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6577206d61782066726565206d696e7420737570706c79206d75737420626560008201527f206c6f776572206f7220657175616c20746f206d617820737570706c79000000602082015250565b7f4d617820616d6f756e74206f662066726565206d696e7473207065722077616c60008201527f6c65742065786365656465640000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6577206d617820737570706c79206c6f776572207468616e20746f74616c2060008201527f6e756d626572206f66206d696e74730000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4e6577206d61782066726565206d696e7420737570706c79206d75737420626560008201527f20686967686572207468616e2063757272656e74000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5072652d73616c65206973206e6f742061637469766500000000000000000000600082015250565b7f4e6577206d617820737570706c79206d757374206265206c6f7765722074686160008201527f6e2063757272656e740000000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4d617820616d6f756e74206f66206d696e747320706572207472616e7361637460008201527f696f6e2065786365656465640000000000000000000000000000000000000000602082015250565b7f4d61782066726565206d696e7420737570706c79206578636565646564000000600082015250565b50565b7f4578636565646564206d617820746f6b656e73206d696e746564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6147ee81614156565b81146147f957600080fd5b50565b61480581614168565b811461481057600080fd5b50565b61481c81614174565b811461482757600080fd5b50565b614833816141c0565b811461483e57600080fd5b5056fea264697066735822122070e8394a8957d0770e7b3e85616e5eca87f84edcbb932d54595d3653aa3e023264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000270f000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59446b516431384b79526b4877486334476b736170737871386b7a3376726769546f74764471614e557265522f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 20000000000000000
Arg [1] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmYDkQd18KyRkHwHc4Gksapsxq8kz3vrgiTotvDqaNUreR/
Arg [2] : maxFreeMintPerWallet (uint256): 5
Arg [3] : maxMintPerTransaction (uint256): 20
Arg [4] : maxFreeMintSupply (uint256): 1000
Arg [5] : maxSupply (uint256): 9999

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 000000000000000000000000000000000000000000000000000000000000270f
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d59446b516431384b79526b4877486334476b736170737871386b7a33
Arg [9] : 76726769546f74764471614e557265522f000000000000000000000000000000


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.