ETH Price: $2,489.32 (-2.57%)

Token

World of Jobs (WOJ)
 

Overview

Max Total Supply

80 WOJ

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WOJ
0x10e41e484f18a08b904eb3397baecfa4802a7177
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:
WorldOfJobs

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : WorldOfJobs.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract WorldOfJobs is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public maxPublicMint = 25;
    uint256 public maxWhitelistMint = 3;
    uint256 public publicSalePrice = .08 ether;
    uint256 public whitelistSalePrice = .06 ether;
    uint256 public maxMintableTokenId = 1000;
    uint256 public saleNumber = 1;

    string private  baseTokenUri = "https://worldofjobs.io/files/metadata/";

    bool public isPublicSaleActive = false;
    bool public isWhiteListSaleActive = false;
    bool public hasTeamMinted;

    bytes32 private merkleRoot;

    mapping(uint256 => mapping(address => uint256)) public totalPublicMint;
    mapping(uint256 => mapping(address => uint256)) public totalWhitelistMint;

    constructor() ERC721A("World of Jobs", "WOJ"){}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "World of Jobs :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser {
        require(isPublicSaleActive, "World of Jobs :: Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "World of Jobs :: Beyond Max Supply");
        require((totalSupply() + _quantity) <= maxMintableTokenId, "World of Jobs :: Beyond Max Supply for current sale");
        require((totalPublicMint[saleNumber][msg.sender] + _quantity) <= maxPublicMint, "World of Jobs :: Already minted 25 times!");
        require(msg.value >= (publicSalePrice * _quantity), "World of Jobs :: Below ");
        totalPublicMint[saleNumber][msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser {
        require(isWhiteListSaleActive, "World of Jobs :: Minting is on Pause");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "World of Jobs :: Cannot mint beyond max supply");
        require((totalSupply() + _quantity) <= maxMintableTokenId, "World of Jobs :: Beyond Max Supply for current sale");
        require((totalWhitelistMint[saleNumber][msg.sender] + _quantity) <= maxWhitelistMint, "World of Jobs :: Cannot mint beyond whitelist max mint!");
        require(msg.value >= (whitelistSalePrice * _quantity), "World of Jobs :: Payment is below the price");
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "World of Jobs :: You are not whitelisted");
        totalWhitelistMint[saleNumber][msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint() external onlyOwner {
        require(!hasTeamMinted, "World of Jobs :: Team already minted");
        hasTeamMinted = true;
        _safeMint(msg.sender, 50);
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        uint256 trueId = tokenId + 1;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function setMaxPublicMint(uint256 _newMax) public onlyOwner() {
        maxPublicMint = _newMax;
    }

    function setMaxWhitelistMint(uint256 _newMax) public onlyOwner() {
        maxWhitelistMint = _newMax;
    }

    function setPublicPrice(uint256 _newPrice) public onlyOwner() {
        publicSalePrice = _newPrice;
    }

    function setWhitelistPrice(uint256 _newPrice) public onlyOwner() {
        whitelistSalePrice = _newPrice;
    }

    function incrementSale(uint256 _saleNumber) public onlyOwner() {
        saleNumber = _saleNumber;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }

    function toggleWhiteListSale() external onlyOwner {
        isWhiteListSaleActive = !isWhiteListSaleActive;
    }

    function togglePublicSale() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 2 of 12 : 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/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 MintToZeroAddress();
    error MintZeroQuantity();
    error OwnerQueryForNonexistentToken();
    error TransferCallerNotOwnerNorApproved();
    error TransferFromIncorrectOwner();
    error TransferToNonERC721ReceiverImplementer();
    error TransferToZeroAddress();
    error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    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;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = 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 virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

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

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

    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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint64(quantity);
        _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

File 6 of 12 : 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 12 : 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 12 : 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 12 : 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 12 : 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 11 of 12 : 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 12 of 12 : 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasTeamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleNumber","type":"uint256"}],"name":"incrementSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhiteListSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintableTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWhitelistPrice","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260196009556003600a5567011c37937e080000600b5566d529ae9e860000600c556103e8600d556001600e5560405180606001604052806026815260200162004c2060269139600f90805190602001906200006192919062000255565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000a557600080fd5b506040518060400160405280600d81526020017f576f726c64206f66204a6f6273000000000000000000000000000000000000008152506040518060400160405280600381526020017f574f4a000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012a92919062000255565b5080600390805190602001906200014392919062000255565b50620001546200018260201b60201c565b60008190555050506200017c620001706200018760201b60201c565b6200018f60201b60201c565b62000369565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002639062000334565b90600052602060002090601f016020900481019282620002875760008555620002d3565b82601f10620002a257805160ff1916838001178555620002d3565b82800160010185558215620002d3579182015b82811115620002d2578251825591602001919060010190620002b5565b5b509050620002e29190620002e6565b5090565b5b8082111562000301576000816000905550600101620002e7565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034d57607f821691505b60208210810362000363576200036262000305565b5b50919050565b6148a780620003796000396000f3fe60806040526004361061025c5760003560e01c8063717d57d311610144578063ba7a86b8116100b6578063c87b56dd1161007a578063c87b56dd1461087e578063cabadaa0146108bb578063e222c7f9146108e6578063e985e9c5146108fd578063f2fde38b1461093a578063f6a7657c146109635761025c565b8063ba7a86b8146107bd578063c1173250146107d4578063c1b2bd5a146107ff578063c62752551461082a578063c6b1a291146108535761025c565b80638da5cb5b116101085780638da5cb5b146106ce57806395d89b41146106f95780639b6860c814610724578063a0712d681461074f578063a22cb4651461076b578063b88d4fde146107945761025c565b8063717d57d3146105ff57806371978011146106285780637cb64759146106515780638bb64a8c1461067a5780638c910774146106915761025c565b80632904e6d9116101dd57806345ecfb17116101a157806345ecfb17146104db57806349590657146105065780634db86cb1146105315780636352211e1461056e57806370a08231146105ab578063715018a6146105e85761025c565b80632904e6d914610429578063309a36861461044557806332cb6b0c146104705780633ccfd60b1461049b57806342842e0e146104b25761025c565b8063095ea7b311610224578063095ea7b31461035857806318160ddd146103815780631e84c413146103ac57806323b872dd146103d7578063270ab52c146104005761025c565b806301ffc9a714610261578063032a29501461029e5780630675b7c6146102c757806306fdde03146102f0578063081812fc1461031b575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613317565b61098e565b604051610295919061335f565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906133b0565b610a70565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190613523565b610af6565b005b3480156102fc57600080fd5b50610305610b8c565b60405161031291906135f4565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906133b0565b610c1e565b60405161034f9190613657565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061369e565b610c9a565b005b34801561038d57600080fd5b50610396610da4565b6040516103a391906136ed565b60405180910390f35b3480156103b857600080fd5b506103c1610dbb565b6040516103ce919061335f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613708565b610dce565b005b34801561040c57600080fd5b50610427600480360381019061042291906133b0565b610dde565b005b610443600480360381019061043e9190613859565b610e64565b005b34801561045157600080fd5b5061045a6111b0565b60405161046791906136ed565b60405180910390f35b34801561047c57600080fd5b506104856111b6565b60405161049291906136ed565b60405180910390f35b3480156104a757600080fd5b506104b06111bc565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613708565b611281565b005b3480156104e757600080fd5b506104f06112a1565b6040516104fd919061335f565b60405180910390f35b34801561051257600080fd5b5061051b6112b4565b60405161052891906138c4565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906138df565b6112be565b60405161056591906136ed565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906133b0565b6112e3565b6040516105a29190613657565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061391f565b6112f9565b6040516105df91906136ed565b60405180910390f35b3480156105f457600080fd5b506105fd6113c8565b005b34801561060b57600080fd5b50610626600480360381019061062191906133b0565b611450565b005b34801561063457600080fd5b5061064f600480360381019061064a91906133b0565b6114d6565b005b34801561065d57600080fd5b506106786004803603810190610673919061394c565b61155c565b005b34801561068657600080fd5b5061068f6115e2565b005b34801561069d57600080fd5b506106b860048036038101906106b391906138df565b61168a565b6040516106c591906136ed565b60405180910390f35b3480156106da57600080fd5b506106e36116af565b6040516106f09190613657565b60405180910390f35b34801561070557600080fd5b5061070e6116d9565b60405161071b91906135f4565b60405180910390f35b34801561073057600080fd5b5061073961176b565b60405161074691906136ed565b60405180910390f35b610769600480360381019061076491906133b0565b611771565b005b34801561077757600080fd5b50610792600480360381019061078d91906139a5565b611a44565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190613a86565b611bbb565b005b3480156107c957600080fd5b506107d2611c37565b005b3480156107e057600080fd5b506107e9611d2b565b6040516107f691906136ed565b60405180910390f35b34801561080b57600080fd5b50610814611d31565b60405161082191906136ed565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906133b0565b611d37565b005b34801561085f57600080fd5b50610868611dbd565b60405161087591906136ed565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906133b0565b611dc3565b6040516108b291906135f4565b60405180910390f35b3480156108c757600080fd5b506108d0611e7d565b6040516108dd91906136ed565b60405180910390f35b3480156108f257600080fd5b506108fb611e83565b005b34801561090957600080fd5b50610924600480360381019061091f9190613b09565b611f2b565b604051610931919061335f565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c919061391f565b611fbf565b005b34801561096f57600080fd5b506109786120b6565b604051610985919061335f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a68826120c9565b5b9050919050565b610a78612133565b73ffffffffffffffffffffffffffffffffffffffff16610a966116af565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613b95565b60405180910390fd5b80600e8190555050565b610afe612133565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6116af565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b95565b60405180910390fd5b80600f9080519060200190610b889291906131c5565b5050565b606060028054610b9b90613be4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790613be4565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c298261213b565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca5826112e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b612133565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5d5750610d5b81610d56612133565b611f2b565b155b15610d94576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9f838383612189565b505050565b6000610dae61223b565b6001546000540303905090565b601060009054906101000a900460ff1681565b610dd9838383612240565b505050565b610de6612133565b73ffffffffffffffffffffffffffffffffffffffff16610e046116af565b73ffffffffffffffffffffffffffffffffffffffff1614610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613b95565b60405180910390fd5b8060098190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990613c87565b60405180910390fd5b601060019054906101000a900460ff16610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613d19565b60405180910390fd5b61271081610f2d610da4565b610f379190613d68565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613e30565b60405180910390fd5b600d5481610f84610da4565b610f8e9190613d68565b1115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613ec2565b60405180910390fd5b600a548160136000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110309190613d68565b1115611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613f54565b60405180910390fd5b80600c5461107f9190613f74565b3410156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614040565b60405180910390fd5b6000336040516020016110d491906140a8565b6040516020818303038152906040528051906020012090506110f983601154836126f4565b611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90614135565b60405180910390fd5b8160136000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190613d68565b925050819055506111ab338361270b565b505050565b600a5481565b61271081565b6111c4612133565b73ffffffffffffffffffffffffffffffffffffffff166111e26116af565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613b95565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127e573d6000803e3d6000fd5b50565b61129c83838360405180602001604052806000815250611bbb565b505050565b601060019054906101000a900460ff1681565b6000601154905090565b6012602052816000526040600020602052806000526040600020600091509150505481565b60006112ee82612729565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113d0612133565b73ffffffffffffffffffffffffffffffffffffffff166113ee6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613b95565b60405180910390fd5b61144e60006129b8565b565b611458612133565b73ffffffffffffffffffffffffffffffffffffffff166114766116af565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613b95565b60405180910390fd5b80600c8190555050565b6114de612133565b73ffffffffffffffffffffffffffffffffffffffff166114fc6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613b95565b60405180910390fd5b80600a8190555050565b611564612133565b73ffffffffffffffffffffffffffffffffffffffff166115826116af565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613b95565b60405180910390fd5b8060118190555050565b6115ea612133565b73ffffffffffffffffffffffffffffffffffffffff166116086116af565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613b95565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6013602052816000526040600020602052806000526040600020600091509150505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116e890613be4565b80601f016020809104026020016040519081016040528092919081815260200182805461171490613be4565b80156117615780601f1061173657610100808354040283529160200191611761565b820191906000526020600020905b81548152906001019060200180831161174457829003601f168201915b5050505050905090565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613c87565b60405180910390fd5b601060009054906101000a900460ff1661182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906141a1565b60405180910390fd5b6127108161183a610da4565b6118449190613d68565b1115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90614233565b60405180910390fd5b600d5481611891610da4565b61189b9190613d68565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613ec2565b60405180910390fd5b6009548160126000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461193d9190613d68565b111561197e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611975906142c5565b60405180910390fd5b80600b5461198c9190613f74565b3410156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614331565b60405180910390fd5b8060126000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a309190613d68565b92505081905550611a41338261270b565b50565b611a4c612133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611abd612133565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6a612133565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baf919061335f565b60405180910390a35050565b611bc6848484612240565b611be58373ffffffffffffffffffffffffffffffffffffffff16612a7e565b8015611bfa5750611bf884848484612aa1565b155b15611c31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c3f612133565b73ffffffffffffffffffffffffffffffffffffffff16611c5d6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613b95565b60405180910390fd5b601060029054906101000a900460ff1615611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906143c3565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550611d2933603261270b565b565b600c5481565b600e5481565b611d3f612133565b73ffffffffffffffffffffffffffffffffffffffff16611d5d6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90613b95565b60405180910390fd5b80600b8190555050565b600d5481565b6060611dce8261213b565b611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614455565b60405180910390fd5b6000600183611e1c9190613d68565b90506000600f8054611e2d90613be4565b905011611e495760405180602001604052806000815250611e75565b600f611e5482612bf1565b604051602001611e65929190614591565b6040516020818303038152906040525b915050919050565b60095481565b611e8b612133565b73ffffffffffffffffffffffffffffffffffffffff16611ea96116af565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613b95565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fc7612133565b73ffffffffffffffffffffffffffffffffffffffff16611fe56116af565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190614632565b60405180910390fd5b6120b3816129b8565b50565b601060029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161214661223b565b11158015612155575060005482105b8015612182575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061224b82612729565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122b6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122d7612133565b73ffffffffffffffffffffffffffffffffffffffff161480612306575061230585612300612133565b611f2b565b5b8061234b5750612314612133565b73ffffffffffffffffffffffffffffffffffffffff1661233384610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612384576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f78585856001612d51565b61240360008487612189565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268257600054821461268157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ed8585856001612d57565b5050505050565b6000826127018584612d5d565b1490509392505050565b612725828260405180602001604052806000815250612dd2565b5050565b61273161324b565b60008290508061273f61223b565b1115801561274e575060005481105b15612981576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128635780925050506129b3565b5b60011561297e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129795780925050506129b3565b612864565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac7612133565b8786866040518563ffffffff1660e01b8152600401612ae994939291906146a7565b6020604051808303816000875af1925050508015612b2557506040513d601f19601f82011682018060405250810190612b229190614708565b60015b612b9e573d8060008114612b55576040519150601f19603f3d011682016040523d82523d6000602084013e612b5a565b606091505b506000815103612b96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612c38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4c565b600082905060005b60008214612c6a578080612c5390614735565b915050600a82612c6391906147ac565b9150612c40565b60008167ffffffffffffffff811115612c8657612c856133f8565b5b6040519080825280601f01601f191660200182016040528015612cb85781602001600182028036833780820191505090505b5090505b60008514612d4557600182612cd191906147dd565b9150600a85612ce09190614811565b6030612cec9190613d68565b60f81b818381518110612d0257612d01614842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3e91906147ac565b9450612cbc565b8093505050505b919050565b50505050565b50505050565b60008082905060005b8451811015612dc7576000858281518110612d8457612d83614842565b5b60200260200101519050808311612da657612d9f8382612de4565b9250612db3565b612db08184612de4565b92505b508080612dbf90614735565b915050612d66565b508091505092915050565b612ddf8383836001612dfb565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612e67576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612ea1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eae6000868387612d51565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561307857506130778773ffffffffffffffffffffffffffffffffffffffff16612a7e565b5b1561313d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ed6000888480600101955088612aa1565b613123576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361307e57826000541461313857600080fd5b6131a8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361313e575b8160008190555050506131be6000868387612d57565b5050505050565b8280546131d190613be4565b90600052602060002090601f0160209004810192826131f3576000855561323a565b82601f1061320c57805160ff191683800117855561323a565b8280016001018555821561323a579182015b8281111561323957825182559160200191906001019061321e565b5b509050613247919061328e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156132a757600081600090555060010161328f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f4816132bf565b81146132ff57600080fd5b50565b600081359050613311816132eb565b92915050565b60006020828403121561332d5761332c6132b5565b5b600061333b84828501613302565b91505092915050565b60008115159050919050565b61335981613344565b82525050565b60006020820190506133746000830184613350565b92915050565b6000819050919050565b61338d8161337a565b811461339857600080fd5b50565b6000813590506133aa81613384565b92915050565b6000602082840312156133c6576133c56132b5565b5b60006133d48482850161339b565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613430826133e7565b810181811067ffffffffffffffff8211171561344f5761344e6133f8565b5b80604052505050565b60006134626132ab565b905061346e8282613427565b919050565b600067ffffffffffffffff82111561348e5761348d6133f8565b5b613497826133e7565b9050602081019050919050565b82818337600083830152505050565b60006134c66134c184613473565b613458565b9050828152602081018484840111156134e2576134e16133e2565b5b6134ed8482856134a4565b509392505050565b600082601f83011261350a576135096133dd565b5b813561351a8482602086016134b3565b91505092915050565b600060208284031215613539576135386132b5565b5b600082013567ffffffffffffffff811115613557576135566132ba565b5b613563848285016134f5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a657808201518184015260208101905061358b565b838111156135b5576000848401525b50505050565b60006135c68261356c565b6135d08185613577565b93506135e0818560208601613588565b6135e9816133e7565b840191505092915050565b6000602082019050818103600083015261360e81846135bb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364182613616565b9050919050565b61365181613636565b82525050565b600060208201905061366c6000830184613648565b92915050565b61367b81613636565b811461368657600080fd5b50565b60008135905061369881613672565b92915050565b600080604083850312156136b5576136b46132b5565b5b60006136c385828601613689565b92505060206136d48582860161339b565b9150509250929050565b6136e78161337a565b82525050565b600060208201905061370260008301846136de565b92915050565b600080600060608486031215613721576137206132b5565b5b600061372f86828701613689565b935050602061374086828701613689565b92505060406137518682870161339b565b9150509250925092565b600067ffffffffffffffff821115613776576137756133f8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61379f8161378c565b81146137aa57600080fd5b50565b6000813590506137bc81613796565b92915050565b60006137d56137d08461375b565b613458565b905080838252602082019050602084028301858111156137f8576137f7613787565b5b835b81811015613821578061380d88826137ad565b8452602084019350506020810190506137fa565b5050509392505050565b600082601f8301126138405761383f6133dd565b5b81356138508482602086016137c2565b91505092915050565b600080604083850312156138705761386f6132b5565b5b600083013567ffffffffffffffff81111561388e5761388d6132ba565b5b61389a8582860161382b565b92505060206138ab8582860161339b565b9150509250929050565b6138be8161378c565b82525050565b60006020820190506138d960008301846138b5565b92915050565b600080604083850312156138f6576138f56132b5565b5b60006139048582860161339b565b925050602061391585828601613689565b9150509250929050565b600060208284031215613935576139346132b5565b5b600061394384828501613689565b91505092915050565b600060208284031215613962576139616132b5565b5b6000613970848285016137ad565b91505092915050565b61398281613344565b811461398d57600080fd5b50565b60008135905061399f81613979565b92915050565b600080604083850312156139bc576139bb6132b5565b5b60006139ca85828601613689565b92505060206139db85828601613990565b9150509250929050565b600067ffffffffffffffff821115613a00576139ff6133f8565b5b613a09826133e7565b9050602081019050919050565b6000613a29613a24846139e5565b613458565b905082815260208101848484011115613a4557613a446133e2565b5b613a508482856134a4565b509392505050565b600082601f830112613a6d57613a6c6133dd565b5b8135613a7d848260208601613a16565b91505092915050565b60008060008060808587031215613aa057613a9f6132b5565b5b6000613aae87828801613689565b9450506020613abf87828801613689565b9350506040613ad08782880161339b565b925050606085013567ffffffffffffffff811115613af157613af06132ba565b5b613afd87828801613a58565b91505092959194509250565b60008060408385031215613b2057613b1f6132b5565b5b6000613b2e85828601613689565b9250506020613b3f85828601613689565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b7f602083613577565b9150613b8a82613b49565b602082019050919050565b60006020820190508181036000830152613bae81613b72565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bfc57607f821691505b602082108103613c0f57613c0e613bb5565b5b50919050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f742062652063616c6c6560008201527f64206279206120636f6e74726163740000000000000000000000000000000000602082015250565b6000613c71602f83613577565b9150613c7c82613c15565b604082019050919050565b60006020820190508181036000830152613ca081613c64565b9050919050565b7f576f726c64206f66204a6f6273203a3a204d696e74696e67206973206f6e205060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b6000613d03602483613577565b9150613d0e82613ca7565b604082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d738261337a565b9150613d7e8361337a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db357613db2613d39565b5b828201905092915050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f74206d696e742062657960008201527f6f6e64206d617820737570706c79000000000000000000000000000000000000602082015250565b6000613e1a602e83613577565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f576f726c64206f66204a6f6273203a3a204265796f6e64204d6178205375707060008201527f6c7920666f722063757272656e742073616c6500000000000000000000000000602082015250565b6000613eac603383613577565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f74206d696e742062657960008201527f6f6e642077686974656c697374206d6178206d696e7421000000000000000000602082015250565b6000613f3e603783613577565b9150613f4982613ee2565b604082019050919050565b60006020820190508181036000830152613f6d81613f31565b9050919050565b6000613f7f8261337a565b9150613f8a8361337a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc357613fc2613d39565b5b828202905092915050565b7f576f726c64206f66204a6f6273203a3a205061796d656e742069732062656c6f60008201527f7720746865207072696365000000000000000000000000000000000000000000602082015250565b600061402a602b83613577565b915061403582613fce565b604082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b60008160601b9050919050565b600061407882614060565b9050919050565b600061408a8261406d565b9050919050565b6140a261409d82613636565b61407f565b82525050565b60006140b48284614091565b60148201915081905092915050565b7f576f726c64206f66204a6f6273203a3a20596f7520617265206e6f742077686960008201527f74656c6973746564000000000000000000000000000000000000000000000000602082015250565b600061411f602883613577565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f576f726c64206f66204a6f6273203a3a204e6f7420596574204163746976652e600082015250565b600061418b602083613577565b915061419682614155565b602082019050919050565b600060208201905081810360008301526141ba8161417e565b9050919050565b7f576f726c64206f66204a6f6273203a3a204265796f6e64204d6178205375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b600061421d602283613577565b9150614228826141c1565b604082019050919050565b6000602082019050818103600083015261424c81614210565b9050919050565b7f576f726c64206f66204a6f6273203a3a20416c7265616479206d696e7465642060008201527f32352074696d6573210000000000000000000000000000000000000000000000602082015250565b60006142af602983613577565b91506142ba82614253565b604082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b7f576f726c64206f66204a6f6273203a3a2042656c6f7720000000000000000000600082015250565b600061431b601783613577565b9150614326826142e5565b602082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b7f576f726c64206f66204a6f6273203a3a205465616d20616c7265616479206d6960008201527f6e74656400000000000000000000000000000000000000000000000000000000602082015250565b60006143ad602483613577565b91506143b882614351565b604082019050919050565b600060208201905081810360008301526143dc816143a0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061443f602f83613577565b915061444a826143e3565b604082019050919050565b6000602082019050818103600083015261446e81614432565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546144a281613be4565b6144ac8186614475565b945060018216600081146144c757600181146144d85761450b565b60ff1983168652818601935061450b565b6144e185614480565b60005b83811015614503578154818901526001820191506020810190506144e4565b838801955050505b50505092915050565b600061451f8261356c565b6145298185614475565b9350614539818560208601613588565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061457b600583614475565b915061458682614545565b600582019050919050565b600061459d8285614495565b91506145a98284614514565b91506145b48261456e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061461c602683613577565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061467982614652565b614683818561465d565b9350614693818560208601613588565b61469c816133e7565b840191505092915050565b60006080820190506146bc6000830187613648565b6146c96020830186613648565b6146d660408301856136de565b81810360608301526146e8818461466e565b905095945050505050565b600081519050614702816132eb565b92915050565b60006020828403121561471e5761471d6132b5565b5b600061472c848285016146f3565b91505092915050565b60006147408261337a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361477257614771613d39565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147b78261337a565b91506147c28361337a565b9250826147d2576147d161477d565b5b828204905092915050565b60006147e88261337a565b91506147f38361337a565b92508282101561480657614805613d39565b5b828203905092915050565b600061481c8261337a565b91506148278361337a565b9250826148375761483661477d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203137cd31623d2fa60f44ca64178f5e3aa0eabbcd4767634af7bae6061426408a64736f6c634300080d003368747470733a2f2f776f726c646f666a6f62732e696f2f66696c65732f6d657461646174612f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063717d57d311610144578063ba7a86b8116100b6578063c87b56dd1161007a578063c87b56dd1461087e578063cabadaa0146108bb578063e222c7f9146108e6578063e985e9c5146108fd578063f2fde38b1461093a578063f6a7657c146109635761025c565b8063ba7a86b8146107bd578063c1173250146107d4578063c1b2bd5a146107ff578063c62752551461082a578063c6b1a291146108535761025c565b80638da5cb5b116101085780638da5cb5b146106ce57806395d89b41146106f95780639b6860c814610724578063a0712d681461074f578063a22cb4651461076b578063b88d4fde146107945761025c565b8063717d57d3146105ff57806371978011146106285780637cb64759146106515780638bb64a8c1461067a5780638c910774146106915761025c565b80632904e6d9116101dd57806345ecfb17116101a157806345ecfb17146104db57806349590657146105065780634db86cb1146105315780636352211e1461056e57806370a08231146105ab578063715018a6146105e85761025c565b80632904e6d914610429578063309a36861461044557806332cb6b0c146104705780633ccfd60b1461049b57806342842e0e146104b25761025c565b8063095ea7b311610224578063095ea7b31461035857806318160ddd146103815780631e84c413146103ac57806323b872dd146103d7578063270ab52c146104005761025c565b806301ffc9a714610261578063032a29501461029e5780630675b7c6146102c757806306fdde03146102f0578063081812fc1461031b575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613317565b61098e565b604051610295919061335f565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906133b0565b610a70565b005b3480156102d357600080fd5b506102ee60048036038101906102e99190613523565b610af6565b005b3480156102fc57600080fd5b50610305610b8c565b60405161031291906135f4565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906133b0565b610c1e565b60405161034f9190613657565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061369e565b610c9a565b005b34801561038d57600080fd5b50610396610da4565b6040516103a391906136ed565b60405180910390f35b3480156103b857600080fd5b506103c1610dbb565b6040516103ce919061335f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613708565b610dce565b005b34801561040c57600080fd5b50610427600480360381019061042291906133b0565b610dde565b005b610443600480360381019061043e9190613859565b610e64565b005b34801561045157600080fd5b5061045a6111b0565b60405161046791906136ed565b60405180910390f35b34801561047c57600080fd5b506104856111b6565b60405161049291906136ed565b60405180910390f35b3480156104a757600080fd5b506104b06111bc565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613708565b611281565b005b3480156104e757600080fd5b506104f06112a1565b6040516104fd919061335f565b60405180910390f35b34801561051257600080fd5b5061051b6112b4565b60405161052891906138c4565b60405180910390f35b34801561053d57600080fd5b50610558600480360381019061055391906138df565b6112be565b60405161056591906136ed565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906133b0565b6112e3565b6040516105a29190613657565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061391f565b6112f9565b6040516105df91906136ed565b60405180910390f35b3480156105f457600080fd5b506105fd6113c8565b005b34801561060b57600080fd5b50610626600480360381019061062191906133b0565b611450565b005b34801561063457600080fd5b5061064f600480360381019061064a91906133b0565b6114d6565b005b34801561065d57600080fd5b506106786004803603810190610673919061394c565b61155c565b005b34801561068657600080fd5b5061068f6115e2565b005b34801561069d57600080fd5b506106b860048036038101906106b391906138df565b61168a565b6040516106c591906136ed565b60405180910390f35b3480156106da57600080fd5b506106e36116af565b6040516106f09190613657565b60405180910390f35b34801561070557600080fd5b5061070e6116d9565b60405161071b91906135f4565b60405180910390f35b34801561073057600080fd5b5061073961176b565b60405161074691906136ed565b60405180910390f35b610769600480360381019061076491906133b0565b611771565b005b34801561077757600080fd5b50610792600480360381019061078d91906139a5565b611a44565b005b3480156107a057600080fd5b506107bb60048036038101906107b69190613a86565b611bbb565b005b3480156107c957600080fd5b506107d2611c37565b005b3480156107e057600080fd5b506107e9611d2b565b6040516107f691906136ed565b60405180910390f35b34801561080b57600080fd5b50610814611d31565b60405161082191906136ed565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906133b0565b611d37565b005b34801561085f57600080fd5b50610868611dbd565b60405161087591906136ed565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906133b0565b611dc3565b6040516108b291906135f4565b60405180910390f35b3480156108c757600080fd5b506108d0611e7d565b6040516108dd91906136ed565b60405180910390f35b3480156108f257600080fd5b506108fb611e83565b005b34801561090957600080fd5b50610924600480360381019061091f9190613b09565b611f2b565b604051610931919061335f565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c919061391f565b611fbf565b005b34801561096f57600080fd5b506109786120b6565b604051610985919061335f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a68826120c9565b5b9050919050565b610a78612133565b73ffffffffffffffffffffffffffffffffffffffff16610a966116af565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613b95565b60405180910390fd5b80600e8190555050565b610afe612133565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6116af565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b95565b60405180910390fd5b80600f9080519060200190610b889291906131c5565b5050565b606060028054610b9b90613be4565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790613be4565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c298261213b565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca5826112e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b612133565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5d5750610d5b81610d56612133565b611f2b565b155b15610d94576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9f838383612189565b505050565b6000610dae61223b565b6001546000540303905090565b601060009054906101000a900460ff1681565b610dd9838383612240565b505050565b610de6612133565b73ffffffffffffffffffffffffffffffffffffffff16610e046116af565b73ffffffffffffffffffffffffffffffffffffffff1614610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613b95565b60405180910390fd5b8060098190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990613c87565b60405180910390fd5b601060019054906101000a900460ff16610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890613d19565b60405180910390fd5b61271081610f2d610da4565b610f379190613d68565b1115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613e30565b60405180910390fd5b600d5481610f84610da4565b610f8e9190613d68565b1115610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613ec2565b60405180910390fd5b600a548160136000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110309190613d68565b1115611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613f54565b60405180910390fd5b80600c5461107f9190613f74565b3410156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890614040565b60405180910390fd5b6000336040516020016110d491906140a8565b6040516020818303038152906040528051906020012090506110f983601154836126f4565b611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90614135565b60405180910390fd5b8160136000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461119a9190613d68565b925050819055506111ab338361270b565b505050565b600a5481565b61271081565b6111c4612133565b73ffffffffffffffffffffffffffffffffffffffff166111e26116af565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613b95565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561127e573d6000803e3d6000fd5b50565b61129c83838360405180602001604052806000815250611bbb565b505050565b601060019054906101000a900460ff1681565b6000601154905090565b6012602052816000526040600020602052806000526040600020600091509150505481565b60006112ee82612729565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611360576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113d0612133565b73ffffffffffffffffffffffffffffffffffffffff166113ee6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613b95565b60405180910390fd5b61144e60006129b8565b565b611458612133565b73ffffffffffffffffffffffffffffffffffffffff166114766116af565b73ffffffffffffffffffffffffffffffffffffffff16146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613b95565b60405180910390fd5b80600c8190555050565b6114de612133565b73ffffffffffffffffffffffffffffffffffffffff166114fc6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613b95565b60405180910390fd5b80600a8190555050565b611564612133565b73ffffffffffffffffffffffffffffffffffffffff166115826116af565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613b95565b60405180910390fd5b8060118190555050565b6115ea612133565b73ffffffffffffffffffffffffffffffffffffffff166116086116af565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613b95565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6013602052816000526040600020602052806000526040600020600091509150505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116e890613be4565b80601f016020809104026020016040519081016040528092919081815260200182805461171490613be4565b80156117615780601f1061173657610100808354040283529160200191611761565b820191906000526020600020905b81548152906001019060200180831161174457829003601f168201915b5050505050905090565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613c87565b60405180910390fd5b601060009054906101000a900460ff1661182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611825906141a1565b60405180910390fd5b6127108161183a610da4565b6118449190613d68565b1115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90614233565b60405180910390fd5b600d5481611891610da4565b61189b9190613d68565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613ec2565b60405180910390fd5b6009548160126000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461193d9190613d68565b111561197e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611975906142c5565b60405180910390fd5b80600b5461198c9190613f74565b3410156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614331565b60405180910390fd5b8060126000600e54815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a309190613d68565b92505081905550611a41338261270b565b50565b611a4c612133565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611abd612133565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6a612133565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611baf919061335f565b60405180910390a35050565b611bc6848484612240565b611be58373ffffffffffffffffffffffffffffffffffffffff16612a7e565b8015611bfa5750611bf884848484612aa1565b155b15611c31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611c3f612133565b73ffffffffffffffffffffffffffffffffffffffff16611c5d6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613b95565b60405180910390fd5b601060029054906101000a900460ff1615611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906143c3565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550611d2933603261270b565b565b600c5481565b600e5481565b611d3f612133565b73ffffffffffffffffffffffffffffffffffffffff16611d5d6116af565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90613b95565b60405180910390fd5b80600b8190555050565b600d5481565b6060611dce8261213b565b611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490614455565b60405180910390fd5b6000600183611e1c9190613d68565b90506000600f8054611e2d90613be4565b905011611e495760405180602001604052806000815250611e75565b600f611e5482612bf1565b604051602001611e65929190614591565b6040516020818303038152906040525b915050919050565b60095481565b611e8b612133565b73ffffffffffffffffffffffffffffffffffffffff16611ea96116af565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690613b95565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fc7612133565b73ffffffffffffffffffffffffffffffffffffffff16611fe56116af565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190614632565b60405180910390fd5b6120b3816129b8565b50565b601060029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161214661223b565b11158015612155575060005482105b8015612182575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061224b82612729565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122b6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122d7612133565b73ffffffffffffffffffffffffffffffffffffffff161480612306575061230585612300612133565b611f2b565b5b8061234b5750612314612133565b73ffffffffffffffffffffffffffffffffffffffff1661233384610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612384576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f78585856001612d51565b61240360008487612189565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361268257600054821461268157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126ed8585856001612d57565b5050505050565b6000826127018584612d5d565b1490509392505050565b612725828260405180602001604052806000815250612dd2565b5050565b61273161324b565b60008290508061273f61223b565b1115801561274e575060005481105b15612981576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161297f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128635780925050506129b3565b5b60011561297e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129795780925050506129b3565b612864565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac7612133565b8786866040518563ffffffff1660e01b8152600401612ae994939291906146a7565b6020604051808303816000875af1925050508015612b2557506040513d601f19601f82011682018060405250810190612b229190614708565b60015b612b9e573d8060008114612b55576040519150601f19603f3d011682016040523d82523d6000602084013e612b5a565b606091505b506000815103612b96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612c38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4c565b600082905060005b60008214612c6a578080612c5390614735565b915050600a82612c6391906147ac565b9150612c40565b60008167ffffffffffffffff811115612c8657612c856133f8565b5b6040519080825280601f01601f191660200182016040528015612cb85781602001600182028036833780820191505090505b5090505b60008514612d4557600182612cd191906147dd565b9150600a85612ce09190614811565b6030612cec9190613d68565b60f81b818381518110612d0257612d01614842565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3e91906147ac565b9450612cbc565b8093505050505b919050565b50505050565b50505050565b60008082905060005b8451811015612dc7576000858281518110612d8457612d83614842565b5b60200260200101519050808311612da657612d9f8382612de4565b9250612db3565b612db08184612de4565b92505b508080612dbf90614735565b915050612d66565b508091505092915050565b612ddf8383836001612dfb565b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612e67576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612ea1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eae6000868387612d51565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561307857506130778773ffffffffffffffffffffffffffffffffffffffff16612a7e565b5b1561313d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ed6000888480600101955088612aa1565b613123576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361307e57826000541461313857600080fd5b6131a8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361313e575b8160008190555050506131be6000868387612d57565b5050505050565b8280546131d190613be4565b90600052602060002090601f0160209004810192826131f3576000855561323a565b82601f1061320c57805160ff191683800117855561323a565b8280016001018555821561323a579182015b8281111561323957825182559160200191906001019061321e565b5b509050613247919061328e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156132a757600081600090555060010161328f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f4816132bf565b81146132ff57600080fd5b50565b600081359050613311816132eb565b92915050565b60006020828403121561332d5761332c6132b5565b5b600061333b84828501613302565b91505092915050565b60008115159050919050565b61335981613344565b82525050565b60006020820190506133746000830184613350565b92915050565b6000819050919050565b61338d8161337a565b811461339857600080fd5b50565b6000813590506133aa81613384565b92915050565b6000602082840312156133c6576133c56132b5565b5b60006133d48482850161339b565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613430826133e7565b810181811067ffffffffffffffff8211171561344f5761344e6133f8565b5b80604052505050565b60006134626132ab565b905061346e8282613427565b919050565b600067ffffffffffffffff82111561348e5761348d6133f8565b5b613497826133e7565b9050602081019050919050565b82818337600083830152505050565b60006134c66134c184613473565b613458565b9050828152602081018484840111156134e2576134e16133e2565b5b6134ed8482856134a4565b509392505050565b600082601f83011261350a576135096133dd565b5b813561351a8482602086016134b3565b91505092915050565b600060208284031215613539576135386132b5565b5b600082013567ffffffffffffffff811115613557576135566132ba565b5b613563848285016134f5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135a657808201518184015260208101905061358b565b838111156135b5576000848401525b50505050565b60006135c68261356c565b6135d08185613577565b93506135e0818560208601613588565b6135e9816133e7565b840191505092915050565b6000602082019050818103600083015261360e81846135bb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061364182613616565b9050919050565b61365181613636565b82525050565b600060208201905061366c6000830184613648565b92915050565b61367b81613636565b811461368657600080fd5b50565b60008135905061369881613672565b92915050565b600080604083850312156136b5576136b46132b5565b5b60006136c385828601613689565b92505060206136d48582860161339b565b9150509250929050565b6136e78161337a565b82525050565b600060208201905061370260008301846136de565b92915050565b600080600060608486031215613721576137206132b5565b5b600061372f86828701613689565b935050602061374086828701613689565b92505060406137518682870161339b565b9150509250925092565b600067ffffffffffffffff821115613776576137756133f8565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61379f8161378c565b81146137aa57600080fd5b50565b6000813590506137bc81613796565b92915050565b60006137d56137d08461375b565b613458565b905080838252602082019050602084028301858111156137f8576137f7613787565b5b835b81811015613821578061380d88826137ad565b8452602084019350506020810190506137fa565b5050509392505050565b600082601f8301126138405761383f6133dd565b5b81356138508482602086016137c2565b91505092915050565b600080604083850312156138705761386f6132b5565b5b600083013567ffffffffffffffff81111561388e5761388d6132ba565b5b61389a8582860161382b565b92505060206138ab8582860161339b565b9150509250929050565b6138be8161378c565b82525050565b60006020820190506138d960008301846138b5565b92915050565b600080604083850312156138f6576138f56132b5565b5b60006139048582860161339b565b925050602061391585828601613689565b9150509250929050565b600060208284031215613935576139346132b5565b5b600061394384828501613689565b91505092915050565b600060208284031215613962576139616132b5565b5b6000613970848285016137ad565b91505092915050565b61398281613344565b811461398d57600080fd5b50565b60008135905061399f81613979565b92915050565b600080604083850312156139bc576139bb6132b5565b5b60006139ca85828601613689565b92505060206139db85828601613990565b9150509250929050565b600067ffffffffffffffff821115613a00576139ff6133f8565b5b613a09826133e7565b9050602081019050919050565b6000613a29613a24846139e5565b613458565b905082815260208101848484011115613a4557613a446133e2565b5b613a508482856134a4565b509392505050565b600082601f830112613a6d57613a6c6133dd565b5b8135613a7d848260208601613a16565b91505092915050565b60008060008060808587031215613aa057613a9f6132b5565b5b6000613aae87828801613689565b9450506020613abf87828801613689565b9350506040613ad08782880161339b565b925050606085013567ffffffffffffffff811115613af157613af06132ba565b5b613afd87828801613a58565b91505092959194509250565b60008060408385031215613b2057613b1f6132b5565b5b6000613b2e85828601613689565b9250506020613b3f85828601613689565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b7f602083613577565b9150613b8a82613b49565b602082019050919050565b60006020820190508181036000830152613bae81613b72565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bfc57607f821691505b602082108103613c0f57613c0e613bb5565b5b50919050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f742062652063616c6c6560008201527f64206279206120636f6e74726163740000000000000000000000000000000000602082015250565b6000613c71602f83613577565b9150613c7c82613c15565b604082019050919050565b60006020820190508181036000830152613ca081613c64565b9050919050565b7f576f726c64206f66204a6f6273203a3a204d696e74696e67206973206f6e205060008201527f6175736500000000000000000000000000000000000000000000000000000000602082015250565b6000613d03602483613577565b9150613d0e82613ca7565b604082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d738261337a565b9150613d7e8361337a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613db357613db2613d39565b5b828201905092915050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f74206d696e742062657960008201527f6f6e64206d617820737570706c79000000000000000000000000000000000000602082015250565b6000613e1a602e83613577565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f576f726c64206f66204a6f6273203a3a204265796f6e64204d6178205375707060008201527f6c7920666f722063757272656e742073616c6500000000000000000000000000602082015250565b6000613eac603383613577565b9150613eb782613e50565b604082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f576f726c64206f66204a6f6273203a3a2043616e6e6f74206d696e742062657960008201527f6f6e642077686974656c697374206d6178206d696e7421000000000000000000602082015250565b6000613f3e603783613577565b9150613f4982613ee2565b604082019050919050565b60006020820190508181036000830152613f6d81613f31565b9050919050565b6000613f7f8261337a565b9150613f8a8361337a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc357613fc2613d39565b5b828202905092915050565b7f576f726c64206f66204a6f6273203a3a205061796d656e742069732062656c6f60008201527f7720746865207072696365000000000000000000000000000000000000000000602082015250565b600061402a602b83613577565b915061403582613fce565b604082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b60008160601b9050919050565b600061407882614060565b9050919050565b600061408a8261406d565b9050919050565b6140a261409d82613636565b61407f565b82525050565b60006140b48284614091565b60148201915081905092915050565b7f576f726c64206f66204a6f6273203a3a20596f7520617265206e6f742077686960008201527f74656c6973746564000000000000000000000000000000000000000000000000602082015250565b600061411f602883613577565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f576f726c64206f66204a6f6273203a3a204e6f7420596574204163746976652e600082015250565b600061418b602083613577565b915061419682614155565b602082019050919050565b600060208201905081810360008301526141ba8161417e565b9050919050565b7f576f726c64206f66204a6f6273203a3a204265796f6e64204d6178205375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b600061421d602283613577565b9150614228826141c1565b604082019050919050565b6000602082019050818103600083015261424c81614210565b9050919050565b7f576f726c64206f66204a6f6273203a3a20416c7265616479206d696e7465642060008201527f32352074696d6573210000000000000000000000000000000000000000000000602082015250565b60006142af602983613577565b91506142ba82614253565b604082019050919050565b600060208201905081810360008301526142de816142a2565b9050919050565b7f576f726c64206f66204a6f6273203a3a2042656c6f7720000000000000000000600082015250565b600061431b601783613577565b9150614326826142e5565b602082019050919050565b6000602082019050818103600083015261434a8161430e565b9050919050565b7f576f726c64206f66204a6f6273203a3a205465616d20616c7265616479206d6960008201527f6e74656400000000000000000000000000000000000000000000000000000000602082015250565b60006143ad602483613577565b91506143b882614351565b604082019050919050565b600060208201905081810360008301526143dc816143a0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061443f602f83613577565b915061444a826143e3565b604082019050919050565b6000602082019050818103600083015261446e81614432565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546144a281613be4565b6144ac8186614475565b945060018216600081146144c757600181146144d85761450b565b60ff1983168652818601935061450b565b6144e185614480565b60005b83811015614503578154818901526001820191506020810190506144e4565b838801955050505b50505092915050565b600061451f8261356c565b6145298185614475565b9350614539818560208601613588565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061457b600583614475565b915061458682614545565b600582019050919050565b600061459d8285614495565b91506145a98284614514565b91506145b48261456e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061461c602683613577565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061467982614652565b614683818561465d565b9350614693818560208601613588565b61469c816133e7565b840191505092915050565b60006080820190506146bc6000830187613648565b6146c96020830186613648565b6146d660408301856136de565b81810360608301526146e8818461466e565b905095945050505050565b600081519050614702816132eb565b92915050565b60006020828403121561471e5761471d6132b5565b5b600061472c848285016146f3565b91505092915050565b60006147408261337a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361477257614771613d39565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147b78261337a565b91506147c28361337a565b9250826147d2576147d161477d565b5b828204905092915050565b60006147e88261337a565b91506147f38361337a565b92508282101561480657614805613d39565b5b828203905092915050565b600061481c8261337a565b91506148278361337a565b9250826148375761483661477d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203137cd31623d2fa60f44ca64178f5e3aa0eabbcd4767634af7bae6061426408a64736f6c634300080d0033

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.