ETH Price: $3,436.18 (-1.20%)
Gas: 4 Gwei

Token

Weenimals (WEEN)
 

Overview

Max Total Supply

1,829 WEEN

Holders

600

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
moon52.eth
Balance
2 WEEN
0x0798a42486DDCA75ea4138313b0F7c4146bfB074
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:
Weenimals

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

/***
 __          __      _______          _____  _       _ _        _
 \ \        / /     |__   __|        |  __ \(_)     (_) |      | |
  \ \  /\  / /_ _ _   _| | ___   ___ | |  | |_  __ _ _| |_ __ _| |
   \ \/  \/ / _` | | | | |/ _ \ / _ \| |  | | |/ _` | | __/ _` | |
    \  /\  / (_| | |_| | | (_) | (_) | |__| | | (_| | | || (_| | |
     \/  \/ \__,_|\__, |_|\___/ \___/|_____/|_|\__, |_|\__\__,_|_|
                   __/ |                        __/ |
                  |___/                        |___/
***/
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Weenimals is ERC721A, Ownable {
    using MerkleProof for bytes32[];
    using Strings for uint256;

    mapping(address => uint8) public alreadyMinted;
    uint8 public constant maxPerWallet = 4;
    uint8 public constant maxPerTransaction = 4;

    uint16 public reservedNFTsAmount;
    uint16 public currentSet = 1;

    bytes32 public merkleRoot;

    bool public preReveal = true;

    string private baseURI;
    string private preRevealBaseURI;

    bool public saleStarted = false;
    bool public publicSaleStarted = false;

    uint16 private constant basicNFTsPerSet = 2000;
    uint16 private constant reservedNFTsPerSet = 111;
    uint16 private constant numberOfSets = 4;

    uint256 public nftPrice = 0.04 ether;

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

    constructor(string memory name, string memory symbol) ERC721A(name, symbol) {
        reservedNFTsAmount = 0; // max 444
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function setPreRevealBaseURI(string memory _preRevealBaseUri) public onlyOwner {
        preRevealBaseURI = _preRevealBaseUri;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseURI = _baseUri;
    }

    function mint(
        bytes32[] memory proof,
        bytes32 leaf,
        uint8 amount
    ) public payable {
        require(
            amount <= maxPerTransaction,
            string(abi.encodePacked("Cannot mint more than 4 in a single transaction"))
        );
        require(msg.value == (nftPrice * amount), "The price is invalid");
        require(saleStarted == true, "The sale is paused");
        require(totalSupply() - reservedNFTsAmount + amount <= currentSet * basicNFTsPerSet, "Set limit reached");
        require(alreadyMinted[msg.sender] + amount <= maxPerWallet, "Amount requested is over max amount per wallet");

        if (publicSaleStarted == false) {
            require(keccak256(abi.encodePacked(msg.sender)) == leaf, "This leaf does not belong to the sender");
            require(proof.verify(merkleRoot, leaf), "You are not in the list");
        }

        alreadyMinted[msg.sender] += amount;

        _mint(msg.sender, amount);

        if (currentSet * basicNFTsPerSet == totalSupply() - reservedNFTsAmount) {
            saleStarted = false;
        }
    }

    function reserveNFT(address to, uint16 amount) public onlyOwner {
        require(reservedNFTsAmount + amount <= currentSet * reservedNFTsPerSet, "Set limit reached");

        reservedNFTsAmount += amount;

        _mint(to, amount);
    }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

    function enableNextSet() public onlyOwner {
        require(currentSet < numberOfSets, "There are no more sets");

        currentSet++;
    }

    function togglePublicSale() public onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }

    function setNFTPrice(uint256 price) public onlyOwner {
        nftPrice = price;
    }

    function reveal() public onlyOwner {
        preReveal = false;
    }

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

    function withdrawToSplitter() external onlyOwner {
        payable(0x763234369021a600A5ed3707Ff7498DaA7dFa365).transfer(address(this).balance);
    }

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

        if (preReveal == true) return string(abi.encodePacked(preRevealBaseURI, tokenId.toString()));
        else return string(abi.encodePacked(baseURI, tokenId.toString()));
    }
}

File 2 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 3 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

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

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

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

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

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

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

        if (_msgSender() != owner) if(!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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT

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) {
        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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 6 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

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

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 13 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableNextSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNFTsAmount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealBaseUri","type":"string"}],"name":"setPreRevealBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"togglePublicSale","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60026101000a81548161ffff021916908361ffff1602179055506001600c60006101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550668e1bc9bf0400006010553480156200008b57600080fd5b5060405162004a4d38038062004a4d8339818101604052810190620000b191906200033c565b81818160029080519060200190620000cb9291906200021a565b508060039080519060200190620000e49291906200021a565b50620000f56200014360201b60201c565b60008190555050506200011d620001116200014c60201b60201c565b6200015460201b60201c565b6000600a60006101000a81548161ffff021916908361ffff16021790555050506200051f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002289062000444565b90600052602060002090601f0160209004810192826200024c576000855562000298565b82601f106200026757805160ff191683800117855562000298565b8280016001018555821562000298579182015b82811115620002975782518255916020019190600101906200027a565b5b509050620002a79190620002ab565b5090565b5b80821115620002c6576000816000905550600101620002ac565b5090565b6000620002e1620002db84620003d8565b620003af565b905082815260208101848484011115620002fa57600080fd5b620003078482856200040e565b509392505050565b600082601f8301126200032157600080fd5b815162000333848260208601620002ca565b91505092915050565b600080604083850312156200035057600080fd5b600083015167ffffffffffffffff8111156200036b57600080fd5b62000379858286016200030f565b925050602083015167ffffffffffffffff8111156200039757600080fd5b620003a5858286016200030f565b9150509250929050565b6000620003bb620003ce565b9050620003c982826200047a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003f657620003f5620004df565b5b62000401826200050e565b9050602081019050919050565b60005b838110156200042e57808201518184015260208101905062000411565b838111156200043e576000848401525b50505050565b600060028204905060018216806200045d57607f821691505b60208210811415620004745762000473620004b0565b5b50919050565b62000485826200050e565b810181811067ffffffffffffffff82111715620004a757620004a6620004df565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61451e806200052f6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b499c0f0116100ab578063cc898d931161006f578063cc898d93146107f4578063e222c7f91461080b578063e985e9c514610822578063f2fde38b1461085f578063f38ade9b146108885761023b565b8063b499c0f014610732578063b66a0e5d1461074e578063b74e94cf14610765578063b88d4fde1461078e578063c87b56dd146107b75761023b565b806395d89b41116100f257806395d89b4114610671578063a22cb4651461069c578063a2e91477146106c5578063a475b5dd146106f0578063aa4e891a146107075761023b565b806370a08231146105a0578063715018a6146105dd5780637cb64759146105f457806381530b681461061d5780638da5cb5b146106465761023b565b80633ccfd60b116101bc5780634b980d67116101805780634b980d67146104cd57806355367ba9146104f857806355f804b31461050f5780635c474f9e146105385780636352211e146105635761023b565b80633ccfd60b146104205780633cdc5db21461043757806342842e0e1461046257806342dc08521461048b578063453c2310146104a25761023b565b80630d39fc81116102035780630d39fc811461034b57806318160ddd1461037657806323b872dd146103a15780632eb4a7ab146103ca57806330b86627146103f55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630a398b881461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061357f565b6108b1565b6040516102749190613a4d565b60405180910390f35b34801561028957600080fd5b50610292610993565b60405161029f9190613a83565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613612565b610a25565b6040516102dc91906139e6565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134b3565b610aa1565b005b34801561031a57600080fd5b506103356004803603810190610330919061330c565b610ba6565b6040516103429190613c1b565b60405180910390f35b34801561035757600080fd5b50610360610bc6565b60405161036d9190613c00565b60405180910390f35b34801561038257600080fd5b5061038b610bcc565b6040516103989190613c00565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613371565b610be3565b005b3480156103d657600080fd5b506103df610bf3565b6040516103ec9190613a68565b60405180910390f35b34801561040157600080fd5b5061040a610bf9565b6040516104179190613be5565b60405180910390f35b34801561042c57600080fd5b50610435610c0d565b005b34801561044357600080fd5b5061044c610cd2565b6040516104599190613be5565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190613371565b610ce6565b005b34801561049757600080fd5b506104a0610d06565b005b3480156104ae57600080fd5b506104b7610e1a565b6040516104c49190613c1b565b60405180910390f35b3480156104d957600080fd5b506104e2610e1f565b6040516104ef9190613c1b565b60405180910390f35b34801561050457600080fd5b5061050d610e24565b005b34801561051b57600080fd5b50610536600480360381019061053191906135d1565b610ebd565b005b34801561054457600080fd5b5061054d610f53565b60405161055a9190613a4d565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613612565b610f66565b60405161059791906139e6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061330c565b610f7c565b6040516105d49190613c00565b60405180910390f35b3480156105e957600080fd5b506105f261104c565b005b34801561060057600080fd5b5061061b60048036038101906106169190613556565b6110d4565b005b34801561062957600080fd5b50610644600480360381019061063f9190613612565b61115a565b005b34801561065257600080fd5b5061065b6111e0565b60405161066891906139e6565b60405180910390f35b34801561067d57600080fd5b5061068661120a565b6040516106939190613a83565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be919061343b565b61129c565b005b3480156106d157600080fd5b506106da611414565b6040516106e79190613a4d565b60405180910390f35b3480156106fc57600080fd5b50610705611427565b005b34801561071357600080fd5b5061071c6114c0565b6040516107299190613a4d565b60405180910390f35b61074c600480360381019061074791906134ef565b6114d3565b005b34801561075a57600080fd5b506107636118ea565b005b34801561077157600080fd5b5061078c60048036038101906107879190613477565b611983565b005b34801561079a57600080fd5b506107b560048036038101906107b091906133c0565b611acc565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613612565b611b44565b6040516107eb9190613a83565b60405180910390f35b34801561080057600080fd5b50610809611c0f565b005b34801561081757600080fd5b50610820611ce8565b005b34801561082e57600080fd5b5061084960048036038101906108449190613335565b611d90565b6040516108569190613a4d565b60405180910390f35b34801561086b57600080fd5b506108866004803603810190610881919061330c565b611e24565b005b34801561089457600080fd5b506108af60048036038101906108aa91906135d1565b611f1c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098c575061098b82611fb2565b5b9050919050565b6060600280546109a290613fdc565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce90613fdc565b8015610a1b5780601f106109f057610100808354040283529160200191610a1b565b820191906000526020600020905b8154815290600101906020018083116109fe57829003601f168201915b5050505050905090565b6000610a308261201c565b610a66576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aac82610f66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3361206a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9657610b5f81610b5a61206a565b611d90565b610b95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ba1838383612072565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610bd6612124565b6001546000540303905090565b610bee83838361212d565b505050565b600b5481565b600a60029054906101000a900461ffff1681565b610c1561206a565b73ffffffffffffffffffffffffffffffffffffffff16610c336111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613b85565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ccf573d6000803e3d6000fd5b50565b600a60009054906101000a900461ffff1681565b610d0183838360405180602001604052806000815250611acc565b505050565b610d0e61206a565b73ffffffffffffffffffffffffffffffffffffffff16610d2c6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613b85565b60405180910390fd5b600461ffff16600a60029054906101000a900461ffff1661ffff1610610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613b05565b60405180910390fd5b600a600281819054906101000a900461ffff1680929190610dfd9061403f565b91906101000a81548161ffff021916908361ffff16021790555050565b600481565b600481565b610e2c61206a565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790613b85565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b610ec561206a565b73ffffffffffffffffffffffffffffffffffffffff16610ee36111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613b85565b60405180910390fd5b80600d9080519060200190610f4f929190613018565b5050565b600f60009054906101000a900460ff1681565b6000610f71826125e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61105461206a565b73ffffffffffffffffffffffffffffffffffffffff166110726111e0565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613b85565b60405180910390fd5b6110d2600061286e565b565b6110dc61206a565b73ffffffffffffffffffffffffffffffffffffffff166110fa6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613b85565b60405180910390fd5b80600b8190555050565b61116261206a565b73ffffffffffffffffffffffffffffffffffffffff166111806111e0565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613b85565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121990613fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461124590613fdc565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b5050505050905090565b6112a461206a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611309576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131661206a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c361206a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114089190613a4d565b60405180910390a35050565b600f60019054906101000a900460ff1681565b61142f61206a565b73ffffffffffffffffffffffffffffffffffffffff1661144d6111e0565b73ffffffffffffffffffffffffffffffffffffffff16146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613b85565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b600460ff168160ff1611156040516020016114ed906139d1565b6040516020818303038152906040529061153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349190613a83565b60405180910390fd5b508060ff1660105461154f9190613e73565b3414611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613ba5565b60405180910390fd5b60011515600f60009054906101000a900460ff161515146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90613b65565b60405180910390fd5b6107d0600a60029054906101000a900461ffff166116049190613e37565b61ffff168160ff16600a60009054906101000a900461ffff1661ffff16611629610bcc565b6116339190613ecd565b61163d9190613d79565b111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590613b45565b60405180910390fd5b600460ff1681600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116db9190613dcf565b60ff16111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613ae5565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156117fa57813360405160200161174d9190613966565b60405160208183030381529060405280519060200120146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613bc5565b60405180910390fd5b6117ba600b5483856129349092919063ffffffff16565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613b25565b60405180910390fd5b5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118559190613dcf565b92506101000a81548160ff021916908360ff16021790555061187a338260ff16612a10565b600a60009054906101000a900461ffff1661ffff16611897610bcc565b6118a19190613ecd565b6107d0600a60029054906101000a900461ffff166118bf9190613e37565b61ffff1614156118e5576000600f60006101000a81548160ff0219169083151502179055505b505050565b6118f261206a565b73ffffffffffffffffffffffffffffffffffffffff166119106111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613b85565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b61198b61206a565b73ffffffffffffffffffffffffffffffffffffffff166119a96111e0565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613b85565b60405180910390fd5b606f600a60029054906101000a900461ffff16611a1c9190613e37565b61ffff1681600a60009054906101000a900461ffff16611a3c9190613d41565b61ffff161115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613b45565b60405180910390fd5b80600a60008282829054906101000a900461ffff16611aa09190613d41565b92506101000a81548161ffff021916908361ffff160217905550611ac8828261ffff16612a10565b5050565b611ad784848461212d565b611af68373ffffffffffffffffffffffffffffffffffffffff16612cec565b15611b3e57611b0784848484612cff565b611b3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4f8261201c565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613aa5565b60405180910390fd5b60011515600c60009054906101000a900460ff1615151415611bdc57600e611bb583612e5f565b604051602001611bc69291906139ad565b6040516020818303038152906040529050611c0a565b600d611be783612e5f565b604051602001611bf89291906139ad565b60405160208183030381529060405290505b919050565b611c1761206a565b73ffffffffffffffffffffffffffffffffffffffff16611c356111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613b85565b60405180910390fd5b73763234369021a600a5ed3707ff7498daa7dfa36573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611ce5573d6000803e3d6000fd5b50565b611cf061206a565b73ffffffffffffffffffffffffffffffffffffffff16611d0e6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b90613b85565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2c61206a565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613ac5565b60405180910390fd5b611f198161286e565b50565b611f2461206a565b73ffffffffffffffffffffffffffffffffffffffff16611f426111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90613b85565b60405180910390fd5b80600e9080519060200190611fae929190613018565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612027612124565b11158015612036575060005482105b8015612063575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612138826125e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121c461206a565b73ffffffffffffffffffffffffffffffffffffffff1614806121f357506121f2856121ed61206a565b611d90565b5b80612238575061220161206a565b73ffffffffffffffffffffffffffffffffffffffff1661222084610a25565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612271576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e5858585600161300c565b6122f160008487612072565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561257157600054821461257057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125dc8585856001613012565b5050505050565b6125eb61309e565b6000829050806125f9612124565b1161283757600054811015612836576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161283457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612718578092505050612869565b5b60011561283357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282e578092505050612869565b612719565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8551811015612a02576000868281518110612981577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116129c25782816040516020016129a5929190613981565b6040516020818303038152906040528051906020012092506129ee565b80836040516020016129d5929190613981565b6040516020818303038152906040528051906020012092505b5080806129fa9061406a565b91505061293d565b508381149150509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ab8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ac5600084838561300c565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c6857816000819055505050612ce76000848385613012565b505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2561206a565b8786866040518563ffffffff1660e01b8152600401612d479493929190613a01565b602060405180830381600087803b158015612d6157600080fd5b505af1925050508015612d9257506040513d601f19601f82011682018060405250810190612d8f91906135a8565b60015b612e0c573d8060008114612dc2576040519150601f19603f3d011682016040523d82523d6000602084013e612dc7565b606091505b50600081511415612e04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613007565b600082905060005b60008214612ed9578080612ec29061406a565b915050600a82612ed29190613e06565b9150612eaf565b60008167ffffffffffffffff811115612f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f4d5781602001600182028036833780820191505090505b5090505b6000851461300057600182612f669190613ecd565b9150600a85612f7591906140e1565b6030612f819190613d79565b60f81b818381518110612fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ff99190613e06565b9450612f51565b8093505050505b919050565b50505050565b50505050565b82805461302490613fdc565b90600052602060002090601f016020900481019282613046576000855561308d565b82601f1061305f57805160ff191683800117855561308d565b8280016001018555821561308d579182015b8281111561308c578251825591602001919060010190613071565b5b50905061309a91906130e1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130fa5760008160009055506001016130e2565b5090565b600061311161310c84613c5b565b613c36565b9050808382526020820190508285602086028201111561313057600080fd5b60005b858110156131605781613146888261323a565b845260208401935060208301925050600181019050613133565b5050509392505050565b600061317d61317884613c87565b613c36565b90508281526020810184848401111561319557600080fd5b6131a0848285613f9a565b509392505050565b60006131bb6131b684613cb8565b613c36565b9050828152602081018484840111156131d357600080fd5b6131de848285613f9a565b509392505050565b6000813590506131f581614447565b92915050565b600082601f83011261320c57600080fd5b813561321c8482602086016130fe565b91505092915050565b6000813590506132348161445e565b92915050565b60008135905061324981614475565b92915050565b60008135905061325e8161448c565b92915050565b6000815190506132738161448c565b92915050565b600082601f83011261328a57600080fd5b813561329a84826020860161316a565b91505092915050565b600082601f8301126132b457600080fd5b81356132c48482602086016131a8565b91505092915050565b6000813590506132dc816144a3565b92915050565b6000813590506132f1816144ba565b92915050565b600081359050613306816144d1565b92915050565b60006020828403121561331e57600080fd5b600061332c848285016131e6565b91505092915050565b6000806040838503121561334857600080fd5b6000613356858286016131e6565b9250506020613367858286016131e6565b9150509250929050565b60008060006060848603121561338657600080fd5b6000613394868287016131e6565b93505060206133a5868287016131e6565b92505060406133b6868287016132e2565b9150509250925092565b600080600080608085870312156133d657600080fd5b60006133e4878288016131e6565b94505060206133f5878288016131e6565b9350506040613406878288016132e2565b925050606085013567ffffffffffffffff81111561342357600080fd5b61342f87828801613279565b91505092959194509250565b6000806040838503121561344e57600080fd5b600061345c858286016131e6565b925050602061346d85828601613225565b9150509250929050565b6000806040838503121561348a57600080fd5b6000613498858286016131e6565b92505060206134a9858286016132cd565b9150509250929050565b600080604083850312156134c657600080fd5b60006134d4858286016131e6565b92505060206134e5858286016132e2565b9150509250929050565b60008060006060848603121561350457600080fd5b600084013567ffffffffffffffff81111561351e57600080fd5b61352a868287016131fb565b935050602061353b8682870161323a565b925050604061354c868287016132f7565b9150509250925092565b60006020828403121561356857600080fd5b60006135768482850161323a565b91505092915050565b60006020828403121561359157600080fd5b600061359f8482850161324f565b91505092915050565b6000602082840312156135ba57600080fd5b60006135c884828501613264565b91505092915050565b6000602082840312156135e357600080fd5b600082013567ffffffffffffffff8111156135fd57600080fd5b613609848285016132a3565b91505092915050565b60006020828403121561362457600080fd5b6000613632848285016132e2565b91505092915050565b61364481613f01565b82525050565b61365b61365682613f01565b6140b3565b82525050565b61366a81613f13565b82525050565b61367981613f1f565b82525050565b61369061368b82613f1f565b6140c5565b82525050565b60006136a182613cfe565b6136ab8185613d14565b93506136bb818560208601613fa9565b6136c4816141ce565b840191505092915050565b60006136da82613d09565b6136e48185613d25565b93506136f4818560208601613fa9565b6136fd816141ce565b840191505092915050565b600061371382613d09565b61371d8185613d36565b935061372d818560208601613fa9565b80840191505092915050565b6000815461374681613fdc565b6137508186613d36565b9450600182166000811461376b576001811461377c576137af565b60ff198316865281860193506137af565b61378585613ce9565b60005b838110156137a757815481890152600182019150602081019050613788565b838801955050505b50505092915050565b60006137c5601f83613d25565b91506137d0826141ec565b602082019050919050565b60006137e8602683613d25565b91506137f382614215565b604082019050919050565b600061380b602e83613d25565b915061381682614264565b604082019050919050565b600061382e601683613d25565b9150613839826142b3565b602082019050919050565b6000613851601783613d25565b915061385c826142dc565b602082019050919050565b6000613874601183613d25565b915061387f82614305565b602082019050919050565b6000613897601283613d25565b91506138a28261432e565b602082019050919050565b60006138ba602083613d25565b91506138c582614357565b602082019050919050565b60006138dd601483613d25565b91506138e882614380565b602082019050919050565b6000613900602783613d25565b915061390b826143a9565b604082019050919050565b6000613923602f83613d36565b915061392e826143f8565b602f82019050919050565b61394281613f55565b82525050565b61395181613f83565b82525050565b61396081613f8d565b82525050565b6000613972828461364a565b60148201915081905092915050565b600061398d828561367f565b60208201915061399d828461367f565b6020820191508190509392505050565b60006139b98285613739565b91506139c58284613708565b91508190509392505050565b60006139dc82613916565b9150819050919050565b60006020820190506139fb600083018461363b565b92915050565b6000608082019050613a16600083018761363b565b613a23602083018661363b565b613a306040830185613948565b8181036060830152613a428184613696565b905095945050505050565b6000602082019050613a626000830184613661565b92915050565b6000602082019050613a7d6000830184613670565b92915050565b60006020820190508181036000830152613a9d81846136cf565b905092915050565b60006020820190508181036000830152613abe816137b8565b9050919050565b60006020820190508181036000830152613ade816137db565b9050919050565b60006020820190508181036000830152613afe816137fe565b9050919050565b60006020820190508181036000830152613b1e81613821565b9050919050565b60006020820190508181036000830152613b3e81613844565b9050919050565b60006020820190508181036000830152613b5e81613867565b9050919050565b60006020820190508181036000830152613b7e8161388a565b9050919050565b60006020820190508181036000830152613b9e816138ad565b9050919050565b60006020820190508181036000830152613bbe816138d0565b9050919050565b60006020820190508181036000830152613bde816138f3565b9050919050565b6000602082019050613bfa6000830184613939565b92915050565b6000602082019050613c156000830184613948565b92915050565b6000602082019050613c306000830184613957565b92915050565b6000613c40613c51565b9050613c4c828261400e565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7657613c7561419f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ca257613ca161419f565b5b613cab826141ce565b9050602081019050919050565b600067ffffffffffffffff821115613cd357613cd261419f565b5b613cdc826141ce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4c82613f55565b9150613d5783613f55565b92508261ffff03821115613d6e57613d6d614112565b5b828201905092915050565b6000613d8482613f83565b9150613d8f83613f83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc457613dc3614112565b5b828201905092915050565b6000613dda82613f8d565b9150613de583613f8d565b92508260ff03821115613dfb57613dfa614112565b5b828201905092915050565b6000613e1182613f83565b9150613e1c83613f83565b925082613e2c57613e2b614141565b5b828204905092915050565b6000613e4282613f55565b9150613e4d83613f55565b92508161ffff0483118215151615613e6857613e67614112565b5b828202905092915050565b6000613e7e82613f83565b9150613e8983613f83565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec257613ec1614112565b5b828202905092915050565b6000613ed882613f83565b9150613ee383613f83565b925082821015613ef657613ef5614112565b5b828203905092915050565b6000613f0c82613f63565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc7578082015181840152602081019050613fac565b83811115613fd6576000848401525b50505050565b60006002820490506001821680613ff457607f821691505b6020821081141561400857614007614170565b5b50919050565b614017826141ce565b810181811067ffffffffffffffff821117156140365761403561419f565b5b80604052505050565b600061404a82613f55565b915061ffff82141561405f5761405e614112565b5b600182019050919050565b600061407582613f83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a8576140a7614112565b5b600182019050919050565b60006140be826140cf565b9050919050565b6000819050919050565b60006140da826141df565b9050919050565b60006140ec82613f83565b91506140f783613f83565b92508261410757614106614141565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420726571756573746564206973206f766572206d617820616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f7265207365747300000000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f536574206c696d69742072656163686564000000000000000000000000000000600082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203420696e20612073696e60008201527f676c65207472616e73616374696f6e0000000000000000000000000000000000602082015250565b61445081613f01565b811461445b57600080fd5b50565b61446781613f13565b811461447257600080fd5b50565b61447e81613f1f565b811461448957600080fd5b50565b61449581613f29565b81146144a057600080fd5b50565b6144ac81613f55565b81146144b757600080fd5b50565b6144c381613f83565b81146144ce57600080fd5b50565b6144da81613f8d565b81146144e557600080fd5b5056fea2646970667358221220db996097358daabb3c67448e42e5914a9b796f23f67b88dd803db99120ff855164736f6c634300080400330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000095765656e696d616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045745454e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b499c0f0116100ab578063cc898d931161006f578063cc898d93146107f4578063e222c7f91461080b578063e985e9c514610822578063f2fde38b1461085f578063f38ade9b146108885761023b565b8063b499c0f014610732578063b66a0e5d1461074e578063b74e94cf14610765578063b88d4fde1461078e578063c87b56dd146107b75761023b565b806395d89b41116100f257806395d89b4114610671578063a22cb4651461069c578063a2e91477146106c5578063a475b5dd146106f0578063aa4e891a146107075761023b565b806370a08231146105a0578063715018a6146105dd5780637cb64759146105f457806381530b681461061d5780638da5cb5b146106465761023b565b80633ccfd60b116101bc5780634b980d67116101805780634b980d67146104cd57806355367ba9146104f857806355f804b31461050f5780635c474f9e146105385780636352211e146105635761023b565b80633ccfd60b146104205780633cdc5db21461043757806342842e0e1461046257806342dc08521461048b578063453c2310146104a25761023b565b80630d39fc81116102035780630d39fc811461034b57806318160ddd1461037657806323b872dd146103a15780632eb4a7ab146103ca57806330b86627146103f55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630a398b881461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061357f565b6108b1565b6040516102749190613a4d565b60405180910390f35b34801561028957600080fd5b50610292610993565b60405161029f9190613a83565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613612565b610a25565b6040516102dc91906139e6565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134b3565b610aa1565b005b34801561031a57600080fd5b506103356004803603810190610330919061330c565b610ba6565b6040516103429190613c1b565b60405180910390f35b34801561035757600080fd5b50610360610bc6565b60405161036d9190613c00565b60405180910390f35b34801561038257600080fd5b5061038b610bcc565b6040516103989190613c00565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190613371565b610be3565b005b3480156103d657600080fd5b506103df610bf3565b6040516103ec9190613a68565b60405180910390f35b34801561040157600080fd5b5061040a610bf9565b6040516104179190613be5565b60405180910390f35b34801561042c57600080fd5b50610435610c0d565b005b34801561044357600080fd5b5061044c610cd2565b6040516104599190613be5565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190613371565b610ce6565b005b34801561049757600080fd5b506104a0610d06565b005b3480156104ae57600080fd5b506104b7610e1a565b6040516104c49190613c1b565b60405180910390f35b3480156104d957600080fd5b506104e2610e1f565b6040516104ef9190613c1b565b60405180910390f35b34801561050457600080fd5b5061050d610e24565b005b34801561051b57600080fd5b50610536600480360381019061053191906135d1565b610ebd565b005b34801561054457600080fd5b5061054d610f53565b60405161055a9190613a4d565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613612565b610f66565b60405161059791906139e6565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061330c565b610f7c565b6040516105d49190613c00565b60405180910390f35b3480156105e957600080fd5b506105f261104c565b005b34801561060057600080fd5b5061061b60048036038101906106169190613556565b6110d4565b005b34801561062957600080fd5b50610644600480360381019061063f9190613612565b61115a565b005b34801561065257600080fd5b5061065b6111e0565b60405161066891906139e6565b60405180910390f35b34801561067d57600080fd5b5061068661120a565b6040516106939190613a83565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be919061343b565b61129c565b005b3480156106d157600080fd5b506106da611414565b6040516106e79190613a4d565b60405180910390f35b3480156106fc57600080fd5b50610705611427565b005b34801561071357600080fd5b5061071c6114c0565b6040516107299190613a4d565b60405180910390f35b61074c600480360381019061074791906134ef565b6114d3565b005b34801561075a57600080fd5b506107636118ea565b005b34801561077157600080fd5b5061078c60048036038101906107879190613477565b611983565b005b34801561079a57600080fd5b506107b560048036038101906107b091906133c0565b611acc565b005b3480156107c357600080fd5b506107de60048036038101906107d99190613612565b611b44565b6040516107eb9190613a83565b60405180910390f35b34801561080057600080fd5b50610809611c0f565b005b34801561081757600080fd5b50610820611ce8565b005b34801561082e57600080fd5b5061084960048036038101906108449190613335565b611d90565b6040516108569190613a4d565b60405180910390f35b34801561086b57600080fd5b506108866004803603810190610881919061330c565b611e24565b005b34801561089457600080fd5b506108af60048036038101906108aa91906135d1565b611f1c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098c575061098b82611fb2565b5b9050919050565b6060600280546109a290613fdc565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce90613fdc565b8015610a1b5780601f106109f057610100808354040283529160200191610a1b565b820191906000526020600020905b8154815290600101906020018083116109fe57829003601f168201915b5050505050905090565b6000610a308261201c565b610a66576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aac82610f66565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3361206a565b73ffffffffffffffffffffffffffffffffffffffff1614610b9657610b5f81610b5a61206a565b611d90565b610b95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610ba1838383612072565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610bd6612124565b6001546000540303905090565b610bee83838361212d565b505050565b600b5481565b600a60029054906101000a900461ffff1681565b610c1561206a565b73ffffffffffffffffffffffffffffffffffffffff16610c336111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613b85565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ccf573d6000803e3d6000fd5b50565b600a60009054906101000a900461ffff1681565b610d0183838360405180602001604052806000815250611acc565b505050565b610d0e61206a565b73ffffffffffffffffffffffffffffffffffffffff16610d2c6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613b85565b60405180910390fd5b600461ffff16600a60029054906101000a900461ffff1661ffff1610610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613b05565b60405180910390fd5b600a600281819054906101000a900461ffff1680929190610dfd9061403f565b91906101000a81548161ffff021916908361ffff16021790555050565b600481565b600481565b610e2c61206a565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790613b85565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550565b610ec561206a565b73ffffffffffffffffffffffffffffffffffffffff16610ee36111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090613b85565b60405180910390fd5b80600d9080519060200190610f4f929190613018565b5050565b600f60009054906101000a900460ff1681565b6000610f71826125e3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61105461206a565b73ffffffffffffffffffffffffffffffffffffffff166110726111e0565b73ffffffffffffffffffffffffffffffffffffffff16146110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613b85565b60405180910390fd5b6110d2600061286e565b565b6110dc61206a565b73ffffffffffffffffffffffffffffffffffffffff166110fa6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613b85565b60405180910390fd5b80600b8190555050565b61116261206a565b73ffffffffffffffffffffffffffffffffffffffff166111806111e0565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613b85565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121990613fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461124590613fdc565b80156112925780601f1061126757610100808354040283529160200191611292565b820191906000526020600020905b81548152906001019060200180831161127557829003601f168201915b5050505050905090565b6112a461206a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611309576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061131661206a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c361206a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114089190613a4d565b60405180910390a35050565b600f60019054906101000a900460ff1681565b61142f61206a565b73ffffffffffffffffffffffffffffffffffffffff1661144d6111e0565b73ffffffffffffffffffffffffffffffffffffffff16146114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613b85565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b600460ff168160ff1611156040516020016114ed906139d1565b6040516020818303038152906040529061153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349190613a83565b60405180910390fd5b508060ff1660105461154f9190613e73565b3414611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613ba5565b60405180910390fd5b60011515600f60009054906101000a900460ff161515146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90613b65565b60405180910390fd5b6107d0600a60029054906101000a900461ffff166116049190613e37565b61ffff168160ff16600a60009054906101000a900461ffff1661ffff16611629610bcc565b6116339190613ecd565b61163d9190613d79565b111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590613b45565b60405180910390fd5b600460ff1681600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116db9190613dcf565b60ff16111561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613ae5565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156117fa57813360405160200161174d9190613966565b60405160208183030381529060405280519060200120146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613bc5565b60405180910390fd5b6117ba600b5483856129349092919063ffffffff16565b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613b25565b60405180910390fd5b5b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166118559190613dcf565b92506101000a81548160ff021916908360ff16021790555061187a338260ff16612a10565b600a60009054906101000a900461ffff1661ffff16611897610bcc565b6118a19190613ecd565b6107d0600a60029054906101000a900461ffff166118bf9190613e37565b61ffff1614156118e5576000600f60006101000a81548160ff0219169083151502179055505b505050565b6118f261206a565b73ffffffffffffffffffffffffffffffffffffffff166119106111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90613b85565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b61198b61206a565b73ffffffffffffffffffffffffffffffffffffffff166119a96111e0565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613b85565b60405180910390fd5b606f600a60029054906101000a900461ffff16611a1c9190613e37565b61ffff1681600a60009054906101000a900461ffff16611a3c9190613d41565b61ffff161115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613b45565b60405180910390fd5b80600a60008282829054906101000a900461ffff16611aa09190613d41565b92506101000a81548161ffff021916908361ffff160217905550611ac8828261ffff16612a10565b5050565b611ad784848461212d565b611af68373ffffffffffffffffffffffffffffffffffffffff16612cec565b15611b3e57611b0784848484612cff565b611b3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b4f8261201c565b611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590613aa5565b60405180910390fd5b60011515600c60009054906101000a900460ff1615151415611bdc57600e611bb583612e5f565b604051602001611bc69291906139ad565b6040516020818303038152906040529050611c0a565b600d611be783612e5f565b604051602001611bf89291906139ad565b60405160208183030381529060405290505b919050565b611c1761206a565b73ffffffffffffffffffffffffffffffffffffffff16611c356111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613b85565b60405180910390fd5b73763234369021a600a5ed3707ff7498daa7dfa36573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611ce5573d6000803e3d6000fd5b50565b611cf061206a565b73ffffffffffffffffffffffffffffffffffffffff16611d0e6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5b90613b85565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e2c61206a565b73ffffffffffffffffffffffffffffffffffffffff16611e4a6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0790613ac5565b60405180910390fd5b611f198161286e565b50565b611f2461206a565b73ffffffffffffffffffffffffffffffffffffffff16611f426111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f90613b85565b60405180910390fd5b80600e9080519060200190611fae929190613018565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612027612124565b11158015612036575060005482105b8015612063575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612138826125e3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121a3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121c461206a565b73ffffffffffffffffffffffffffffffffffffffff1614806121f357506121f2856121ed61206a565b611d90565b5b80612238575061220161206a565b73ffffffffffffffffffffffffffffffffffffffff1661222084610a25565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612271576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122d8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e5858585600161300c565b6122f160008487612072565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561257157600054821461257057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125dc8585856001613012565b5050505050565b6125eb61309e565b6000829050806125f9612124565b1161283757600054811015612836576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161283457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612718578092505050612869565b5b60011561283357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461282e578092505050612869565b612719565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8551811015612a02576000868281518110612981577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116129c25782816040516020016129a5929190613981565b6040516020818303038152906040528051906020012092506129ee565b80836040516020016129d5929190613981565b6040516020818303038152906040528051906020012092505b5080806129fa9061406a565b91505061293d565b508381149150509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ab8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ac5600084838561300c565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c6857816000819055505050612ce76000848385613012565b505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2561206a565b8786866040518563ffffffff1660e01b8152600401612d479493929190613a01565b602060405180830381600087803b158015612d6157600080fd5b505af1925050508015612d9257506040513d601f19601f82011682018060405250810190612d8f91906135a8565b60015b612e0c573d8060008114612dc2576040519150601f19603f3d011682016040523d82523d6000602084013e612dc7565b606091505b50600081511415612e04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612ea7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613007565b600082905060005b60008214612ed9578080612ec29061406a565b915050600a82612ed29190613e06565b9150612eaf565b60008167ffffffffffffffff811115612f1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f4d5781602001600182028036833780820191505090505b5090505b6000851461300057600182612f669190613ecd565b9150600a85612f7591906140e1565b6030612f819190613d79565b60f81b818381518110612fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ff99190613e06565b9450612f51565b8093505050505b919050565b50505050565b50505050565b82805461302490613fdc565b90600052602060002090601f016020900481019282613046576000855561308d565b82601f1061305f57805160ff191683800117855561308d565b8280016001018555821561308d579182015b8281111561308c578251825591602001919060010190613071565b5b50905061309a91906130e1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130fa5760008160009055506001016130e2565b5090565b600061311161310c84613c5b565b613c36565b9050808382526020820190508285602086028201111561313057600080fd5b60005b858110156131605781613146888261323a565b845260208401935060208301925050600181019050613133565b5050509392505050565b600061317d61317884613c87565b613c36565b90508281526020810184848401111561319557600080fd5b6131a0848285613f9a565b509392505050565b60006131bb6131b684613cb8565b613c36565b9050828152602081018484840111156131d357600080fd5b6131de848285613f9a565b509392505050565b6000813590506131f581614447565b92915050565b600082601f83011261320c57600080fd5b813561321c8482602086016130fe565b91505092915050565b6000813590506132348161445e565b92915050565b60008135905061324981614475565b92915050565b60008135905061325e8161448c565b92915050565b6000815190506132738161448c565b92915050565b600082601f83011261328a57600080fd5b813561329a84826020860161316a565b91505092915050565b600082601f8301126132b457600080fd5b81356132c48482602086016131a8565b91505092915050565b6000813590506132dc816144a3565b92915050565b6000813590506132f1816144ba565b92915050565b600081359050613306816144d1565b92915050565b60006020828403121561331e57600080fd5b600061332c848285016131e6565b91505092915050565b6000806040838503121561334857600080fd5b6000613356858286016131e6565b9250506020613367858286016131e6565b9150509250929050565b60008060006060848603121561338657600080fd5b6000613394868287016131e6565b93505060206133a5868287016131e6565b92505060406133b6868287016132e2565b9150509250925092565b600080600080608085870312156133d657600080fd5b60006133e4878288016131e6565b94505060206133f5878288016131e6565b9350506040613406878288016132e2565b925050606085013567ffffffffffffffff81111561342357600080fd5b61342f87828801613279565b91505092959194509250565b6000806040838503121561344e57600080fd5b600061345c858286016131e6565b925050602061346d85828601613225565b9150509250929050565b6000806040838503121561348a57600080fd5b6000613498858286016131e6565b92505060206134a9858286016132cd565b9150509250929050565b600080604083850312156134c657600080fd5b60006134d4858286016131e6565b92505060206134e5858286016132e2565b9150509250929050565b60008060006060848603121561350457600080fd5b600084013567ffffffffffffffff81111561351e57600080fd5b61352a868287016131fb565b935050602061353b8682870161323a565b925050604061354c868287016132f7565b9150509250925092565b60006020828403121561356857600080fd5b60006135768482850161323a565b91505092915050565b60006020828403121561359157600080fd5b600061359f8482850161324f565b91505092915050565b6000602082840312156135ba57600080fd5b60006135c884828501613264565b91505092915050565b6000602082840312156135e357600080fd5b600082013567ffffffffffffffff8111156135fd57600080fd5b613609848285016132a3565b91505092915050565b60006020828403121561362457600080fd5b6000613632848285016132e2565b91505092915050565b61364481613f01565b82525050565b61365b61365682613f01565b6140b3565b82525050565b61366a81613f13565b82525050565b61367981613f1f565b82525050565b61369061368b82613f1f565b6140c5565b82525050565b60006136a182613cfe565b6136ab8185613d14565b93506136bb818560208601613fa9565b6136c4816141ce565b840191505092915050565b60006136da82613d09565b6136e48185613d25565b93506136f4818560208601613fa9565b6136fd816141ce565b840191505092915050565b600061371382613d09565b61371d8185613d36565b935061372d818560208601613fa9565b80840191505092915050565b6000815461374681613fdc565b6137508186613d36565b9450600182166000811461376b576001811461377c576137af565b60ff198316865281860193506137af565b61378585613ce9565b60005b838110156137a757815481890152600182019150602081019050613788565b838801955050505b50505092915050565b60006137c5601f83613d25565b91506137d0826141ec565b602082019050919050565b60006137e8602683613d25565b91506137f382614215565b604082019050919050565b600061380b602e83613d25565b915061381682614264565b604082019050919050565b600061382e601683613d25565b9150613839826142b3565b602082019050919050565b6000613851601783613d25565b915061385c826142dc565b602082019050919050565b6000613874601183613d25565b915061387f82614305565b602082019050919050565b6000613897601283613d25565b91506138a28261432e565b602082019050919050565b60006138ba602083613d25565b91506138c582614357565b602082019050919050565b60006138dd601483613d25565b91506138e882614380565b602082019050919050565b6000613900602783613d25565b915061390b826143a9565b604082019050919050565b6000613923602f83613d36565b915061392e826143f8565b602f82019050919050565b61394281613f55565b82525050565b61395181613f83565b82525050565b61396081613f8d565b82525050565b6000613972828461364a565b60148201915081905092915050565b600061398d828561367f565b60208201915061399d828461367f565b6020820191508190509392505050565b60006139b98285613739565b91506139c58284613708565b91508190509392505050565b60006139dc82613916565b9150819050919050565b60006020820190506139fb600083018461363b565b92915050565b6000608082019050613a16600083018761363b565b613a23602083018661363b565b613a306040830185613948565b8181036060830152613a428184613696565b905095945050505050565b6000602082019050613a626000830184613661565b92915050565b6000602082019050613a7d6000830184613670565b92915050565b60006020820190508181036000830152613a9d81846136cf565b905092915050565b60006020820190508181036000830152613abe816137b8565b9050919050565b60006020820190508181036000830152613ade816137db565b9050919050565b60006020820190508181036000830152613afe816137fe565b9050919050565b60006020820190508181036000830152613b1e81613821565b9050919050565b60006020820190508181036000830152613b3e81613844565b9050919050565b60006020820190508181036000830152613b5e81613867565b9050919050565b60006020820190508181036000830152613b7e8161388a565b9050919050565b60006020820190508181036000830152613b9e816138ad565b9050919050565b60006020820190508181036000830152613bbe816138d0565b9050919050565b60006020820190508181036000830152613bde816138f3565b9050919050565b6000602082019050613bfa6000830184613939565b92915050565b6000602082019050613c156000830184613948565b92915050565b6000602082019050613c306000830184613957565b92915050565b6000613c40613c51565b9050613c4c828261400e565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7657613c7561419f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ca257613ca161419f565b5b613cab826141ce565b9050602081019050919050565b600067ffffffffffffffff821115613cd357613cd261419f565b5b613cdc826141ce565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d4c82613f55565b9150613d5783613f55565b92508261ffff03821115613d6e57613d6d614112565b5b828201905092915050565b6000613d8482613f83565b9150613d8f83613f83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc457613dc3614112565b5b828201905092915050565b6000613dda82613f8d565b9150613de583613f8d565b92508260ff03821115613dfb57613dfa614112565b5b828201905092915050565b6000613e1182613f83565b9150613e1c83613f83565b925082613e2c57613e2b614141565b5b828204905092915050565b6000613e4282613f55565b9150613e4d83613f55565b92508161ffff0483118215151615613e6857613e67614112565b5b828202905092915050565b6000613e7e82613f83565b9150613e8983613f83565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec257613ec1614112565b5b828202905092915050565b6000613ed882613f83565b9150613ee383613f83565b925082821015613ef657613ef5614112565b5b828203905092915050565b6000613f0c82613f63565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc7578082015181840152602081019050613fac565b83811115613fd6576000848401525b50505050565b60006002820490506001821680613ff457607f821691505b6020821081141561400857614007614170565b5b50919050565b614017826141ce565b810181811067ffffffffffffffff821117156140365761403561419f565b5b80604052505050565b600061404a82613f55565b915061ffff82141561405f5761405e614112565b5b600182019050919050565b600061407582613f83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a8576140a7614112565b5b600182019050919050565b60006140be826140cf565b9050919050565b6000819050919050565b60006140da826141df565b9050919050565b60006140ec82613f83565b91506140f783613f83565b92508261410757614106614141565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420726571756573746564206973206f766572206d617820616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f206d6f7265207365747300000000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f536574206c696d69742072656163686564000000000000000000000000000000600082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e203420696e20612073696e60008201527f676c65207472616e73616374696f6e0000000000000000000000000000000000602082015250565b61445081613f01565b811461445b57600080fd5b50565b61446781613f13565b811461447257600080fd5b50565b61447e81613f1f565b811461448957600080fd5b50565b61449581613f29565b81146144a057600080fd5b50565b6144ac81613f55565b81146144b757600080fd5b50565b6144c381613f83565b81146144ce57600080fd5b50565b6144da81613f8d565b81146144e557600080fd5b5056fea2646970667358221220db996097358daabb3c67448e42e5914a9b796f23f67b88dd803db99120ff855164736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000095765656e696d616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045745454e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Weenimals
Arg [1] : symbol (string): WEEN

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 5765656e696d616c730000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5745454e00000000000000000000000000000000000000000000000000000000


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.