ETH Price: $3,294.85 (-3.43%)
Gas: 21 Gwei

Token

BlerdPass (BP)
 

Overview

Max Total Supply

2,222 BP

Holders

2,017

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*未名只打金狗.eth
Balance
1 BP
0xa9c2837064acd4f66028940279cdf001580a60a8
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:
BlerdPassContract

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 12 : BlerdPassContract.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

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

    uint256 public constant MAX_SUPPLY = 2222;
    uint256 public  MAX_PUBLIC_MINT = 1;
    uint256 public  MaxPerPublicWallet = 1;
    uint256 public  PUBLIC_SALE_PRICE = .0 ether;

    string private  baseTokenUri;

    bool public publicSale;
    bool public teamMinted;

    mapping(address => uint256) public totalPublicMint;

    constructor() ERC721A("BlerdPass", "BP"){

    }

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

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "BlerdPass :: Not Yet Active or Is Paused.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "BlerdPass :: Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "BlerdPass :: Already minted 1 time!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "BlerdPass :: Payment is below the price");
        require(_quantity + balanceOf(msg.sender) <= MaxPerPublicWallet , "BlerdPass :: You can not mint more than the maximum allowed per user.");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
        
    }


    function teamMint() external onlyOwner{
        require(!teamMinted, "BlerdPass :: Team already minted");
        teamMinted = true;
        _safeMint(msg.sender, 222);
    }

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

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

        uint256 trueId = tokenId + 1;

        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : string(abi.encodePacked("https://gateway.pinata.cloud/ipfs/QmeHCx4advM2pJU4XbSwRKV3BuG3NxfkhHVvy1iBrNSNVC"));
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
         //   ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

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

    //////// Max Per Public Mint
    function setMaxPerPublicMint(uint256 _quantity) public onlyOwner {
        MAX_PUBLIC_MINT=_quantity;
    }
 
    function getMaxPerPublicMint() public view returns (uint256) {
       
           return MAX_PUBLIC_MINT;
    }

    //////// PUBLIC SALE PRICE
    function setPublicPrice(uint256 _newPrice) public onlyOwner() {
        PUBLIC_SALE_PRICE = _newPrice;
    }

    function getPublicPrice(uint256 _quantity) public view returns (uint256) {
       
        return _quantity*PUBLIC_SALE_PRICE ;
    }

    ////// Max Per Public Wallet
    function setMaxPerPublicWallet(uint256 _maxPerPublicWallet) public onlyOwner() {
        MaxPerPublicWallet = _maxPerPublicWallet;
    }

    function getMaxPerPublicWallet() public view returns (uint256) {
       
        return MaxPerPublicWallet ;
    }

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

    function withdraw() external onlyOwner{
        uint256 withdrawAmount_35 = address(this).balance * 35/100;
        uint256 withdrawAmount_20 = (address(this).balance - withdrawAmount_35) * 20/100;
        payable(0xF914056FE1130741c44bcF7B5E00ad9A2A4B5291).transfer(withdrawAmount_35);
        payable(0xF7D955567D172480b01Fa6732CA5100C0B795926).transfer(withdrawAmount_20);
        payable(msg.sender).transfer(address(this).balance);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

    }

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

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

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

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

File 3 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // Mapping for Blacklisting
    mapping(address=>bool) isBlacklisted;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from, 
        address to, 
        uint256 tokenId
        ) public virtual override {
        require(!isBlacklisted[to], "Recipient is backlisted");
        require(!isBlacklisted[from], "Recipient is backlisted");
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(!isBlacklisted[to], "Recipient is backlisted");
        require(!isBlacklisted[from], "Recipient is backlisted");
        safeTransferFrom(from, to, tokenId, '');
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

File 4 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 12 : 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerPublicWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerPublicWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxPerPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerPublicWallet","type":"uint256"}],"name":"setMaxPerPublicWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b0319167390ee4b80c3b15b8b83510be8fcf2bced69a4c9db1790556001600c819055600d556000600e553480156200004657600080fd5b506040805180820182526009815268426c6572645061737360b81b602080830191825283518085019094526002845261042560f41b9084015260016000558151919291620000979160039162000118565b508051620000ad90600490602084019062000118565b5050600060015550620000c033620000c6565b620001fb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b6123ab806200020b6000396000f3fe60806040526004361061020f5760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105bc578063e222c7f9146105dc578063e8b5498d146105f1578063e985e9c514610610578063f2fde38b1461065957600080fd5b8063a22cb46514610547578063b88d4fde14610567578063ba7a86b814610587578063c62752551461059c57600080fd5b806380398115116100e757806380398115146104ca57806383a974a2146104df5780638da5cb5b1461050157806395d89b411461051f578063a0712d681461053457600080fd5b806365f130971461045f57806370a0823114610475578063715018a6146104955780637aa4a712146104aa57600080fd5b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103d557806342842e0e146103ea57806354efb8bf1461040a5780636352211e1461042a578063636dfd2c1461044a57600080fd5b806323b872dd1461036557806330a3f4461461038557806332cb6b0c146103a557806333bc1c5c146103bb57600080fd5b8063081812fc116101e2578063081812fc146102b1578063095ea7b3146102e957806311a6c4901461030957806318160ddd1461031f5780631c16521c1461033857600080fd5b806301ffc9a7146102145780630675b7c61461024957806306fdde031461026b57806307e89ec01461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611d88565b610679565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611e31565b6106cb565b005b34801561027757600080fd5b50610280610739565b6040516102409190611ed2565b34801561029957600080fd5b506102a3600e5481565b604051908152602001610240565b3480156102bd57600080fd5b506102d16102cc366004611ee5565b6107cb565b6040516001600160a01b039091168152602001610240565b3480156102f557600080fd5b50610269610304366004611f1a565b61080f565b34801561031557600080fd5b506102a3600d5481565b34801561032b57600080fd5b50600254600154036102a3565b34801561034457600080fd5b506102a3610353366004611f44565b60116020526000908152604090205481565b34801561037157600080fd5b50610269610380366004611f5f565b61089d565b34801561039157600080fd5b506102a36103a0366004611ee5565b61091a565b3480156103b157600080fd5b506102a36108ae81565b3480156103c757600080fd5b506010546102349060ff1681565b3480156103e157600080fd5b5061026961092a565b3480156103f657600080fd5b50610269610405366004611f5f565b610a69565b34801561041657600080fd5b50610269610425366004611ee5565b610af6565b34801561043657600080fd5b506102d1610445366004611ee5565b610b49565b34801561045657600080fd5b50600c546102a3565b34801561046b57600080fd5b506102a3600c5481565b34801561048157600080fd5b506102a3610490366004611f44565b610b5b565b3480156104a157600080fd5b50610269610baa565b3480156104b657600080fd5b506102696104c5366004611ee5565b610c04565b3480156104d657600080fd5b50600d546102a3565b3480156104eb57600080fd5b506104f4610c57565b6040516102409190611f9b565b34801561050d57600080fd5b50600a546001600160a01b03166102d1565b34801561052b57600080fd5b50610280610cd3565b610269610542366004611ee5565b610ce2565b34801561055357600080fd5b50610269610562366004611fdf565b610fc1565b34801561057357600080fd5b5061026961058236600461201b565b611057565b34801561059357600080fd5b5061026961111a565b3480156105a857600080fd5b506102696105b7366004611ee5565b6111da565b3480156105c857600080fd5b506102806105d7366004611ee5565b61122d565b3480156105e857600080fd5b5061026961137a565b3480156105fd57600080fd5b5060105461023490610100900460ff1681565b34801561061c57600080fd5b5061023461062b366004612097565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b50610269610674366004611f44565b6113dc565b60006001600160e01b031982166380ac58cd60e01b14806106aa57506001600160e01b03198216635b5e139f60e01b145b806106c557506301ffc9a760e01b6001600160e01b03198316145b92915050565b336106de600a546001600160a01b031690565b6001600160a01b031614806106fd5750600b546001600160a01b031633145b6107225760405162461bcd60e51b8152600401610719906120ca565b60405180910390fd5b805161073590600f906020840190611cd9565b5050565b606060038054610748906120ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610774906120ff565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d682611498565b6107f3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061081a82610b49565b9050806001600160a01b0316836001600160a01b0316141561084f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061086f575061086d813361062b565b155b1561088d576040516367d9dca160e11b815260040160405180910390fd5b6108988383836114c4565b505050565b6001600160a01b03821660009081526009602052604090205460ff16156108d65760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03831660009081526009602052604090205460ff161561090f5760405162461bcd60e51b81526004016107199061213a565b610898838383611520565b6000600e54826106c59190612187565b3361093d600a546001600160a01b031690565b6001600160a01b0316148061095c5750600b546001600160a01b031633145b6109785760405162461bcd60e51b8152600401610719906120ca565b60006064610987476023612187565b61099191906121bc565b9050600060646109a183476121d0565b6109ac906014612187565b6109b691906121bc565b60405190915073f914056fe1130741c44bcf7b5e00ad9a2a4b52919083156108fc029084906000818181858888f193505050501580156109fa573d6000803e3d6000fd5b5060405173f7d955567d172480b01fa6732ca5100c0b7959269082156108fc029083906000818181858888f19350505050158015610a3c573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b6001600160a01b03821660009081526009602052604090205460ff1615610aa25760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03831660009081526009602052604090205460ff1615610adb5760405162461bcd60e51b81526004016107199061213a565b61089883838360405180602001604052806000815250611057565b33610b09600a546001600160a01b031690565b6001600160a01b03161480610b285750600b546001600160a01b031633145b610b445760405162461bcd60e51b8152600401610719906120ca565b600c55565b6000610b5482611710565b5192915050565b60006001600160a01b038216610b84576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b33610bbd600a546001600160a01b031690565b6001600160a01b03161480610bdc5750600b546001600160a01b031633145b610bf85760405162461bcd60e51b8152600401610719906120ca565b610c02600061182c565b565b33610c17600a546001600160a01b031690565b6001600160a01b03161480610c365750600b546001600160a01b031633145b610c525760405162461bcd60e51b8152600401610719906120ca565b600d55565b6060336000610c6582610b5b565b905060008167ffffffffffffffff811115610c8257610c82611da5565b604051908082528060200260200182016040528015610cab578160200160208202803683370190505b50905060005b82811015610ccb5780610cc3816121e7565b915050610cb1565b509392505050565b606060048054610748906120ff565b323314610d455760405162461bcd60e51b815260206004820152602b60248201527f426c65726450617373203a3a2043616e6e6f742062652063616c6c656420627960448201526a08184818dbdb9d1c9858dd60aa1b6064820152608401610719565b60105460ff16610da95760405162461bcd60e51b815260206004820152602960248201527f426c65726450617373203a3a204e6f742059657420416374697665206f72204960448201526839902830bab9b2b21760b91b6064820152608401610719565b6108ae81610dba6002546001540390565b610dc49190612202565b1115610e125760405162461bcd60e51b815260206004820152601e60248201527f426c65726450617373203a3a204265796f6e64204d617820537570706c7900006044820152606401610719565b600c5433600090815260116020526040902054610e30908390612202565b1115610e8a5760405162461bcd60e51b815260206004820152602360248201527f426c65726450617373203a3a20416c7265616479206d696e74656420312074696044820152626d652160e81b6064820152608401610719565b80600e54610e989190612187565b341015610ef75760405162461bcd60e51b815260206004820152602760248201527f426c65726450617373203a3a205061796d656e742069732062656c6f772074686044820152666520707269636560c81b6064820152608401610719565b600d54610f0333610b5b565b610f0d9083612202565b1115610f8f5760405162461bcd60e51b815260206004820152604560248201527f426c65726450617373203a3a20596f752063616e206e6f74206d696e74206d6f60448201527f7265207468616e20746865206d6178696d756d20616c6c6f77656420706572206064820152643ab9b2b91760d91b608482015260a401610719565b3360009081526011602052604081208054839290610fae908490612202565b90915550610fbe9050338261187e565b50565b6001600160a01b038216331415610feb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b03831660009081526009602052604090205460ff16156110905760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03841660009081526009602052604090205460ff16156110c95760405162461bcd60e51b81526004016107199061213a565b6110d4848484611520565b6001600160a01b0383163b151580156110f657506110f484848484611898565b155b15611114576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3361112d600a546001600160a01b031690565b6001600160a01b0316148061114c5750600b546001600160a01b031633145b6111685760405162461bcd60e51b8152600401610719906120ca565b601054610100900460ff16156111c05760405162461bcd60e51b815260206004820181905260248201527f426c65726450617373203a3a205465616d20616c7265616479206d696e7465646044820152606401610719565b6010805461ff001916610100179055610c023360de61187e565b336111ed600a546001600160a01b031690565b6001600160a01b0316148061120c5750600b546001600160a01b031633145b6112285760405162461bcd60e51b8152600401610719906120ca565b600e55565b606061123882611498565b61129c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610719565b60006112a9836001612202565b90506000600f80546112ba906120ff565b90501161134757604051602001611333907f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706681527f732f516d65484378346164764d32704a553458625377524b5633427547334e7860208201526f666b6848567679316942724e534e564360801b604082015260500190565b604051602081830303815290604052611373565b600f61135282611990565b604051602001611363929190612236565b6040516020818303038152906040525b9392505050565b3361138d600a546001600160a01b031690565b6001600160a01b031614806113ac5750600b546001600160a01b031633145b6113c85760405162461bcd60e51b8152600401610719906120ca565b6010805460ff19811660ff90911615179055565b336113ef600a546001600160a01b031690565b6001600160a01b0316148061140e5750600b546001600160a01b031633145b61142a5760405162461bcd60e51b8152600401610719906120ca565b6001600160a01b03811661148f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610719565b610fbe8161182c565b6000600154821080156106c5575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061152b82611710565b9050836001600160a01b031681600001516001600160a01b0316146115625760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115805750611580853361062b565b8061159b575033611590846107cb565b6001600160a01b0316145b9050806115bb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e257604051633a954ecd60e21b815260040160405180910390fd5b6115ee600084876114c4565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116c45760015482146116c4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160015481101561181357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118115780516001600160a01b0316156117a7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561180c579392505050565b6117a7565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610735828260405180602001604052806000815250611a8e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118cd9033908990889088906004016122f1565b602060405180830381600087803b1580156118e757600080fd5b505af1925050508015611917575060408051601f3d908101601f191682019092526119149181019061232e565b60015b611972573d808015611945576040519150601f19603f3d011682016040523d82523d6000602084013e61194a565b606091505b50805161196a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c8816121e7565b91506119d79050600a836121bc565b91506119b8565b60008167ffffffffffffffff8111156119f9576119f9611da5565b6040519080825280601f01601f191660200182016040528015611a23576020820181803683370190505b5090505b841561198857611a386001836121d0565b9150611a45600a8661234b565b611a50906030612202565b60f81b818381518110611a6557611a6561235f565b60200101906001600160f81b031916908160001a905350611a87600a866121bc565b9450611a27565b6001600160a01b03831660009081526009602052604090205460ff1615611ac75760405162461bcd60e51b81526004016107199061213a565b61089883838360016001600160a01b03841660009081526009602052604090205460ff1615611b085760405162461bcd60e51b81526004016107199061213a565b6001546001600160a01b038516611b3157604051622e076360e81b815260040160405180910390fd5b83611b4f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0157506001600160a01b0387163b15155b15611c8a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c526000888480600101955088611898565b611c6f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c07578260015414611c8557600080fd5b611cd0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8b575b50600155611709565b828054611ce5906120ff565b90600052602060002090601f016020900481019282611d075760008555611d4d565b82601f10611d2057805160ff1916838001178555611d4d565b82800160010185558215611d4d579182015b82811115611d4d578251825591602001919060010190611d32565b50611d59929150611d5d565b5090565b5b80821115611d595760008155600101611d5e565b6001600160e01b031981168114610fbe57600080fd5b600060208284031215611d9a57600080fd5b813561137381611d72565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dd657611dd6611da5565b604051601f8501601f19908116603f01168101908282118183101715611dfe57611dfe611da5565b81604052809350858152868686011115611e1757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4357600080fd5b813567ffffffffffffffff811115611e5a57600080fd5b8201601f81018413611e6b57600080fd5b61198884823560208401611dbb565b60005b83811015611e95578181015183820152602001611e7d565b838111156111145750506000910152565b60008151808452611ebe816020860160208601611e7a565b601f01601f19169290920160200192915050565b6020815260006113736020830184611ea6565b600060208284031215611ef757600080fd5b5035919050565b80356001600160a01b0381168114611f1557600080fd5b919050565b60008060408385031215611f2d57600080fd5b611f3683611efe565b946020939093013593505050565b600060208284031215611f5657600080fd5b61137382611efe565b600080600060608486031215611f7457600080fd5b611f7d84611efe565b9250611f8b60208501611efe565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611fd357835183529284019291840191600101611fb7565b50909695505050505050565b60008060408385031215611ff257600080fd5b611ffb83611efe565b91506020830135801515811461201057600080fd5b809150509250929050565b6000806000806080858703121561203157600080fd5b61203a85611efe565b935061204860208601611efe565b925060408501359150606085013567ffffffffffffffff81111561206b57600080fd5b8501601f8101871361207c57600080fd5b61208b87823560208401611dbb565b91505092959194509250565b600080604083850312156120aa57600080fd5b6120b383611efe565b91506120c160208401611efe565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061211357607f821691505b6020821081141561213457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f526563697069656e74206973206261636b6c6973746564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a1576121a1612171565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121cb576121cb6121a6565b500490565b6000828210156121e2576121e2612171565b500390565b60006000198214156121fb576121fb612171565b5060010190565b6000821982111561221557612215612171565b500190565b6000815161222c818560208601611e7a565b9290920192915050565b600080845481600182811c91508083168061225257607f831692505b602080841082141561227257634e487b7160e01b86526022600452602486fd5b8180156122865760018114612297576122c4565b60ff198616895284890196506122c4565b60008b81526020902060005b868110156122bc5781548b8201529085019083016122a3565b505084890196505b5050505050506122e86122d7828661221a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232490830184611ea6565b9695505050505050565b60006020828403121561234057600080fd5b815161137381611d72565b60008261235a5761235a6121a6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d8ab57e8c478b6723958cc144477cfcd15828778baaf9d9fea438dc8aabdd8f064736f6c63430008090033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105bc578063e222c7f9146105dc578063e8b5498d146105f1578063e985e9c514610610578063f2fde38b1461065957600080fd5b8063a22cb46514610547578063b88d4fde14610567578063ba7a86b814610587578063c62752551461059c57600080fd5b806380398115116100e757806380398115146104ca57806383a974a2146104df5780638da5cb5b1461050157806395d89b411461051f578063a0712d681461053457600080fd5b806365f130971461045f57806370a0823114610475578063715018a6146104955780637aa4a712146104aa57600080fd5b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b146103d557806342842e0e146103ea57806354efb8bf1461040a5780636352211e1461042a578063636dfd2c1461044a57600080fd5b806323b872dd1461036557806330a3f4461461038557806332cb6b0c146103a557806333bc1c5c146103bb57600080fd5b8063081812fc116101e2578063081812fc146102b1578063095ea7b3146102e957806311a6c4901461030957806318160ddd1461031f5780631c16521c1461033857600080fd5b806301ffc9a7146102145780630675b7c61461024957806306fdde031461026b57806307e89ec01461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611d88565b610679565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611e31565b6106cb565b005b34801561027757600080fd5b50610280610739565b6040516102409190611ed2565b34801561029957600080fd5b506102a3600e5481565b604051908152602001610240565b3480156102bd57600080fd5b506102d16102cc366004611ee5565b6107cb565b6040516001600160a01b039091168152602001610240565b3480156102f557600080fd5b50610269610304366004611f1a565b61080f565b34801561031557600080fd5b506102a3600d5481565b34801561032b57600080fd5b50600254600154036102a3565b34801561034457600080fd5b506102a3610353366004611f44565b60116020526000908152604090205481565b34801561037157600080fd5b50610269610380366004611f5f565b61089d565b34801561039157600080fd5b506102a36103a0366004611ee5565b61091a565b3480156103b157600080fd5b506102a36108ae81565b3480156103c757600080fd5b506010546102349060ff1681565b3480156103e157600080fd5b5061026961092a565b3480156103f657600080fd5b50610269610405366004611f5f565b610a69565b34801561041657600080fd5b50610269610425366004611ee5565b610af6565b34801561043657600080fd5b506102d1610445366004611ee5565b610b49565b34801561045657600080fd5b50600c546102a3565b34801561046b57600080fd5b506102a3600c5481565b34801561048157600080fd5b506102a3610490366004611f44565b610b5b565b3480156104a157600080fd5b50610269610baa565b3480156104b657600080fd5b506102696104c5366004611ee5565b610c04565b3480156104d657600080fd5b50600d546102a3565b3480156104eb57600080fd5b506104f4610c57565b6040516102409190611f9b565b34801561050d57600080fd5b50600a546001600160a01b03166102d1565b34801561052b57600080fd5b50610280610cd3565b610269610542366004611ee5565b610ce2565b34801561055357600080fd5b50610269610562366004611fdf565b610fc1565b34801561057357600080fd5b5061026961058236600461201b565b611057565b34801561059357600080fd5b5061026961111a565b3480156105a857600080fd5b506102696105b7366004611ee5565b6111da565b3480156105c857600080fd5b506102806105d7366004611ee5565b61122d565b3480156105e857600080fd5b5061026961137a565b3480156105fd57600080fd5b5060105461023490610100900460ff1681565b34801561061c57600080fd5b5061023461062b366004612097565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b50610269610674366004611f44565b6113dc565b60006001600160e01b031982166380ac58cd60e01b14806106aa57506001600160e01b03198216635b5e139f60e01b145b806106c557506301ffc9a760e01b6001600160e01b03198316145b92915050565b336106de600a546001600160a01b031690565b6001600160a01b031614806106fd5750600b546001600160a01b031633145b6107225760405162461bcd60e51b8152600401610719906120ca565b60405180910390fd5b805161073590600f906020840190611cd9565b5050565b606060038054610748906120ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610774906120ff565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d682611498565b6107f3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061081a82610b49565b9050806001600160a01b0316836001600160a01b0316141561084f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061086f575061086d813361062b565b155b1561088d576040516367d9dca160e11b815260040160405180910390fd5b6108988383836114c4565b505050565b6001600160a01b03821660009081526009602052604090205460ff16156108d65760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03831660009081526009602052604090205460ff161561090f5760405162461bcd60e51b81526004016107199061213a565b610898838383611520565b6000600e54826106c59190612187565b3361093d600a546001600160a01b031690565b6001600160a01b0316148061095c5750600b546001600160a01b031633145b6109785760405162461bcd60e51b8152600401610719906120ca565b60006064610987476023612187565b61099191906121bc565b9050600060646109a183476121d0565b6109ac906014612187565b6109b691906121bc565b60405190915073f914056fe1130741c44bcf7b5e00ad9a2a4b52919083156108fc029084906000818181858888f193505050501580156109fa573d6000803e3d6000fd5b5060405173f7d955567d172480b01fa6732ca5100c0b7959269082156108fc029083906000818181858888f19350505050158015610a3c573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b6001600160a01b03821660009081526009602052604090205460ff1615610aa25760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03831660009081526009602052604090205460ff1615610adb5760405162461bcd60e51b81526004016107199061213a565b61089883838360405180602001604052806000815250611057565b33610b09600a546001600160a01b031690565b6001600160a01b03161480610b285750600b546001600160a01b031633145b610b445760405162461bcd60e51b8152600401610719906120ca565b600c55565b6000610b5482611710565b5192915050565b60006001600160a01b038216610b84576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b33610bbd600a546001600160a01b031690565b6001600160a01b03161480610bdc5750600b546001600160a01b031633145b610bf85760405162461bcd60e51b8152600401610719906120ca565b610c02600061182c565b565b33610c17600a546001600160a01b031690565b6001600160a01b03161480610c365750600b546001600160a01b031633145b610c525760405162461bcd60e51b8152600401610719906120ca565b600d55565b6060336000610c6582610b5b565b905060008167ffffffffffffffff811115610c8257610c82611da5565b604051908082528060200260200182016040528015610cab578160200160208202803683370190505b50905060005b82811015610ccb5780610cc3816121e7565b915050610cb1565b509392505050565b606060048054610748906120ff565b323314610d455760405162461bcd60e51b815260206004820152602b60248201527f426c65726450617373203a3a2043616e6e6f742062652063616c6c656420627960448201526a08184818dbdb9d1c9858dd60aa1b6064820152608401610719565b60105460ff16610da95760405162461bcd60e51b815260206004820152602960248201527f426c65726450617373203a3a204e6f742059657420416374697665206f72204960448201526839902830bab9b2b21760b91b6064820152608401610719565b6108ae81610dba6002546001540390565b610dc49190612202565b1115610e125760405162461bcd60e51b815260206004820152601e60248201527f426c65726450617373203a3a204265796f6e64204d617820537570706c7900006044820152606401610719565b600c5433600090815260116020526040902054610e30908390612202565b1115610e8a5760405162461bcd60e51b815260206004820152602360248201527f426c65726450617373203a3a20416c7265616479206d696e74656420312074696044820152626d652160e81b6064820152608401610719565b80600e54610e989190612187565b341015610ef75760405162461bcd60e51b815260206004820152602760248201527f426c65726450617373203a3a205061796d656e742069732062656c6f772074686044820152666520707269636560c81b6064820152608401610719565b600d54610f0333610b5b565b610f0d9083612202565b1115610f8f5760405162461bcd60e51b815260206004820152604560248201527f426c65726450617373203a3a20596f752063616e206e6f74206d696e74206d6f60448201527f7265207468616e20746865206d6178696d756d20616c6c6f77656420706572206064820152643ab9b2b91760d91b608482015260a401610719565b3360009081526011602052604081208054839290610fae908490612202565b90915550610fbe9050338261187e565b50565b6001600160a01b038216331415610feb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b03831660009081526009602052604090205460ff16156110905760405162461bcd60e51b81526004016107199061213a565b6001600160a01b03841660009081526009602052604090205460ff16156110c95760405162461bcd60e51b81526004016107199061213a565b6110d4848484611520565b6001600160a01b0383163b151580156110f657506110f484848484611898565b155b15611114576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3361112d600a546001600160a01b031690565b6001600160a01b0316148061114c5750600b546001600160a01b031633145b6111685760405162461bcd60e51b8152600401610719906120ca565b601054610100900460ff16156111c05760405162461bcd60e51b815260206004820181905260248201527f426c65726450617373203a3a205465616d20616c7265616479206d696e7465646044820152606401610719565b6010805461ff001916610100179055610c023360de61187e565b336111ed600a546001600160a01b031690565b6001600160a01b0316148061120c5750600b546001600160a01b031633145b6112285760405162461bcd60e51b8152600401610719906120ca565b600e55565b606061123882611498565b61129c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610719565b60006112a9836001612202565b90506000600f80546112ba906120ff565b90501161134757604051602001611333907f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706681527f732f516d65484378346164764d32704a553458625377524b5633427547334e7860208201526f666b6848567679316942724e534e564360801b604082015260500190565b604051602081830303815290604052611373565b600f61135282611990565b604051602001611363929190612236565b6040516020818303038152906040525b9392505050565b3361138d600a546001600160a01b031690565b6001600160a01b031614806113ac5750600b546001600160a01b031633145b6113c85760405162461bcd60e51b8152600401610719906120ca565b6010805460ff19811660ff90911615179055565b336113ef600a546001600160a01b031690565b6001600160a01b0316148061140e5750600b546001600160a01b031633145b61142a5760405162461bcd60e51b8152600401610719906120ca565b6001600160a01b03811661148f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610719565b610fbe8161182c565b6000600154821080156106c5575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061152b82611710565b9050836001600160a01b031681600001516001600160a01b0316146115625760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115805750611580853361062b565b8061159b575033611590846107cb565b6001600160a01b0316145b9050806115bb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e257604051633a954ecd60e21b815260040160405180910390fd5b6115ee600084876114c4565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116c45760015482146116c4578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160015481101561181357600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118115780516001600160a01b0316156117a7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561180c579392505050565b6117a7565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610735828260405180602001604052806000815250611a8e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118cd9033908990889088906004016122f1565b602060405180830381600087803b1580156118e757600080fd5b505af1925050508015611917575060408051601f3d908101601f191682019092526119149181019061232e565b60015b611972573d808015611945576040519150601f19603f3d011682016040523d82523d6000602084013e61194a565b606091505b50805161196a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119de57806119c8816121e7565b91506119d79050600a836121bc565b91506119b8565b60008167ffffffffffffffff8111156119f9576119f9611da5565b6040519080825280601f01601f191660200182016040528015611a23576020820181803683370190505b5090505b841561198857611a386001836121d0565b9150611a45600a8661234b565b611a50906030612202565b60f81b818381518110611a6557611a6561235f565b60200101906001600160f81b031916908160001a905350611a87600a866121bc565b9450611a27565b6001600160a01b03831660009081526009602052604090205460ff1615611ac75760405162461bcd60e51b81526004016107199061213a565b61089883838360016001600160a01b03841660009081526009602052604090205460ff1615611b085760405162461bcd60e51b81526004016107199061213a565b6001546001600160a01b038516611b3157604051622e076360e81b815260040160405180910390fd5b83611b4f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c0157506001600160a01b0387163b15155b15611c8a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c526000888480600101955088611898565b611c6f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c07578260015414611c8557600080fd5b611cd0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c8b575b50600155611709565b828054611ce5906120ff565b90600052602060002090601f016020900481019282611d075760008555611d4d565b82601f10611d2057805160ff1916838001178555611d4d565b82800160010185558215611d4d579182015b82811115611d4d578251825591602001919060010190611d32565b50611d59929150611d5d565b5090565b5b80821115611d595760008155600101611d5e565b6001600160e01b031981168114610fbe57600080fd5b600060208284031215611d9a57600080fd5b813561137381611d72565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dd657611dd6611da5565b604051601f8501601f19908116603f01168101908282118183101715611dfe57611dfe611da5565b81604052809350858152868686011115611e1757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4357600080fd5b813567ffffffffffffffff811115611e5a57600080fd5b8201601f81018413611e6b57600080fd5b61198884823560208401611dbb565b60005b83811015611e95578181015183820152602001611e7d565b838111156111145750506000910152565b60008151808452611ebe816020860160208601611e7a565b601f01601f19169290920160200192915050565b6020815260006113736020830184611ea6565b600060208284031215611ef757600080fd5b5035919050565b80356001600160a01b0381168114611f1557600080fd5b919050565b60008060408385031215611f2d57600080fd5b611f3683611efe565b946020939093013593505050565b600060208284031215611f5657600080fd5b61137382611efe565b600080600060608486031215611f7457600080fd5b611f7d84611efe565b9250611f8b60208501611efe565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611fd357835183529284019291840191600101611fb7565b50909695505050505050565b60008060408385031215611ff257600080fd5b611ffb83611efe565b91506020830135801515811461201057600080fd5b809150509250929050565b6000806000806080858703121561203157600080fd5b61203a85611efe565b935061204860208601611efe565b925060408501359150606085013567ffffffffffffffff81111561206b57600080fd5b8501601f8101871361207c57600080fd5b61208b87823560208401611dbb565b91505092959194509250565b600080604083850312156120aa57600080fd5b6120b383611efe565b91506120c160208401611efe565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061211357607f821691505b6020821081141561213457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f526563697069656e74206973206261636b6c6973746564000000000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a1576121a1612171565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826121cb576121cb6121a6565b500490565b6000828210156121e2576121e2612171565b500390565b60006000198214156121fb576121fb612171565b5060010190565b6000821982111561221557612215612171565b500190565b6000815161222c818560208601611e7a565b9290920192915050565b600080845481600182811c91508083168061225257607f831692505b602080841082141561227257634e487b7160e01b86526022600452602486fd5b8180156122865760018114612297576122c4565b60ff198616895284890196506122c4565b60008b81526020902060005b868110156122bc5781548b8201529085019083016122a3565b505084890196505b5050505050506122e86122d7828661221a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232490830184611ea6565b9695505050505050565b60006020828403121561234057600080fd5b815161137381611d72565b60008261235a5761235a6121a6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d8ab57e8c478b6723958cc144477cfcd15828778baaf9d9fea438dc8aabdd8f064736f6c63430008090033

Deployed Bytecode Sourcemap

157:4259:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4706:300:11;;;;;;;;;;-1:-1:-1;4706:300:11;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;4706:300:11;;;;;;;;2872:115:10;;;;;;;;;;-1:-1:-1;2872:115:10;;;;;:::i;:::-;;:::i;:::-;;7734:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;379:44:10:-;;;;;;;;;;;;;;;;;;;2736:25:12;;;2724:2;2709:18;379:44:10;2590:177:12;9190:200:11;;;;;;;;;;-1:-1:-1;9190:200:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3121:32:12;;;3103:51;;3091:2;3076:18;9190:200:11;2957:203:12;8767:362:11;;;;;;;;;;-1:-1:-1;8767:362:11;;;;;:::i;:::-;;:::i;334:38:10:-;;;;;;;;;;;;;;;;3977:297:11;;;;;;;;;;-1:-1:-1;4227:12:11;;4211:13;;:28;3977:297;;529:50:10;;;;;;;;;;-1:-1:-1;529:50:10;;;;;:::i;:::-;;;;;;;;;;;;;;10029:300:11;;;;;;;;;;-1:-1:-1;10029:300:11;;;;;:::i;:::-;;:::i;3419:136:10:-;;;;;;;;;;-1:-1:-1;3419:136:10;;;;;:::i;:::-;;:::i;244:41::-;;;;;;;;;;;;281:4;244:41;;469:22;;;;;;;;;;-1:-1:-1;469:22:10;;;;;;;;3965:448;;;;;;;;;;;;;:::i;10395:309:11:-;;;;;;;;;;-1:-1:-1;10395:309:11;;;;;:::i;:::-;;:::i;3029:109:10:-;;;;;;;;;;-1:-1:-1;3029:109:10;;;;;:::i;:::-;;:::i;7549:123:11:-;;;;;;;;;;-1:-1:-1;7549:123:11;;;;;:::i;:::-;;:::i;3147:114:10:-;;;;;;;;;;-1:-1:-1;3238:15:10;;3147:114;;292:35;;;;;;;;;;;;;;;;5065:203:11;;;;;;;;;;-1:-1:-1;5065:203:11;;;;;:::i;:::-;;:::i;1777:101:0:-;;;;;;;;;;;;;:::i;3597:138:10:-;;;;;;;;;;-1:-1:-1;3597:138:10;;;;;:::i;:::-;;:::i;3743:117::-;;;;;;;;;;-1:-1:-1;3833:18:10;;3743:117;;2456:408;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1041:86:0:-;;;;;;;;;;-1:-1:-1;1113:6:0;;-1:-1:-1;;;;;1113:6:0;1041:86;;7896:102:11;;;;;;;;;;;;;:::i;788:720:10:-;;;;;;:::i;:::-;;:::i;9457:282:11:-;;;;;;;;;;-1:-1:-1;9457:282:11;;;;;:::i;:::-;;:::i;10770:489::-;;;;;;;;;;-1:-1:-1;10770:489:11;;;;;:::i;:::-;;:::i;1518:178:10:-;;;;;;;;;;;;;:::i;3301:110::-;;;;;;;;;;-1:-1:-1;3301:110:10;;;;;:::i;:::-;;:::i;1861:501::-;;;;;;;;;;-1:-1:-1;1861:501:10;;;;;:::i;:::-;;:::i;3868:89::-;;;;;;;;;;;;;:::i;498:22::-;;;;;;;;;;-1:-1:-1;498:22:10;;;;;;;;;;;9805:162:11;;;;;;;;;;-1:-1:-1;9805:162:11;;;;;:::i;:::-;-1:-1:-1;;;;;9925:25:11;;;9902:4;9925:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9805:162;2027:198:0;;;;;;;;;;-1:-1:-1;2027:198:0;;;;;:::i;:::-;;:::i;4706:300:11:-;4808:4;-1:-1:-1;;;;;;4843:40:11;;-1:-1:-1;;;4843:40:11;;:104;;-1:-1:-1;;;;;;;4899:48:11;;-1:-1:-1;;;4899:48:11;4843:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;4963:36:11;4824:175;4706:300;-1:-1:-1;;4706:300:11:o;2872:115:10:-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;;;;;;;;;2951:28:10;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2872:115:::0;:::o;7734:98:11:-;7788:13;7820:5;7813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7734:98;:::o;9190:200::-;9258:7;9282:16;9290:7;9282;:16::i;:::-;9277:64;;9307:34;;-1:-1:-1;;;9307:34:11;;;;;;;;;;;9277:64;-1:-1:-1;9359:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;9359:24:11;;9190:200::o;8767:362::-;8839:13;8855:24;8871:7;8855:15;:24::i;:::-;8839:40;;8899:5;-1:-1:-1;;;;;8893:11:11;:2;-1:-1:-1;;;;;8893:11:11;;8889:48;;;8913:24;;-1:-1:-1;;;8913:24:11;;;;;;;;;;;8889:48;719:10:6;-1:-1:-1;;;;;8952:21:11;;;;;;:63;;-1:-1:-1;8978:37:11;8995:5;719:10:6;9805:162:11;:::i;8978:37::-;8977:38;8952:63;8948:136;;;9038:35;;-1:-1:-1;;;9038:35:11;;;;;;;;;;;8948:136;9094:28;9103:2;9107:7;9116:5;9094:8;:28::i;:::-;8829:300;8767:362;;:::o;10029:300::-;-1:-1:-1;;;;;10173:17:11;;;;;;:13;:17;;;;;;;;10172:18;10164:54;;;;-1:-1:-1;;;10164:54:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;10237:19:11;;;;;;:13;:19;;;;;;;;10236:20;10228:56;;;;-1:-1:-1;;;10228:56:11;;;;;;;:::i;:::-;10294:28;10304:4;10310:2;10314:7;10294:9;:28::i;3419:136:10:-;3483:7;3529:17;;3519:9;:27;;;;:::i;3965:448::-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;4014:25:10::1;4069:3;4042:26;:21;4066:2;4042:26;:::i;:::-;:30;;;;:::i;:::-;4014:58:::0;-1:-1:-1;4083:25:10::1;4160:3;4112:41;4014:58:::0;4112:21:::1;:41;:::i;:::-;4111:48;::::0;4157:2:::1;4111:48;:::i;:::-;:52;;;;:::i;:::-;4174:79;::::0;4083:80;;-1:-1:-1;4182:42:10::1;::::0;4174:79;::::1;;;::::0;4235:17;;4174:79:::1;::::0;;;4235:17;4182:42;4174:79;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4264:79:10::1;::::0;4272:42:::1;::::0;4264:79;::::1;;;::::0;4325:17;;4264:79:::1;::::0;;;4325:17;4272:42;4264:79;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;4354:51:10::1;::::0;4362:10:::1;::::0;4383:21:::1;4354:51:::0;::::1;;;::::0;::::1;::::0;;;4383:21;4362:10;4354:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;10395:309:11::0;-1:-1:-1;;;;;10537:17:11;;;;;;:13;:17;;;;;;;;10536:18;10528:54;;;;-1:-1:-1;;;10528:54:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;10601:19:11;;;;;;:13;:19;;;;;;;;10600:20;10592:56;;;;-1:-1:-1;;;10592:56:11;;;;;;;:::i;:::-;10658:39;10675:4;10681:2;10685:7;10658:39;;;;;;;;;;;;:16;:39::i;3029:109:10:-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;3105:15:10::1;:25:::0;3029:109::o;7549:123:11:-;7613:7;7639:21;7652:7;7639:12;:21::i;:::-;:26;;7549:123;-1:-1:-1;;7549:123:11:o;5065:203::-;5129:7;-1:-1:-1;;;;;5152:19:11;;5148:60;;5180:28;;-1:-1:-1;;;5180:28:11;;;;;;;;;;;5148:60;-1:-1:-1;;;;;;5233:19:11;;;;;:12;:19;;;;;:27;;;;5065:203::o;1777:101:0:-;1345:10;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;1841:30:::1;1868:1;1841:18;:30::i;:::-;1777:101::o:0;3597:138:10:-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;3687:18:10::1;:40:::0;3597:138::o;2456:408::-;2498:16;2543:10;2526:14;2591:17;2543:10;2591:9;:17::i;:::-;2564:44;;2619:25;2661:16;2647:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2647:31:10;;2619:59;;2695:13;2691:138;2722:16;2714:5;:24;2691:138;;;2740:7;;;;:::i;:::-;;;;2691:138;;;-1:-1:-1;2848:8:10;2456:408;-1:-1:-1;;;2456:408:10:o;7896:102:11:-;7952:13;7984:7;7977:14;;;;;:::i;788:720:10:-;689:9;702:10;689:23;681:79;;;;-1:-1:-1;;;681:79:10;;8184:2:12;681:79:10;;;8166:21:12;8223:2;8203:18;;;8196:30;8262:34;8242:18;;;8235:62;-1:-1:-1;;;8313:18:12;;;8306:41;8364:19;;681:79:10;7982:407:12;681:79:10;869:10:::1;::::0;::::1;;861:64;;;::::0;-1:-1:-1;;;861:64:10;;8596:2:12;861:64:10::1;::::0;::::1;8578:21:12::0;8635:2;8615:18;;;8608:30;8674:34;8654:18;;;8647:62;-1:-1:-1;;;8725:18:12;;;8718:39;8774:19;;861:64:10::1;8394:405:12::0;861:64:10::1;281:4;961:9;945:13;4227:12:11::0;;4211:13;;:28;;3977:297;945:13:10::1;:25;;;;:::i;:::-;944:41;;936:84;;;::::0;-1:-1:-1;;;936:84:10;;9139:2:12;936:84:10::1;::::0;::::1;9121:21:12::0;9178:2;9158:18;;;9151:30;9217:32;9197:18;;;9190:60;9267:18;;936:84:10::1;8937:354:12::0;936:84:10::1;1083:15;::::0;1056:10:::1;1040:27;::::0;;;:15:::1;:27;::::0;;;;;:38:::1;::::0;1069:9;;1040:38:::1;:::i;:::-;1039:59;;1031:107;;;::::0;-1:-1:-1;;;1031:107:10;;9498:2:12;1031:107:10::1;::::0;::::1;9480:21:12::0;9537:2;9517:18;;;9510:30;9576:34;9556:18;;;9549:62;-1:-1:-1;;;9627:18:12;;;9620:33;9670:19;;1031:107:10::1;9296:399:12::0;1031:107:10::1;1191:9;1171:17;;:29;;;;:::i;:::-;1157:9;:44;;1149:96;;;::::0;-1:-1:-1;;;1149:96:10;;9902:2:12;1149:96:10::1;::::0;::::1;9884:21:12::0;9941:2;9921:18;;;9914:30;9980:34;9960:18;;;9953:62;-1:-1:-1;;;10031:18:12;;;10024:37;10078:19;;1149:96:10::1;9700:403:12::0;1149:96:10::1;1301:18;;1276:21;1286:10;1276:9;:21::i;:::-;1264:33;::::0;:9;:33:::1;:::i;:::-;:55;;1256:138;;;::::0;-1:-1:-1;;;1256:138:10;;10310:2:12;1256:138:10::1;::::0;::::1;10292:21:12::0;10349:2;10329:18;;;10322:30;10388:34;10368:18;;;10361:62;10459:34;10439:18;;;10432:62;-1:-1:-1;;;10510:19:12;;;10503:36;10556:19;;1256:138:10::1;10108:473:12::0;1256:138:10::1;1423:10;1407:27;::::0;;;:15:::1;:27;::::0;;;;:40;;1438:9;;1407:27;:40:::1;::::0;1438:9;;1407:40:::1;:::i;:::-;::::0;;;-1:-1:-1;1458:32:10::1;::::0;-1:-1:-1;1468:10:10::1;1480:9:::0;1458::::1;:32::i;:::-;788:720:::0;:::o;9457:282:11:-;-1:-1:-1;;;;;9555:24:11;;719:10:6;9555:24:11;9551:54;;;9588:17;;-1:-1:-1;;;9588:17:11;;;;;;;;;;;9551:54;719:10:6;9616:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9616:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;9616:53:11;;;;;;;;;;9684:48;;540:41:12;;;9616:42:11;;719:10:6;9684:48:11;;513:18:12;9684:48:11;;;;;;;9457:282;;:::o;10770:489::-;-1:-1:-1;;;;;10940:17:11;;;;;;:13;:17;;;;;;;;10939:18;10931:54;;;;-1:-1:-1;;;10931:54:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;11004:19:11;;;;;;:13;:19;;;;;;;;11003:20;10995:56;;;;-1:-1:-1;;;10995:56:11;;;;;;;:::i;:::-;11061:28;11071:4;11077:2;11081:7;11061:9;:28::i;:::-;-1:-1:-1;;;;;11103:13:11;;1465:19:5;:23;;11103:76:11;;;;;11123:56;11154:4;11160:2;11164:7;11173:5;11123:30;:56::i;:::-;11122:57;11103:76;11099:154;;;11202:40;;-1:-1:-1;;;11202:40:11;;;;;;;;;;;11099:154;10770:489;;;;:::o;1518:178:10:-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;1576:10:10::1;::::0;::::1;::::0;::::1;;;1575:11;1567:56;;;::::0;-1:-1:-1;;;1567:56:10;;10788:2:12;1567:56:10::1;::::0;::::1;10770:21:12::0;;;10807:18;;;10800:30;10866:34;10846:18;;;10839:62;10918:18;;1567:56:10::1;10586:356:12::0;1567:56:10::1;1634:10;:17:::0;;-1:-1:-1;;1634:17:10::1;;;::::0;;1662:26:::1;1672:10;1684:3;1662:9;:26::i;3301:110::-:0;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;3374:17:10::1;:29:::0;3301:110::o;1861:501::-;1934:13;1968:16;1976:7;1968;:16::i;:::-;1960:76;;;;-1:-1:-1;;;1960:76:10;;11149:2:12;1960:76:10;;;11131:21:12;11188:2;11168:18;;;11161:30;11227:34;11207:18;;;11200:62;-1:-1:-1;;;11278:18:12;;;11271:45;11333:19;;1960:76:10;10947:411:12;1960:76:10;2049:14;2066:11;:7;2076:1;2066:11;:::i;:::-;2049:28;;2173:1;2150:12;2144:26;;;;;:::i;:::-;;;:30;:210;;2253:100;;;;;;11577:34:12;11565:47;;11642:34;11637:2;11628:12;;11621:56;-1:-1:-1;;;11702:2:12;11693:12;;11686:40;11751:2;11742:12;;11363:397;2253:100:10;;;;;;;;;;;;;2144:210;;;2201:12;2215:17;:6;:15;:17::i;:::-;2184:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2144:210;2137:217;1861:501;-1:-1:-1;;;1861:501:10:o;3868:89::-;1345:10:0;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;3939:10:10::1;::::0;;-1:-1:-1;;3925:24:10;::::1;3939:10;::::0;;::::1;3938:11;3925:24;::::0;;3868:89::o;2027:198:0:-;1345:10;1334:7;1113:6;;-1:-1:-1;;;;;1113:6:0;;1041:86;1334:7;-1:-1:-1;;;;;1334:21:0;;:46;;;-1:-1:-1;1359:7:0;;-1:-1:-1;;;;;1359:7:0;1370:10;1359:21;1334:46;1326:91;;;;-1:-1:-1;;;1326:91:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2115:22:0;::::1;2107:73;;;::::0;-1:-1:-1;;;2107:73:0;;13707:2:12;2107:73:0::1;::::0;::::1;13689:21:12::0;13746:2;13726:18;;;13719:30;13785:34;13765:18;;;13758:62;-1:-1:-1;;;13836:18:12;;;13829:36;13882:19;;2107:73:0::1;13505:402:12::0;2107:73:0::1;2190:28;2209:8;2190:18;:28::i;11505:172:11:-:0;11562:4;11625:13;;11615:7;:23;11585:85;;;;-1:-1:-1;;11643:20:11;;;;:11;:20;;;;;:27;-1:-1:-1;;;11643:27:11;;;;11642:28;;11505:172::o;19573:189::-;19683:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19683:29:11;-1:-1:-1;;;;;19683:29:11;;;;;;;;;19727:28;;19683:24;;19727:28;;;;;;;19573:189;;;:::o;14643:2082::-;14753:35;14791:21;14804:7;14791:12;:21::i;:::-;14753:59;;14849:4;-1:-1:-1;;;;;14827:26:11;:13;:18;;;-1:-1:-1;;;;;14827:26:11;;14823:67;;14862:28;;-1:-1:-1;;;14862:28:11;;;;;;;;;;;14823:67;14901:22;719:10:6;-1:-1:-1;;;;;14927:20:11;;;;:72;;-1:-1:-1;14963:36:11;14980:4;719:10:6;9805:162:11;:::i;14963:36::-;14927:124;;;-1:-1:-1;719:10:6;15015:20:11;15027:7;15015:11;:20::i;:::-;-1:-1:-1;;;;;15015:36:11;;14927:124;14901:151;;15068:17;15063:66;;15094:35;;-1:-1:-1;;;15094:35:11;;;;;;;;;;;15063:66;-1:-1:-1;;;;;15143:16:11;;15139:52;;15168:23;;-1:-1:-1;;;15168:23:11;;;;;;;;;;;15139:52;15307:35;15324:1;15328:7;15337:4;15307:8;:35::i;:::-;-1:-1:-1;;;;;15632:18:11;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15632:31:11;;;;;;;-1:-1:-1;;15632:31:11;;;;;;;15677:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15677:29:11;;;;;;;;;;;15755:20;;;:11;:20;;;;;;15789:18;;-1:-1:-1;;;;;;15821:49:11;;;;-1:-1:-1;;;15854:15:11;15821:49;;;;;;;;;;16140:11;;16199:24;;;;;16241:13;;15755:20;;16199:24;;16241:13;16237:377;;16448:13;;16433:11;:28;16429:171;;16485:20;;16553:28;;;;16527:54;;-1:-1:-1;;;16527:54:11;-1:-1:-1;;;;;;16527:54:11;;;-1:-1:-1;;;;;16485:20:11;;16527:54;;;;16429:171;15608:1016;;;16658:7;16654:2;-1:-1:-1;;;;;16639:27:11;16648:4;-1:-1:-1;;;;;16639:27:11;;;;;;;;;;;16676:42;14743:1982;;14643:2082;;;:::o;6408:1084::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6518:7:11;6598:13;;6591:4;:20;6560:868;;;6631:31;6665:17;;;:11;:17;;;;;;;;;6631:51;;;;;;;;;-1:-1:-1;;;;;6631:51:11;;;;-1:-1:-1;;;6631:51:11;;;;;;;;;;;-1:-1:-1;;;6631:51:11;;;;;;;;;;;;;;6700:714;;6749:14;;-1:-1:-1;;;;;6749:28:11;;6745:99;;6812:9;6408:1084;-1:-1:-1;;;6408:1084:11:o;6745:99::-;-1:-1:-1;;;7180:6:11;7224:17;;;;:11;:17;;;;;;;;;7212:29;;;;;;;;;-1:-1:-1;;;;;7212:29:11;;;;;-1:-1:-1;;;7212:29:11;;;;;;;;;;;-1:-1:-1;;;7212:29:11;;;;;;;;;;;;;7271:28;7267:107;;7338:9;6408:1084;-1:-1:-1;;;6408:1084:11:o;7267:107::-;7141:255;;;6613:815;6560:868;7454:31;;-1:-1:-1;;;7454:31:11;;;;;;;;;;;2379:187:0;2471:6;;;-1:-1:-1;;;;;2487:17:0;;;-1:-1:-1;;;;;;2487:17:0;;;;;;;2519:40;;2471:6;;;2487:17;2471:6;;2519:40;;2452:16;;2519:40;2442:124;2379:187;:::o;11683:102:11:-;11751:27;11761:2;11765:8;11751:27;;;;;;;;;;;;:9;:27::i;20243:650::-;20421:72;;-1:-1:-1;;;20421:72:11;;20401:4;;-1:-1:-1;;;;;20421:36:11;;;;;:72;;719:10:6;;20472:4:11;;20478:7;;20487:5;;20421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20421:72:11;;;;;;;;-1:-1:-1;;20421:72:11;;;;;;;;;;;;:::i;:::-;;;20417:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20652:13:11;;20648:229;;20697:40;;-1:-1:-1;;;20697:40:11;;;;;;;;;;;20648:229;20837:6;20831:13;20822:6;20818:2;20814:15;20807:38;20417:470;-1:-1:-1;;;;;;20539:55:11;-1:-1:-1;;;20539:55:11;;-1:-1:-1;20417:470:11;20243:650;;;;;;:::o;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;12136:221:11;-1:-1:-1;;;;;12263:17:11;;;;;;:13;:17;;;;;;;;12262:18;12254:54;;;;-1:-1:-1;;;12254:54:11;;;;;;;:::i;:::-;12318:32;12324:2;12328:8;12338:5;12345:4;-1:-1:-1;;;;;12746:17:11;;;;;;:13;:17;;;;;;;;12745:18;12737:54;;;;-1:-1:-1;;;12737:54:11;;;;;;;:::i;:::-;12824:13;;-1:-1:-1;;;;;12851:16:11;;12847:48;;12876:19;;-1:-1:-1;;;12876:19:11;;;;;;;;;;;12847:48;12909:13;12905:44;;12931:18;;-1:-1:-1;;;12931:18:11;;;;;;;;;;;12905:44;-1:-1:-1;;;;;13292:16:11;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13350:49:11;;13292:44;;;;;;;;13350:49;;;;-1:-1:-1;;13292:44:11;;;;;;13350:49;;;;;;;;;;;;;;;;13414:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;13463:66:11;;;;-1:-1:-1;;;13513:15:11;13463:66;;;;;;;;;;13414:25;13607:23;;;13649:4;:23;;;;-1:-1:-1;;;;;;13657:13:11;;1465:19:5;:23;;13657:15:11;13645:628;;;13692:309;13722:38;;13747:12;;-1:-1:-1;;;;;13722:38:11;;;13739:1;;13722:38;;13739:1;;13722:38;13787:69;13826:1;13830:2;13834:14;;;;;;13850:5;13787:30;:69::i;:::-;13782:172;;13891:40;;-1:-1:-1;;;13891:40:11;;;;;;;;;;;13782:172;13996:3;13980:12;:19;;13692:309;;14080:12;14063:13;;:29;14059:43;;14094:8;;;14059:43;13645:628;;;14141:118;14171:40;;14196:14;;;;;-1:-1:-1;;;;;14171:40:11;;;14188:1;;14171:40;;14188:1;;14171:40;14254:3;14238:12;:19;;14141:118;;13645:628;-1:-1:-1;14286:13:11;:28;14334:60;10770:489;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:12;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:12;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1817:258::-;1889:1;1899:113;1913:6;1910:1;1907:13;1899:113;;;1989:11;;;1983:18;1970:11;;;1963:39;1935:2;1928:10;1899:113;;;2030:6;2027:1;2024:13;2021:48;;;-1:-1:-1;;2065:1:12;2047:16;;2040:27;1817:258::o;2080:269::-;2133:3;2171:5;2165:12;2198:6;2193:3;2186:19;2214:63;2270:6;2263:4;2258:3;2254:14;2247:4;2240:5;2236:16;2214:63;:::i;:::-;2331:2;2310:15;-1:-1:-1;;2306:29:12;2297:39;;;;2338:4;2293:50;;2080:269;-1:-1:-1;;2080:269:12:o;2354:231::-;2503:2;2492:9;2485:21;2466:4;2523:56;2575:2;2564:9;2560:18;2552:6;2523:56;:::i;2772:180::-;2831:6;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;-1:-1:-1;2923:23:12;;2772:180;-1:-1:-1;2772:180:12:o;3165:173::-;3233:20;;-1:-1:-1;;;;;3282:31:12;;3272:42;;3262:70;;3328:1;3325;3318:12;3262:70;3165:173;;;:::o;3343:254::-;3411:6;3419;3472:2;3460:9;3451:7;3447:23;3443:32;3440:52;;;3488:1;3485;3478:12;3440:52;3511:29;3530:9;3511:29;:::i;:::-;3501:39;3587:2;3572:18;;;;3559:32;;-1:-1:-1;;;3343:254:12:o;3602:186::-;3661:6;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3753:29;3772:9;3753:29;:::i;3793:328::-;3870:6;3878;3886;3939:2;3927:9;3918:7;3914:23;3910:32;3907:52;;;3955:1;3952;3945:12;3907:52;3978:29;3997:9;3978:29;:::i;:::-;3968:39;;4026:38;4060:2;4049:9;4045:18;4026:38;:::i;:::-;4016:48;;4111:2;4100:9;4096:18;4083:32;4073:42;;3793:328;;;;;:::o;4126:632::-;4297:2;4349:21;;;4419:13;;4322:18;;;4441:22;;;4268:4;;4297:2;4520:15;;;;4494:2;4479:18;;;4268:4;4563:169;4577:6;4574:1;4571:13;4563:169;;;4638:13;;4626:26;;4707:15;;;;4672:12;;;;4599:1;4592:9;4563:169;;;-1:-1:-1;4749:3:12;;4126:632;-1:-1:-1;;;;;;4126:632:12:o;4763:347::-;4828:6;4836;4889:2;4877:9;4868:7;4864:23;4860:32;4857:52;;;4905:1;4902;4895:12;4857:52;4928:29;4947:9;4928:29;:::i;:::-;4918:39;;5007:2;4996:9;4992:18;4979:32;5054:5;5047:13;5040:21;5033:5;5030:32;5020:60;;5076:1;5073;5066:12;5020:60;5099:5;5089:15;;;4763:347;;;;;:::o;5115:667::-;5210:6;5218;5226;5234;5287:3;5275:9;5266:7;5262:23;5258:33;5255:53;;;5304:1;5301;5294:12;5255:53;5327:29;5346:9;5327:29;:::i;:::-;5317:39;;5375:38;5409:2;5398:9;5394:18;5375:38;:::i;:::-;5365:48;;5460:2;5449:9;5445:18;5432:32;5422:42;;5515:2;5504:9;5500:18;5487:32;5542:18;5534:6;5531:30;5528:50;;;5574:1;5571;5564:12;5528:50;5597:22;;5650:4;5642:13;;5638:27;-1:-1:-1;5628:55:12;;5679:1;5676;5669:12;5628:55;5702:74;5768:7;5763:2;5750:16;5745:2;5741;5737:11;5702:74;:::i;:::-;5692:84;;;5115:667;;;;;;;:::o;5787:260::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5955:29;5974:9;5955:29;:::i;:::-;5945:39;;6003:38;6037:2;6026:9;6022:18;6003:38;:::i;:::-;5993:48;;5787:260;;;;;:::o;6052:356::-;6254:2;6236:21;;;6273:18;;;6266:30;6332:34;6327:2;6312:18;;6305:62;6399:2;6384:18;;6052:356::o;6413:380::-;6492:1;6488:12;;;;6535;;;6556:61;;6610:4;6602:6;6598:17;6588:27;;6556:61;6663:2;6655:6;6652:14;6632:18;6629:38;6626:161;;;6709:10;6704:3;6700:20;6697:1;6690:31;6744:4;6741:1;6734:15;6772:4;6769:1;6762:15;6626:161;;6413:380;;;:::o;6798:347::-;7000:2;6982:21;;;7039:2;7019:18;;;7012:30;7078:25;7073:2;7058:18;;7051:53;7136:2;7121:18;;6798:347::o;7150:127::-;7211:10;7206:3;7202:20;7199:1;7192:31;7242:4;7239:1;7232:15;7266:4;7263:1;7256:15;7282:168;7322:7;7388:1;7384;7380:6;7376:14;7373:1;7370:21;7365:1;7358:9;7351:17;7347:45;7344:71;;;7395:18;;:::i;:::-;-1:-1:-1;7435:9:12;;7282:168::o;7455:127::-;7516:10;7511:3;7507:20;7504:1;7497:31;7547:4;7544:1;7537:15;7571:4;7568:1;7561:15;7587:120;7627:1;7653;7643:35;;7658:18;;:::i;:::-;-1:-1:-1;7692:9:12;;7587:120::o;7712:125::-;7752:4;7780:1;7777;7774:8;7771:34;;;7785:18;;:::i;:::-;-1:-1:-1;7822:9:12;;7712:125::o;7842:135::-;7881:3;-1:-1:-1;;7902:17:12;;7899:43;;;7922:18;;:::i;:::-;-1:-1:-1;7969:1:12;7958:13;;7842:135::o;8804:128::-;8844:3;8875:1;8871:6;8868:1;8865:13;8862:39;;;8881:18;;:::i;:::-;-1:-1:-1;8917:9:12;;8804:128::o;11891:185::-;11933:3;11971:5;11965:12;11986:52;12031:6;12026:3;12019:4;12012:5;12008:16;11986:52;:::i;:::-;12054:16;;;;;11891:185;-1:-1:-1;;11891:185:12:o;12199:1301::-;12476:3;12505:1;12538:6;12532:13;12568:3;12590:1;12618:9;12614:2;12610:18;12600:28;;12678:2;12667:9;12663:18;12700;12690:61;;12744:4;12736:6;12732:17;12722:27;;12690:61;12770:2;12818;12810:6;12807:14;12787:18;12784:38;12781:165;;;-1:-1:-1;;;12845:33:12;;12901:4;12898:1;12891:15;12931:4;12852:3;12919:17;12781:165;12962:18;12989:104;;;;13107:1;13102:320;;;;12955:467;;12989:104;-1:-1:-1;;13022:24:12;;13010:37;;13067:16;;;;-1:-1:-1;12989:104:12;;13102:320;11838:1;11831:14;;;11875:4;11862:18;;13197:1;13211:165;13225:6;13222:1;13219:13;13211:165;;;13303:14;;13290:11;;;13283:35;13346:16;;;;13240:10;;13211:165;;;13215:3;;13405:6;13400:3;13396:16;13389:23;;12955:467;;;;;;;13438:56;13463:30;13489:3;13481:6;13463:30;:::i;:::-;-1:-1:-1;;;12141:20:12;;12186:1;12177:11;;12081:113;13438:56;13431:63;12199:1301;-1:-1:-1;;;;;12199:1301:12:o;13912:500::-;-1:-1:-1;;;;;14181:15:12;;;14163:34;;14233:15;;14228:2;14213:18;;14206:43;14280:2;14265:18;;14258:34;;;14328:3;14323:2;14308:18;;14301:31;;;14106:4;;14349:57;;14386:19;;14378:6;14349:57;:::i;:::-;14341:65;13912:500;-1:-1:-1;;;;;;13912:500:12:o;14417:249::-;14486:6;14539:2;14527:9;14518:7;14514:23;14510:32;14507:52;;;14555:1;14552;14545:12;14507:52;14587:9;14581:16;14606:30;14630:5;14606:30;:::i;14671:112::-;14703:1;14729;14719:35;;14734:18;;:::i;:::-;-1:-1:-1;14768:9:12;;14671:112::o;14788:127::-;14849:10;14844:3;14840:20;14837:1;14830:31;14880:4;14877:1;14870:15;14904:4;14901:1;14894:15

Swarm Source

ipfs://d8ab57e8c478b6723958cc144477cfcd15828778baaf9d9fea438dc8aabdd8f0
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.