ETH Price: $3,275.06 (-3.97%)
Gas: 19 Gwei

Token

Tales From The Wild - First Egg (TFTW)
 

Overview

Max Total Supply

2,223 TFTW

Holders

539

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
pendragonx.eth
Balance
5 TFTW
0x330Ee4b98CBe9F0D7422471b3e6476ad2469c5B4
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:
Tftw

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : TFTW.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "erc721a/contracts/ERC721A.sol";

contract Tftw is ERC721A {
    address private _owner;
    address private bankAddress = 0x43a39478B05Ea79511A96b20b99ed7c9466Ed55d;
    address private studioAddress = 0x74F06680b78B4c0C9700F20079583A097E935700;

    uint256 public constant price = 0.09 ether;
    uint256 public constant bigPackPrice = 5 ether;
    uint256 public constant mediumPackPrice = 2 ether;
    uint256 public constant smallPackPrice = 1 ether;

    uint256 public constant saleSupply = 2224;
    uint256 public constant bigPackSupply = 1;
    uint256 public constant mediumPackSupply = 5;
    uint256 public constant smallPackSupply = 17;
    uint256 public constant bigPackQuantity = 100;
    uint256 public constant mediumPackQuantity = 35;
    uint256 public constant smallPackQuantity = 15;

    uint256 public sale = 1;
    uint256 reservedTokens = 42;
    uint256 bigPackSale = 0;
    uint256 mediumPackSale = 0;
    uint256 smallPackSale = 0;

    mapping(address => bool) public silverWhitelist;
    mapping(address => bool) public goldWhitelist;
    mapping(address => bool) public ogWhitelist;
    mapping(address => bool) public privateWhitelist;
    mapping(address => bool) public silverWhitelistSale;
    mapping(address => bool) public goldWhitelistSale;
    mapping(address => bool) public ogWhitelistSale;

    mapping(address => bool) public bigPackWhitelist;
    mapping(address => bool) public mediumPackWhitelist;
    mapping(address => bool) public smallPackWhitelist;
    mapping(address => bool) public bigPackWhitelistSale;
    mapping(address => bool) public mediumPackWhitelistSale;
    mapping(address => bool) public smallPackWhitelistSale;

    bool public silverSaleStarted = false;
    bool public goldSaleStarted = false;
    bool public ogSaleStarted = false;
    bool public privateSaleStarted = false;
    bool public publicSaleStarted = false;

    bool public packSaleStarted = false;

    constructor() ERC721A("Tales From The Wild - First Egg", "TFTW") {
        _owner = msg.sender;
    }

    function _baseURI() internal pure override returns (string memory) {
        return "https://nfts.talesfromthewild.land/";
    }

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

    function safeMint(address to) public payable {
        if (sale == 1) {
            require(msg.sender == _owner, "Reserved token.");
            _safeMint(to, reservedTokens);
            sale = reservedTokens;
            return;
        }

        uint256 currentPrice = getPrice();
        require(msg.value == currentPrice, "Invalid price.");
        require(sale < saleSupply, "Sold out.");
        if (silverSaleStarted) {
            require(silverWhitelist[to] == true, "You're not in the whitelist.");
            require(silverWhitelistSale[to] != true, "You have already mint your silver token.");
            silverWhitelistSale[to] = true;
        } else if (goldSaleStarted) {
            require(goldWhitelist[to] == true, "You're not in the whitelist.");
            require(goldWhitelistSale[to] != true, "You have already mint your gold token.");
            goldWhitelistSale[to] = true;
        } else if (ogSaleStarted) {
            require(ogWhitelist[to] == true, "You're not in the whitelist.");
            require(ogWhitelistSale[to] != true, "You have already mint your og token.");
            ogWhitelistSale[to] = true;
        } else if (privateSaleStarted) {
            require(privateWhitelist[to] == true, "You're not in the whitelist.");
            require(sale < saleSupply, "Sold out.");
        } else {
            require(publicSaleStarted == true, "Sale is not started.");
            require(sale < saleSupply, "Sold out.");
        }

        if (!ogSaleStarted) {
            _safeMint(to, 1);
            sale += 1;
        } else {
            _safeMint(to, 3);
            sale += 3;
        }
    }

    function safeBigPackMint(address to) public payable {
        require(bigPackWhitelist[to] == true, "You're not in the whitelist.");
        require(msg.value == bigPackPrice, "Invalid price.");
        require(bigPackSale < bigPackSupply, "Sold out.");
        require(bigPackWhitelistSale[to] != true, "You have already mint your big pack.");
        bigPackWhitelistSale[to] = true;

        bigPackSale++;
        _safeMint(to, bigPackQuantity);
        sale += bigPackQuantity;
    }

    function safeMediumBigPackMint(address to) public payable {
        require(mediumPackWhitelist[to] == true, "You're not in the whitelist.");
        require(msg.value == mediumPackPrice, "Invalid price.");
        require(mediumPackSale < mediumPackSupply, "Sold out.");
        require(mediumPackWhitelistSale[to] != true, "You have already mint your medium pack.");
        mediumPackWhitelistSale[to] = true;

        mediumPackSale++;
        _safeMint(to, mediumPackQuantity);
        sale += mediumPackQuantity;
    }

    function safeSmallBigPackMint(address to) public payable {
        require(smallPackWhitelist[to] == true, "You're not in the whitelist.");
        require(msg.value == smallPackPrice, "Invalid price.");
        require(smallPackSale < smallPackSupply, "Sold out.");
        require(smallPackWhitelistSale[to] != true, "You have already mint your small pack.");
        smallPackWhitelistSale[to] = true;

        smallPackSale++;
        _safeMint(to, smallPackQuantity);
        sale += smallPackQuantity;
    }

    function getPrice() public view returns(uint256) {
        if (silverSaleStarted) {
            return price - (price * 25 / 100);
        } else if (goldSaleStarted) {
            return price - (price * 50 / 100);
        } else if (privateSaleStarted) {
            return price - (price * 10 / 100);
        }

        return price;
    }

    function addToSilverWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            silverWhitelist[addr] = true;
        }
    }

    function addToGoldWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            goldWhitelist[addr] = true;
        }
    }

    function addToOgWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            ogWhitelist[addr] = true;
        }
    }

    function addToPrivateWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            privateWhitelist[addr] = true;
        }
    }

    function addToBigPackWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            bigPackWhitelist[addr] = true;
        }
    }

    function addToMediumPackWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            mediumPackWhitelist[addr] = true;
        }
    }

    function addToSmallPackWhitelist(address[] calldata toAdd) external onlyOwner {
        for (uint i = 0; i < toAdd.length; i++) {
            address addr = toAdd[i];
            smallPackWhitelist[addr] = true;
        }
    }

    function removeToSilverWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            silverWhitelist[addr] = false;
        }
    }

    function removeToGoldWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            goldWhitelist[addr] = false;
        }
    }

    function removeToOgWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            ogWhitelist[addr] = false;
        }
    }

    function removeToPrivateWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            privateWhitelist[addr] = false;
        }
    }

    function removeToBigPackWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            bigPackWhitelist[addr] = false;
        }
    }

    function removeToMediumPackWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            mediumPackWhitelist[addr] = false;
        }
    }

    function removeToSmallPackWhitelist(address[] calldata toRemove) external onlyOwner {
        for (uint i = 0; i < toRemove.length; i++) {
            address addr = toRemove[i];
            smallPackWhitelist[addr] = false;
        }
    }

    function startSilverSale() public onlyOwner {
        silverSaleStarted = true;
        goldSaleStarted = false;
        ogSaleStarted = false;
        privateSaleStarted = false;
        publicSaleStarted = false;
    }

    function startGoldSale() public onlyOwner {
        silverSaleStarted = false;
        goldSaleStarted = true;
        ogSaleStarted = false;
        privateSaleStarted = false;
        publicSaleStarted = false;
    }

    function startOgSale() public onlyOwner {
        silverSaleStarted = false;
        goldSaleStarted = false;
        ogSaleStarted = true;
        privateSaleStarted = false;
        publicSaleStarted = false;
    }

    function startPrivateSale() public onlyOwner {
        silverSaleStarted = false;
        goldSaleStarted = false;
        ogSaleStarted = false;
        privateSaleStarted = true;
        publicSaleStarted = false;
    }

    function startPublicSale() public onlyOwner {
        silverSaleStarted = false;
        goldSaleStarted = false;
        ogSaleStarted = false;
        privateSaleStarted = false;
        publicSaleStarted = true;
    }

    function stopSale() public onlyOwner {
        silverSaleStarted = false;
        goldSaleStarted = false;
        ogSaleStarted = false;
        privateSaleStarted = false;
        publicSaleStarted = false;
    }

    function startPackSales() public onlyOwner {
        packSaleStarted = true;
    }

    function stopPackSales() public onlyOwner {
        packSaleStarted = false;
    }

    function withdraw() public onlyOwner {
        uint256 bankBalance = address(this).balance;
        uint256 studioBalance = bankBalance * 6 / 100;
        bankBalance -= studioBalance;

        require(payable(studioAddress).send(studioBalance));
        require(payable(bankAddress).send(bankBalance));
    }

    modifier onlyOwner {
        require(msg.sender == _owner, "Only the owner can call this method");
        _;
    }
}

File 2 of 11 : 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 3 of 11 : 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 4 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface 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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 9 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":"toAdd","type":"address[]"}],"name":"addToBigPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToGoldWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToMediumPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToOgWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToPrivateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToSilverWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAdd","type":"address[]"}],"name":"addToSmallPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bigPackPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bigPackQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bigPackSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bigPackWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bigPackWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"goldWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"goldWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mediumPackPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mediumPackQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mediumPackSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mediumPackWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mediumPackWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"packSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"privateWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToBigPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToGoldWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToMediumPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToOgWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToPrivateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToSilverWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemove","type":"address[]"}],"name":"removeToSmallPackWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeBigPackMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMediumBigPackMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeSmallBigPackMint","outputs":[],"stateMutability":"payable","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":"sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"silverWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"silverWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"smallPackPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"smallPackQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"smallPackSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"smallPackWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"smallPackWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startGoldSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startOgSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPackSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSilverSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopPackSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600980546001600160a01b03199081167343a39478b05ea79511a96b20b99ed7c9466ed55d17909155600a80549091167374f06680b78b4c0c9700f20079583a097e9357001790556001600b55602a600c556000600d819055600e819055600f55601d805465ffffffffffff191690553480156200008157600080fd5b50604080518082018252601f81527f54616c65732046726f6d205468652057696c64202d20466972737420456767006020808301918252835180850190945260048452635446545760e01b908401528151919291620000e39160029162000119565b508051620000f990600390602084019062000119565b5060016000555050600880546001600160a01b03191633179055620001fc565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b613377806200020c6000396000f3fe6080604052600436106104265760003560e01c8063729337e811610229578063b3723f021161012e578063c217b6fc116100b6578063e8e7e1381161007a578063e8e7e13814610c83578063e985e9c514610ca3578063ea1996a814610cec578063f095be2614610d1c578063f4b2afc514610d3c57600080fd5b8063c217b6fc14610c04578063c87b56dd14610c19578063ceaa977514610c39578063d2c626c514610c4e578063e36b0b3714610c6e57600080fd5b8063b88d4fde116100fd578063b88d4fde14610b5c578063b8cd96d814610b7c578063b9cedf4714610b91578063bd856b3714610bc1578063bf3c101a14610bd457600080fd5b8063b3723f0214610af6578063b477f64714610b16578063b51b26de14610b32578063b63a817514610b4757600080fd5b806399770850116101b1578063a22cb46511610180578063a22cb46514610a6f578063a2e9147714610a8f578063a4edf71a14610ab1578063a96af0f414610acb578063aa80d4d514610ae157600080fd5b806399770850146109f25780639c58e27614610a075780639cbd7f5c14610a23578063a035b1fe14610a5357600080fd5b80638ce0a190116101f85780638ce0a1901461095557806391be1cd91461098557806395d89b411461099857806396785117146109ad57806398d5fdca146109dd57600080fd5b8063729337e8146108f85780637311cf821461090d57806383a9690214610922578063856b3ab21461094257600080fd5b80633ccfd60b1161032f57806358d8986d116102b757806363f8377c1161028657806363f8377c1461086057806365c9ff52146108835780636ad1fe02146108a257806370a08231146108b8578063717b29ce146108d857600080fd5b806358d8986d146107d05780635cf8a6591461080057806362ff8b60146108205780636352211e1461084057600080fd5b80634472ca56116102fe5780634472ca56146107365780634635d75a146107665780634d3d2ca11461077b5780634ec4e30c1461079b578063521f41ec146107bb57600080fd5b80633ccfd60b146106ce5780633eb21429146106e357806340d097c31461070357806342842e0e1461071657600080fd5b80631293b21a116103b257806318160ddd1161038157806318160ddd1461062c5780631f4296c91461064957806322a54cf31461067957806323b872dd14610699578063338dbf59146106b957600080fd5b80631293b21a146105a1578063147fa3f8146105cb57806314d092fd146105eb578063165ca5581461060b57600080fd5b8063095ea7b3116103f9578063095ea7b3146104ea5780630ac1b7ec1461050c5780630c1c972a1461053c578063108d9e1414610551578063119c85551461058157600080fd5b806301ffc9a71461042b578063024d8f431461046057806306fdde0314610490578063081812fc146104b2575b600080fd5b34801561043757600080fd5b5061044b61044636600461300b565b610d6c565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b5061044b61047b366004612ddc565b601c6020526000908152604090205460ff1681565b34801561049c57600080fd5b506104a5610dbe565b60405161045791906130f3565b3480156104be57600080fd5b506104d26104cd366004613043565b610e50565b6040516001600160a01b039091168152602001610457565b3480156104f657600080fd5b5061050a610505366004612f72565b610e94565b005b34801561051857600080fd5b5061044b610527366004612ddc565b601b6020526000908152604090205460ff1681565b34801561054857600080fd5b5061050a610f1b565b34801561055d57600080fd5b5061044b61056c366004612ddc565b601a6020526000908152604090205460ff1681565b34801561058d57600080fd5b5061050a61059c366004612f9b565b610f65565b3480156105ad57600080fd5b506105bd674563918244f4000081565b604051908152602001610457565b3480156105d757600080fd5b5061050a6105e6366004612f9b565b611006565b3480156105f757600080fd5b50601d5461044b9062010000900460ff1681565b34801561061757600080fd5b50601d5461044b906301000000900460ff1681565b34801561063857600080fd5b5060015460005403600019016105bd565b34801561065557600080fd5b5061044b610664366004612ddc565b60186020526000908152604090205460ff1681565b34801561068557600080fd5b5061050a610694366004612f9b565b6110a4565b3480156106a557600080fd5b5061050a6106b4366004612e28565b611142565b3480156106c557600080fd5b5061050a61114d565b3480156106da57600080fd5b5061050a61118d565b3480156106ef57600080fd5b5061050a6106fe366004612f9b565b611246565b61050a610711366004612ddc565b6112e7565b34801561072257600080fd5b5061050a610731366004612e28565b6117c2565b34801561074257600080fd5b5061044b610751366004612ddc565b60166020526000908152604090205460ff1681565b34801561077257600080fd5b5061050a6117dd565b34801561078757600080fd5b5061050a610796366004612f9b565b611820565b3480156107a757600080fd5b5061050a6107b6366004612f9b565b6118c1565b3480156107c757600080fd5b506105bd600581565b3480156107dc57600080fd5b5061044b6107eb366004612ddc565b60156020526000908152604090205460ff1681565b34801561080c57600080fd5b5061050a61081b366004612f9b565b61195f565b34801561082c57600080fd5b5061050a61083b366004612f9b565b6119fd565b34801561084c57600080fd5b506104d261085b366004613043565b611a9e565b34801561086c57600080fd5b50601d5461044b9065010000000000900460ff1681565b34801561088f57600080fd5b50601d5461044b90610100900460ff1681565b3480156108ae57600080fd5b506105bd600b5481565b3480156108c457600080fd5b506105bd6108d3366004612ddc565b611ab0565b3480156108e457600080fd5b5061050a6108f3366004612f9b565b611aff565b34801561090457600080fd5b5061050a611b9d565b34801561091957600080fd5b5061050a611bda565b34801561092e57600080fd5b5061050a61093d366004612f9b565b611c18565b61050a610950366004612ddc565b611cb9565b34801561096157600080fd5b5061044b610970366004612ddc565b60106020526000908152604090205460ff1681565b61050a610993366004612ddc565b611e19565b3480156109a457600080fd5b506104a5611f6d565b3480156109b957600080fd5b5061044b6109c8366004612ddc565b60176020526000908152604090205460ff1681565b3480156109e957600080fd5b506105bd611f7c565b3480156109fe57600080fd5b5061050a612019565b348015610a1357600080fd5b506105bd671bc16d674ec8000081565b348015610a2f57600080fd5b5061044b610a3e366004612ddc565b60146020526000908152604090205460ff1681565b348015610a5f57600080fd5b506105bd67013fbe85edc9000081565b348015610a7b57600080fd5b5061050a610a8a366004612f38565b612058565b348015610a9b57600080fd5b50601d5461044b90640100000000900460ff1681565b348015610abd57600080fd5b50601d5461044b9060ff1681565b348015610ad757600080fd5b506105bd6108b081565b348015610aed57600080fd5b506105bd606481565b348015610b0257600080fd5b5061050a610b11366004612f9b565b6120ee565b348015610b2257600080fd5b506105bd670de0b6b3a764000081565b348015610b3e57600080fd5b5061050a61218c565b348015610b5357600080fd5b506105bd601181565b348015610b6857600080fd5b5061050a610b77366004612e63565b6121c7565b348015610b8857600080fd5b506105bd600f81565b348015610b9d57600080fd5b5061044b610bac366004612ddc565b60196020526000908152604090205460ff1681565b61050a610bcf366004612ddc565b612211565b348015610be057600080fd5b5061044b610bef366004612ddc565b60116020526000908152604090205460ff1681565b348015610c1057600080fd5b506105bd600181565b348015610c2557600080fd5b506104a5610c34366004613043565b612368565b348015610c4557600080fd5b506105bd602381565b348015610c5a57600080fd5b5061050a610c69366004612f9b565b6123ed565b348015610c7a57600080fd5b5061050a61248e565b348015610c8f57600080fd5b5061050a610c9e366004612f9b565b6124c8565b348015610caf57600080fd5b5061044b610cbe366004612df6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610cf857600080fd5b5061044b610d07366004612ddc565b60136020526000908152604090205460ff1681565b348015610d2857600080fd5b5061050a610d37366004612f9b565b612566565b348015610d4857600080fd5b5061044b610d57366004612ddc565b60126020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610d9d57506001600160e01b03198216635b5e139f60e01b145b80610db857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610dcd90613259565b80601f0160208091040260200160405190810160405280929190818152602001828054610df990613259565b8015610e465780601f10610e1b57610100808354040283529160200191610e46565b820191906000526020600020905b815481529060010190602001808311610e2957829003601f168201915b5050505050905090565b6000610e5b82612607565b610e78576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e9f82611a9e565b9050806001600160a01b0316836001600160a01b03161415610ed45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610f0b57610eee8133610cbe565b610f0b576040516367d9dca160e11b815260040160405180910390fd5b610f16838383612640565b505050565b6008546001600160a01b03163314610f4e5760405162461bcd60e51b8152600401610f459061312e565b60405180910390fd5b601d805464ffffffffff1916640100000000179055565b6008546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110610fbc57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fd19190612ddc565b6001600160a01b03166000908152601060205260409020805460ff191660011790555080610ffe81613294565b915050610f92565b6008546001600160a01b031633146110305760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061105d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110729190612ddc565b6001600160a01b03166000908152601760205260409020805460ff19169055508061109c81613294565b915050611033565b6008546001600160a01b031633146110ce5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106110fb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111109190612ddc565b6001600160a01b03166000908152601260205260409020805460ff19169055508061113a81613294565b9150506110d1565b610f1683838361269c565b6008546001600160a01b031633146111775760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19166301000000179055565b6008546001600160a01b031633146111b75760405162461bcd60e51b8152600401610f459061312e565b47600060646111c78360066131f7565b6111d191906131e3565b90506111dd8183613216565b600a546040519193506001600160a01b03169082156108fc029083906000818181858888f1935050505061121057600080fd5b6009546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061124257600080fd5b5050565b6008546001600160a01b031633146112705760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061129d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b29190612ddc565b6001600160a01b03166000908152601260205260409020805460ff1916600117905550806112df81613294565b915050611273565b600b5460011415611353576008546001600160a01b0316331461133e5760405162461bcd60e51b815260206004820152600f60248201526e2932b9b2b93b32b2103a37b5b2b71760891b6044820152606401610f45565b61134a81600c5461288b565b50600c54600b55565b600061135d611f7c565b905080341461137e5760405162461bcd60e51b8152600401610f4590613106565b6108b0600b54106113a15760405162461bcd60e51b8152600401610f4590613171565b601d5460ff1615611490576001600160a01b03821660009081526010602052604090205460ff1615156001146113e95760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526014602052604090205460ff161515600114156114685760405162461bcd60e51b815260206004820152602860248201527f596f75206861766520616c7265616479206d696e7420796f75722073696c766560448201526739103a37b5b2b71760c11b6064820152608401610f45565b6001600160a01b0382166000908152601460205260409020805460ff19166001179055611762565b601d54610100900460ff1615611582576001600160a01b03821660009081526011602052604090205460ff1615156001146114dd5760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526015602052604090205460ff1615156001141561155a5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e7420796f757220676f6c64206044820152653a37b5b2b71760d11b6064820152608401610f45565b6001600160a01b0382166000908152601560205260409020805460ff19166001179055611762565b601d5462010000900460ff1615611672576001600160a01b03821660009081526012602052604090205460ff1615156001146115d05760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526016602052604090205460ff1615156001141561164a5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e7420796f7572206f6720746f60448201526335b2b71760e11b6064820152608401610f45565b6001600160a01b0382166000908152601660205260409020805460ff19166001179055611762565b601d546301000000900460ff16156116e9576001600160a01b03821660009081526013602052604090205460ff1615156001146116c15760405162461bcd60e51b8152600401610f4590613194565b6108b0600b54106116e45760405162461bcd60e51b8152600401610f4590613171565b611762565b601d54640100000000900460ff16151560011461173f5760405162461bcd60e51b815260206004820152601460248201527329b0b6329034b9903737ba1039ba30b93a32b21760611b6044820152606401610f45565b6108b0600b54106117625760405162461bcd60e51b8152600401610f4590613171565b601d5462010000900460ff1661179b5761177d82600161288b565b6001600b600082825461179091906131cb565b909155506112429050565b6117a682600361288b565b6003600b60008282546117b991906131cb565b90915550505050565b610f16838383604051806020016040528060008152506121c7565b6008546001600160a01b031633146118075760405162461bcd60e51b8152600401610f459061312e565b601d805465ff0000000000191665010000000000179055565b6008546001600160a01b0316331461184a5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061187757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061188c9190612ddc565b6001600160a01b03166000908152601360205260409020805460ff1916600117905550806118b981613294565b91505061184d565b6008546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061191857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061192d9190612ddc565b6001600160a01b03166000908152601360205260409020805460ff19169055508061195781613294565b9150506118ee565b6008546001600160a01b031633146119895760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106119b657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119cb9190612ddc565b6001600160a01b03166000908152601960205260409020805460ff1916905550806119f581613294565b91505061198c565b6008546001600160a01b03163314611a275760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611a5457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a699190612ddc565b6001600160a01b03166000908152601760205260409020805460ff191660011790555080611a9681613294565b915050611a2a565b6000611aa9826128a5565b5192915050565b60006001600160a01b038216611ad9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611b295760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611b5657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b6b9190612ddc565b6001600160a01b03166000908152601060205260409020805460ff191690555080611b9581613294565b915050611b2c565b6008546001600160a01b03163314611bc75760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19166001179055565b6008546001600160a01b03163314611c045760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff1916610100179055565b6008546001600160a01b03163314611c425760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611c6f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c849190612ddc565b6001600160a01b03166000908152601860205260409020805460ff191660011790555080611cb181613294565b915050611c45565b6001600160a01b03811660009081526018602052604090205460ff161515600114611cf65760405162461bcd60e51b8152600401610f4590613194565b671bc16d674ec800003414611d1d5760405162461bcd60e51b8152600401610f4590613106565b6005600e5410611d3f5760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601b602052604090205460ff16151560011415611dbd5760405162461bcd60e51b815260206004820152602760248201527f596f75206861766520616c7265616479206d696e7420796f7572206d6564697560448201526636903830b1b59760c91b6064820152608401610f45565b6001600160a01b0381166000908152601b60205260408120805460ff19166001179055600e805491611dee83613294565b9190505550611dfe81602361288b565b6023600b6000828254611e1191906131cb565b909155505050565b6001600160a01b03811660009081526017602052604090205460ff161515600114611e565760405162461bcd60e51b8152600401610f4590613194565b674563918244f400003414611e7d5760405162461bcd60e51b8152600401610f4590613106565b6001600d5410611e9f5760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601a602052604090205460ff16151560011415611f195760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e7420796f757220626967207060448201526330b1b59760e11b6064820152608401610f45565b6001600160a01b0381166000908152601a60205260408120805460ff19166001179055600d805491611f4a83613294565b9190505550611f5a81606461288b565b6064600b6000828254611e1191906131cb565b606060038054610dcd90613259565b601d5460009060ff1615611fc0576064611f9f67013fbe85edc9000060196131f7565b611fa991906131e3565b611fbb9067013fbe85edc90000613216565b905090565b601d54610100900460ff1615611fe5576064611f9f67013fbe85edc9000060326131f7565b601d546301000000900460ff161561200c576064611f9f67013fbe85edc90000600a6131f7565b5067013fbe85edc9000090565b6008546001600160a01b031633146120435760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff191662010000179055565b6001600160a01b0382163314156120825760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146121185760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061214557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061215a9190612ddc565b6001600160a01b03166000908152601860205260409020805460ff19169055508061218481613294565b91505061211b565b6008546001600160a01b031633146121b65760405162461bcd60e51b8152600401610f459061312e565b601d805465ff000000000019169055565b6121d284848461269c565b6001600160a01b0383163b1561220b576121ee848484846129c9565b61220b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b03811660009081526019602052604090205460ff16151560011461224e5760405162461bcd60e51b8152600401610f4590613194565b670de0b6b3a764000034146122755760405162461bcd60e51b8152600401610f4590613106565b6011600f54106122975760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601c602052604090205460ff161515600114156123145760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e7420796f757220736d616c6c604482015265103830b1b59760d11b6064820152608401610f45565b6001600160a01b0381166000908152601c60205260408120805460ff19166001179055600f80549161234583613294565b919050555061235581600f61288b565b600f600b6000828254611e1191906131cb565b606061237382612607565b61239057604051630a14c4b560e41b815260040160405180910390fd5b600061239a612ac1565b90508051600014156123bb57604051806020016040528060008152506123e6565b806123c584612ae1565b6040516020016123d6929190613087565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146124175760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061244457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906124599190612ddc565b6001600160a01b03166000908152601160205260409020805460ff19166001179055508061248681613294565b91505061241a565b6008546001600160a01b031633146124b85760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19169055565b6008546001600160a01b031633146124f25760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061251f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906125349190612ddc565b6001600160a01b03166000908152601160205260409020805460ff19169055508061255e81613294565b9150506124f5565b6008546001600160a01b031633146125905760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106125bd57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906125d29190612ddc565b6001600160a01b03166000908152601960205260409020805460ff1916600117905550806125ff81613294565b915050612593565b60008160011115801561261b575060005482105b8015610db8575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006126a7826128a5565b9050836001600160a01b031681600001516001600160a01b0316146126de5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806126fc57506126fc8533610cbe565b8061271757503361270c84610e50565b6001600160a01b0316145b90508061273757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661275e57604051633a954ecd60e21b815260040160405180910390fd5b61276a60008487612640565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612840576000548214612840578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b611242828260405180602001604052806000815250612bfb565b604080516060810182526000808252602082018190529181019190915281806001116129b0576000548110156129b057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906129ae5780516001600160a01b031615612944579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156129a9579392505050565b612944565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129fe9033908990889088906004016130b6565b602060405180830381600087803b158015612a1857600080fd5b505af1925050508015612a48575060408051601f3d908101601f19168201909252612a4591810190613027565b60015b612aa3573d808015612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b508051612a9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060405180606001604052806023815260200161331f60239139905090565b606081612b055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b2f5780612b1981613294565b9150612b289050600a836131e3565b9150612b09565b60008167ffffffffffffffff811115612b5857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b82576020820181803683370190505b5090505b8415612ab957612b97600183613216565b9150612ba4600a866132af565b612baf9060306131cb565b60f81b818381518110612bd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612bf4600a866131e3565b9450612b86565b6000546001600160a01b038416612c2457604051622e076360e81b815260040160405180910390fd5b82612c425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d6b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d3460008784806001019550876129c9565b612d51576040516368d2bf6b60e11b815260040160405180910390fd5b808210612ce9578260005414612d6657600080fd5b612db0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612d6c575b50600090815561220b9085838684565b80356001600160a01b0381168114612dd757600080fd5b919050565b600060208284031215612ded578081fd5b6123e682612dc0565b60008060408385031215612e08578081fd5b612e1183612dc0565b9150612e1f60208401612dc0565b90509250929050565b600080600060608486031215612e3c578081fd5b612e4584612dc0565b9250612e5360208501612dc0565b9150604084013590509250925092565b60008060008060808587031215612e78578081fd5b612e8185612dc0565b9350612e8f60208601612dc0565b925060408501359150606085013567ffffffffffffffff80821115612eb2578283fd5b818701915087601f830112612ec5578283fd5b813581811115612ed757612ed76132ef565b604051601f8201601f19908116603f01168101908382118183101715612eff57612eff6132ef565b816040528281528a6020848701011115612f17578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612f4a578182fd5b612f5383612dc0565b915060208301358015158114612f67578182fd5b809150509250929050565b60008060408385031215612f84578182fd5b612f8d83612dc0565b946020939093013593505050565b60008060208385031215612fad578182fd5b823567ffffffffffffffff80821115612fc4578384fd5b818501915085601f830112612fd7578384fd5b813581811115612fe5578485fd5b8660208260051b8501011115612ff9578485fd5b60209290920196919550909350505050565b60006020828403121561301c578081fd5b81356123e681613305565b600060208284031215613038578081fd5b81516123e681613305565b600060208284031215613054578081fd5b5035919050565b6000815180845261307381602086016020860161322d565b601f01601f19169290920160200192915050565b6000835161309981846020880161322d565b8351908301906130ad81836020880161322d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130e99083018461305b565b9695505050505050565b6020815260006123e6602083018461305b565b6020808252600e908201526d24b73b30b634b210383934b1b29760911b604082015260600190565b60208082526023908201527f4f6e6c7920746865206f776e65722063616e2063616c6c2074686973206d65746040820152621a1bd960ea1b606082015260800190565b60208082526009908201526829b7b6321037baba1760b91b604082015260600190565b6020808252601c908201527f596f75277265206e6f7420696e207468652077686974656c6973742e00000000604082015260600190565b600082198211156131de576131de6132c3565b500190565b6000826131f2576131f26132d9565b500490565b6000816000190483118215151615613211576132116132c3565b500290565b600082821015613228576132286132c3565b500390565b60005b83811015613248578181015183820152602001613230565b8381111561220b5750506000910152565b600181811c9082168061326d57607f821691505b6020821081141561328e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132a8576132a86132c3565b5060010190565b6000826132be576132be6132d9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461331b57600080fd5b5056fe68747470733a2f2f6e6674732e74616c657366726f6d74686577696c642e6c616e642fa2646970667358221220d929de8b5ee9d43c441660d8ab2061760740ea729d9c694d3da40ad988da8e9564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106104265760003560e01c8063729337e811610229578063b3723f021161012e578063c217b6fc116100b6578063e8e7e1381161007a578063e8e7e13814610c83578063e985e9c514610ca3578063ea1996a814610cec578063f095be2614610d1c578063f4b2afc514610d3c57600080fd5b8063c217b6fc14610c04578063c87b56dd14610c19578063ceaa977514610c39578063d2c626c514610c4e578063e36b0b3714610c6e57600080fd5b8063b88d4fde116100fd578063b88d4fde14610b5c578063b8cd96d814610b7c578063b9cedf4714610b91578063bd856b3714610bc1578063bf3c101a14610bd457600080fd5b8063b3723f0214610af6578063b477f64714610b16578063b51b26de14610b32578063b63a817514610b4757600080fd5b806399770850116101b1578063a22cb46511610180578063a22cb46514610a6f578063a2e9147714610a8f578063a4edf71a14610ab1578063a96af0f414610acb578063aa80d4d514610ae157600080fd5b806399770850146109f25780639c58e27614610a075780639cbd7f5c14610a23578063a035b1fe14610a5357600080fd5b80638ce0a190116101f85780638ce0a1901461095557806391be1cd91461098557806395d89b411461099857806396785117146109ad57806398d5fdca146109dd57600080fd5b8063729337e8146108f85780637311cf821461090d57806383a9690214610922578063856b3ab21461094257600080fd5b80633ccfd60b1161032f57806358d8986d116102b757806363f8377c1161028657806363f8377c1461086057806365c9ff52146108835780636ad1fe02146108a257806370a08231146108b8578063717b29ce146108d857600080fd5b806358d8986d146107d05780635cf8a6591461080057806362ff8b60146108205780636352211e1461084057600080fd5b80634472ca56116102fe5780634472ca56146107365780634635d75a146107665780634d3d2ca11461077b5780634ec4e30c1461079b578063521f41ec146107bb57600080fd5b80633ccfd60b146106ce5780633eb21429146106e357806340d097c31461070357806342842e0e1461071657600080fd5b80631293b21a116103b257806318160ddd1161038157806318160ddd1461062c5780631f4296c91461064957806322a54cf31461067957806323b872dd14610699578063338dbf59146106b957600080fd5b80631293b21a146105a1578063147fa3f8146105cb57806314d092fd146105eb578063165ca5581461060b57600080fd5b8063095ea7b3116103f9578063095ea7b3146104ea5780630ac1b7ec1461050c5780630c1c972a1461053c578063108d9e1414610551578063119c85551461058157600080fd5b806301ffc9a71461042b578063024d8f431461046057806306fdde0314610490578063081812fc146104b2575b600080fd5b34801561043757600080fd5b5061044b61044636600461300b565b610d6c565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b5061044b61047b366004612ddc565b601c6020526000908152604090205460ff1681565b34801561049c57600080fd5b506104a5610dbe565b60405161045791906130f3565b3480156104be57600080fd5b506104d26104cd366004613043565b610e50565b6040516001600160a01b039091168152602001610457565b3480156104f657600080fd5b5061050a610505366004612f72565b610e94565b005b34801561051857600080fd5b5061044b610527366004612ddc565b601b6020526000908152604090205460ff1681565b34801561054857600080fd5b5061050a610f1b565b34801561055d57600080fd5b5061044b61056c366004612ddc565b601a6020526000908152604090205460ff1681565b34801561058d57600080fd5b5061050a61059c366004612f9b565b610f65565b3480156105ad57600080fd5b506105bd674563918244f4000081565b604051908152602001610457565b3480156105d757600080fd5b5061050a6105e6366004612f9b565b611006565b3480156105f757600080fd5b50601d5461044b9062010000900460ff1681565b34801561061757600080fd5b50601d5461044b906301000000900460ff1681565b34801561063857600080fd5b5060015460005403600019016105bd565b34801561065557600080fd5b5061044b610664366004612ddc565b60186020526000908152604090205460ff1681565b34801561068557600080fd5b5061050a610694366004612f9b565b6110a4565b3480156106a557600080fd5b5061050a6106b4366004612e28565b611142565b3480156106c557600080fd5b5061050a61114d565b3480156106da57600080fd5b5061050a61118d565b3480156106ef57600080fd5b5061050a6106fe366004612f9b565b611246565b61050a610711366004612ddc565b6112e7565b34801561072257600080fd5b5061050a610731366004612e28565b6117c2565b34801561074257600080fd5b5061044b610751366004612ddc565b60166020526000908152604090205460ff1681565b34801561077257600080fd5b5061050a6117dd565b34801561078757600080fd5b5061050a610796366004612f9b565b611820565b3480156107a757600080fd5b5061050a6107b6366004612f9b565b6118c1565b3480156107c757600080fd5b506105bd600581565b3480156107dc57600080fd5b5061044b6107eb366004612ddc565b60156020526000908152604090205460ff1681565b34801561080c57600080fd5b5061050a61081b366004612f9b565b61195f565b34801561082c57600080fd5b5061050a61083b366004612f9b565b6119fd565b34801561084c57600080fd5b506104d261085b366004613043565b611a9e565b34801561086c57600080fd5b50601d5461044b9065010000000000900460ff1681565b34801561088f57600080fd5b50601d5461044b90610100900460ff1681565b3480156108ae57600080fd5b506105bd600b5481565b3480156108c457600080fd5b506105bd6108d3366004612ddc565b611ab0565b3480156108e457600080fd5b5061050a6108f3366004612f9b565b611aff565b34801561090457600080fd5b5061050a611b9d565b34801561091957600080fd5b5061050a611bda565b34801561092e57600080fd5b5061050a61093d366004612f9b565b611c18565b61050a610950366004612ddc565b611cb9565b34801561096157600080fd5b5061044b610970366004612ddc565b60106020526000908152604090205460ff1681565b61050a610993366004612ddc565b611e19565b3480156109a457600080fd5b506104a5611f6d565b3480156109b957600080fd5b5061044b6109c8366004612ddc565b60176020526000908152604090205460ff1681565b3480156109e957600080fd5b506105bd611f7c565b3480156109fe57600080fd5b5061050a612019565b348015610a1357600080fd5b506105bd671bc16d674ec8000081565b348015610a2f57600080fd5b5061044b610a3e366004612ddc565b60146020526000908152604090205460ff1681565b348015610a5f57600080fd5b506105bd67013fbe85edc9000081565b348015610a7b57600080fd5b5061050a610a8a366004612f38565b612058565b348015610a9b57600080fd5b50601d5461044b90640100000000900460ff1681565b348015610abd57600080fd5b50601d5461044b9060ff1681565b348015610ad757600080fd5b506105bd6108b081565b348015610aed57600080fd5b506105bd606481565b348015610b0257600080fd5b5061050a610b11366004612f9b565b6120ee565b348015610b2257600080fd5b506105bd670de0b6b3a764000081565b348015610b3e57600080fd5b5061050a61218c565b348015610b5357600080fd5b506105bd601181565b348015610b6857600080fd5b5061050a610b77366004612e63565b6121c7565b348015610b8857600080fd5b506105bd600f81565b348015610b9d57600080fd5b5061044b610bac366004612ddc565b60196020526000908152604090205460ff1681565b61050a610bcf366004612ddc565b612211565b348015610be057600080fd5b5061044b610bef366004612ddc565b60116020526000908152604090205460ff1681565b348015610c1057600080fd5b506105bd600181565b348015610c2557600080fd5b506104a5610c34366004613043565b612368565b348015610c4557600080fd5b506105bd602381565b348015610c5a57600080fd5b5061050a610c69366004612f9b565b6123ed565b348015610c7a57600080fd5b5061050a61248e565b348015610c8f57600080fd5b5061050a610c9e366004612f9b565b6124c8565b348015610caf57600080fd5b5061044b610cbe366004612df6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610cf857600080fd5b5061044b610d07366004612ddc565b60136020526000908152604090205460ff1681565b348015610d2857600080fd5b5061050a610d37366004612f9b565b612566565b348015610d4857600080fd5b5061044b610d57366004612ddc565b60126020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480610d9d57506001600160e01b03198216635b5e139f60e01b145b80610db857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610dcd90613259565b80601f0160208091040260200160405190810160405280929190818152602001828054610df990613259565b8015610e465780601f10610e1b57610100808354040283529160200191610e46565b820191906000526020600020905b815481529060010190602001808311610e2957829003601f168201915b5050505050905090565b6000610e5b82612607565b610e78576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e9f82611a9e565b9050806001600160a01b0316836001600160a01b03161415610ed45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610f0b57610eee8133610cbe565b610f0b576040516367d9dca160e11b815260040160405180910390fd5b610f16838383612640565b505050565b6008546001600160a01b03163314610f4e5760405162461bcd60e51b8152600401610f459061312e565b60405180910390fd5b601d805464ffffffffff1916640100000000179055565b6008546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110610fbc57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fd19190612ddc565b6001600160a01b03166000908152601060205260409020805460ff191660011790555080610ffe81613294565b915050610f92565b6008546001600160a01b031633146110305760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061105d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110729190612ddc565b6001600160a01b03166000908152601760205260409020805460ff19169055508061109c81613294565b915050611033565b6008546001600160a01b031633146110ce5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106110fb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111109190612ddc565b6001600160a01b03166000908152601260205260409020805460ff19169055508061113a81613294565b9150506110d1565b610f1683838361269c565b6008546001600160a01b031633146111775760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19166301000000179055565b6008546001600160a01b031633146111b75760405162461bcd60e51b8152600401610f459061312e565b47600060646111c78360066131f7565b6111d191906131e3565b90506111dd8183613216565b600a546040519193506001600160a01b03169082156108fc029083906000818181858888f1935050505061121057600080fd5b6009546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505061124257600080fd5b5050565b6008546001600160a01b031633146112705760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061129d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b29190612ddc565b6001600160a01b03166000908152601260205260409020805460ff1916600117905550806112df81613294565b915050611273565b600b5460011415611353576008546001600160a01b0316331461133e5760405162461bcd60e51b815260206004820152600f60248201526e2932b9b2b93b32b2103a37b5b2b71760891b6044820152606401610f45565b61134a81600c5461288b565b50600c54600b55565b600061135d611f7c565b905080341461137e5760405162461bcd60e51b8152600401610f4590613106565b6108b0600b54106113a15760405162461bcd60e51b8152600401610f4590613171565b601d5460ff1615611490576001600160a01b03821660009081526010602052604090205460ff1615156001146113e95760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526014602052604090205460ff161515600114156114685760405162461bcd60e51b815260206004820152602860248201527f596f75206861766520616c7265616479206d696e7420796f75722073696c766560448201526739103a37b5b2b71760c11b6064820152608401610f45565b6001600160a01b0382166000908152601460205260409020805460ff19166001179055611762565b601d54610100900460ff1615611582576001600160a01b03821660009081526011602052604090205460ff1615156001146114dd5760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526015602052604090205460ff1615156001141561155a5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e7420796f757220676f6c64206044820152653a37b5b2b71760d11b6064820152608401610f45565b6001600160a01b0382166000908152601560205260409020805460ff19166001179055611762565b601d5462010000900460ff1615611672576001600160a01b03821660009081526012602052604090205460ff1615156001146115d05760405162461bcd60e51b8152600401610f4590613194565b6001600160a01b03821660009081526016602052604090205460ff1615156001141561164a5760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e7420796f7572206f6720746f60448201526335b2b71760e11b6064820152608401610f45565b6001600160a01b0382166000908152601660205260409020805460ff19166001179055611762565b601d546301000000900460ff16156116e9576001600160a01b03821660009081526013602052604090205460ff1615156001146116c15760405162461bcd60e51b8152600401610f4590613194565b6108b0600b54106116e45760405162461bcd60e51b8152600401610f4590613171565b611762565b601d54640100000000900460ff16151560011461173f5760405162461bcd60e51b815260206004820152601460248201527329b0b6329034b9903737ba1039ba30b93a32b21760611b6044820152606401610f45565b6108b0600b54106117625760405162461bcd60e51b8152600401610f4590613171565b601d5462010000900460ff1661179b5761177d82600161288b565b6001600b600082825461179091906131cb565b909155506112429050565b6117a682600361288b565b6003600b60008282546117b991906131cb565b90915550505050565b610f16838383604051806020016040528060008152506121c7565b6008546001600160a01b031633146118075760405162461bcd60e51b8152600401610f459061312e565b601d805465ff0000000000191665010000000000179055565b6008546001600160a01b0316331461184a5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061187757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061188c9190612ddc565b6001600160a01b03166000908152601360205260409020805460ff1916600117905550806118b981613294565b91505061184d565b6008546001600160a01b031633146118eb5760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061191857634e487b7160e01b600052603260045260246000fd5b905060200201602081019061192d9190612ddc565b6001600160a01b03166000908152601360205260409020805460ff19169055508061195781613294565b9150506118ee565b6008546001600160a01b031633146119895760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106119b657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119cb9190612ddc565b6001600160a01b03166000908152601960205260409020805460ff1916905550806119f581613294565b91505061198c565b6008546001600160a01b03163314611a275760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611a5457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a699190612ddc565b6001600160a01b03166000908152601760205260409020805460ff191660011790555080611a9681613294565b915050611a2a565b6000611aa9826128a5565b5192915050565b60006001600160a01b038216611ad9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314611b295760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611b5657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b6b9190612ddc565b6001600160a01b03166000908152601060205260409020805460ff191690555080611b9581613294565b915050611b2c565b6008546001600160a01b03163314611bc75760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19166001179055565b6008546001600160a01b03163314611c045760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff1916610100179055565b6008546001600160a01b03163314611c425760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f16576000838383818110611c6f57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c849190612ddc565b6001600160a01b03166000908152601860205260409020805460ff191660011790555080611cb181613294565b915050611c45565b6001600160a01b03811660009081526018602052604090205460ff161515600114611cf65760405162461bcd60e51b8152600401610f4590613194565b671bc16d674ec800003414611d1d5760405162461bcd60e51b8152600401610f4590613106565b6005600e5410611d3f5760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601b602052604090205460ff16151560011415611dbd5760405162461bcd60e51b815260206004820152602760248201527f596f75206861766520616c7265616479206d696e7420796f7572206d6564697560448201526636903830b1b59760c91b6064820152608401610f45565b6001600160a01b0381166000908152601b60205260408120805460ff19166001179055600e805491611dee83613294565b9190505550611dfe81602361288b565b6023600b6000828254611e1191906131cb565b909155505050565b6001600160a01b03811660009081526017602052604090205460ff161515600114611e565760405162461bcd60e51b8152600401610f4590613194565b674563918244f400003414611e7d5760405162461bcd60e51b8152600401610f4590613106565b6001600d5410611e9f5760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601a602052604090205460ff16151560011415611f195760405162461bcd60e51b8152602060048201526024808201527f596f75206861766520616c7265616479206d696e7420796f757220626967207060448201526330b1b59760e11b6064820152608401610f45565b6001600160a01b0381166000908152601a60205260408120805460ff19166001179055600d805491611f4a83613294565b9190505550611f5a81606461288b565b6064600b6000828254611e1191906131cb565b606060038054610dcd90613259565b601d5460009060ff1615611fc0576064611f9f67013fbe85edc9000060196131f7565b611fa991906131e3565b611fbb9067013fbe85edc90000613216565b905090565b601d54610100900460ff1615611fe5576064611f9f67013fbe85edc9000060326131f7565b601d546301000000900460ff161561200c576064611f9f67013fbe85edc90000600a6131f7565b5067013fbe85edc9000090565b6008546001600160a01b031633146120435760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff191662010000179055565b6001600160a01b0382163314156120825760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146121185760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061214557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061215a9190612ddc565b6001600160a01b03166000908152601860205260409020805460ff19169055508061218481613294565b91505061211b565b6008546001600160a01b031633146121b65760405162461bcd60e51b8152600401610f459061312e565b601d805465ff000000000019169055565b6121d284848461269c565b6001600160a01b0383163b1561220b576121ee848484846129c9565b61220b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6001600160a01b03811660009081526019602052604090205460ff16151560011461224e5760405162461bcd60e51b8152600401610f4590613194565b670de0b6b3a764000034146122755760405162461bcd60e51b8152600401610f4590613106565b6011600f54106122975760405162461bcd60e51b8152600401610f4590613171565b6001600160a01b0381166000908152601c602052604090205460ff161515600114156123145760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c7265616479206d696e7420796f757220736d616c6c604482015265103830b1b59760d11b6064820152608401610f45565b6001600160a01b0381166000908152601c60205260408120805460ff19166001179055600f80549161234583613294565b919050555061235581600f61288b565b600f600b6000828254611e1191906131cb565b606061237382612607565b61239057604051630a14c4b560e41b815260040160405180910390fd5b600061239a612ac1565b90508051600014156123bb57604051806020016040528060008152506123e6565b806123c584612ae1565b6040516020016123d6929190613087565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146124175760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061244457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906124599190612ddc565b6001600160a01b03166000908152601160205260409020805460ff19166001179055508061248681613294565b91505061241a565b6008546001600160a01b031633146124b85760405162461bcd60e51b8152600401610f459061312e565b601d805464ffffffffff19169055565b6008546001600160a01b031633146124f25760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f1657600083838381811061251f57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906125349190612ddc565b6001600160a01b03166000908152601160205260409020805460ff19169055508061255e81613294565b9150506124f5565b6008546001600160a01b031633146125905760405162461bcd60e51b8152600401610f459061312e565b60005b81811015610f165760008383838181106125bd57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906125d29190612ddc565b6001600160a01b03166000908152601960205260409020805460ff1916600117905550806125ff81613294565b915050612593565b60008160011115801561261b575060005482105b8015610db8575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006126a7826128a5565b9050836001600160a01b031681600001516001600160a01b0316146126de5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806126fc57506126fc8533610cbe565b8061271757503361270c84610e50565b6001600160a01b0316145b90508061273757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661275e57604051633a954ecd60e21b815260040160405180910390fd5b61276a60008487612640565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612840576000548214612840578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b611242828260405180602001604052806000815250612bfb565b604080516060810182526000808252602082018190529181019190915281806001116129b0576000548110156129b057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906129ae5780516001600160a01b031615612944579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156129a9579392505050565b612944565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129fe9033908990889088906004016130b6565b602060405180830381600087803b158015612a1857600080fd5b505af1925050508015612a48575060408051601f3d908101601f19168201909252612a4591810190613027565b60015b612aa3573d808015612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b508051612a9b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060405180606001604052806023815260200161331f60239139905090565b606081612b055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612b2f5780612b1981613294565b9150612b289050600a836131e3565b9150612b09565b60008167ffffffffffffffff811115612b5857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b82576020820181803683370190505b5090505b8415612ab957612b97600183613216565b9150612ba4600a866132af565b612baf9060306131cb565b60f81b818381518110612bd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612bf4600a866131e3565b9450612b86565b6000546001600160a01b038416612c2457604051622e076360e81b815260040160405180910390fd5b82612c425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612d6b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d3460008784806001019550876129c9565b612d51576040516368d2bf6b60e11b815260040160405180910390fd5b808210612ce9578260005414612d6657600080fd5b612db0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612d6c575b50600090815561220b9085838684565b80356001600160a01b0381168114612dd757600080fd5b919050565b600060208284031215612ded578081fd5b6123e682612dc0565b60008060408385031215612e08578081fd5b612e1183612dc0565b9150612e1f60208401612dc0565b90509250929050565b600080600060608486031215612e3c578081fd5b612e4584612dc0565b9250612e5360208501612dc0565b9150604084013590509250925092565b60008060008060808587031215612e78578081fd5b612e8185612dc0565b9350612e8f60208601612dc0565b925060408501359150606085013567ffffffffffffffff80821115612eb2578283fd5b818701915087601f830112612ec5578283fd5b813581811115612ed757612ed76132ef565b604051601f8201601f19908116603f01168101908382118183101715612eff57612eff6132ef565b816040528281528a6020848701011115612f17578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612f4a578182fd5b612f5383612dc0565b915060208301358015158114612f67578182fd5b809150509250929050565b60008060408385031215612f84578182fd5b612f8d83612dc0565b946020939093013593505050565b60008060208385031215612fad578182fd5b823567ffffffffffffffff80821115612fc4578384fd5b818501915085601f830112612fd7578384fd5b813581811115612fe5578485fd5b8660208260051b8501011115612ff9578485fd5b60209290920196919550909350505050565b60006020828403121561301c578081fd5b81356123e681613305565b600060208284031215613038578081fd5b81516123e681613305565b600060208284031215613054578081fd5b5035919050565b6000815180845261307381602086016020860161322d565b601f01601f19169290920160200192915050565b6000835161309981846020880161322d565b8351908301906130ad81836020880161322d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130e99083018461305b565b9695505050505050565b6020815260006123e6602083018461305b565b6020808252600e908201526d24b73b30b634b210383934b1b29760911b604082015260600190565b60208082526023908201527f4f6e6c7920746865206f776e65722063616e2063616c6c2074686973206d65746040820152621a1bd960ea1b606082015260800190565b60208082526009908201526829b7b6321037baba1760b91b604082015260600190565b6020808252601c908201527f596f75277265206e6f7420696e207468652077686974656c6973742e00000000604082015260600190565b600082198211156131de576131de6132c3565b500190565b6000826131f2576131f26132d9565b500490565b6000816000190483118215151615613211576132116132c3565b500290565b600082821015613228576132286132c3565b500390565b60005b83811015613248578181015183820152602001613230565b8381111561220b5750506000910152565b600181811c9082168061326d57607f821691505b6020821081141561328e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132a8576132a86132c3565b5060010190565b6000826132be576132be6132d9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461331b57600080fd5b5056fe68747470733a2f2f6e6674732e74616c657366726f6d74686577696c642e6c616e642fa2646970667358221220d929de8b5ee9d43c441660d8ab2061760740ea729d9c694d3da40ad988da8e9564736f6c63430008040033

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.