ETH Price: $2,992.74 (-1.92%)
Gas: 2 Gwei

Token

Degen Goblins (DG)
 

Overview

Max Total Supply

4,662 DG

Holders

2,652

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
beckerdom.eth
Balance
1 DG
0x762c9b870d381631c93be4330894414c5bbc6716
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:
DegenGoblins

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "./extensions/ERC721ABurnable.sol";       

//   ▄████  ▒█████   ▄▄▄▄    ██▓     ██▓ ███▄    █   ██████ 
//  ██▒ ▀█▒▒██▒  ██▒▓█████▄ ▓██▒    ▓██▒ ██ ▀█   █ ▒██    ▒ 
// ▒██░▄▄▄░▒██░  ██▒▒██▒ ▄██▒██░    ▒██▒▓██  ▀█ ██▒░ ▓██▄   
// ░▓█  ██▓▒██   ██░▒██░█▀  ▒██░    ░██░▓██▒  ▐▌██▒  ▒   ██▒
// ░▒▓███▀▒░ ████▓▒░░▓█  ▀█▓░██████▒░██░▒██░   ▓██░▒██████▒▒
//  ░▒   ▒ ░ ▒░▒░▒░ ░▒▓███▀▒░ ▒░▓  ░░▓  ░ ▒░   ▒ ▒ ▒ ▒▓▒ ▒ ░
//   ░   ░   ░ ▒ ▒░ ▒░▒   ░ ░ ░ ▒  ░ ▒ ░░ ░░   ░ ▒░░ ░▒  ░ ░
// ░ ░   ░ ░ ░ ░ ▒   ░    ░   ░ ░    ▒ ░   ░   ░ ░ ░  ░  ░  
//       ░     ░ ░   ░          ░  ░ ░           ░       ░  
//                        ░                                 

contract DegenGoblins is ERC721ABurnable, Ownable, ReentrancyGuard {
  string public _baseTokenURI;
  uint256 public _currentStageMaxMint;
  bool public _isMintLive;

  constructor() ERC721A("Degen Goblins", "DG") {
    _currentStageMaxMint = 1000;
    _isMintLive = false;

    // Team mint sir 
    _safeMint(0x43107a5211852fB3a3B09CD1d84BF2559E229e05, 25);
    _safeMint(0x2B3148aA03B4013C4A23f941BF99A4F289b9FBab, 25);
    _safeMint(0xedF82E744126129433D0A04a63876846dccf15F1, 25);
    _safeMint(0x42aBbE61e17444524FE604A47F53Dfcc3C98c528, 25);
    _safeMint(0x0a68802B712e0261e27ac81FA39656677f136Ae1, 25);

  }

  function _joinGoblinTown(address to, uint256 quantity) private {
    require(totalSupply() + quantity <= 6969, "All goblins have been minted.");
    require(numberMinted(msg.sender) < 2, "Max 2 mint per wallet.");
    _safeMint(to, quantity);
  }

  function mint() external payable {
    require( 
      totalSupply() + 1 <= _currentStageMaxMint && _isMintLive, 
      "Mint is not live."
    );
    _joinGoblinTown(msg.sender, 1);
  }

  function vaultMint() external onlyOwner {
    // one time goblins vault mint 
    _joinGoblinTown(0xedF82E744126129433D0A04a63876846dccf15F1, 200);
  }


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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setCurrentStageMax(uint256 max) external onlyOwner {
    _currentStageMaxMint = max;
  }

  function setIsMintLive(bool state) external onlyOwner {
    _isMintLive = state;
  }

  function aidrop(address airdropAddress, uint256 quantity) external onlyOwner {
    _joinGoblinTown(airdropAddress, quantity);
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 14 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../ERC721A.sol';
import '@openzeppelin/contracts/utils/Context.sol';

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is Context, ERC721A {

    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 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;

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 14 : 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 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentStageMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isMintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"airdropAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"aidrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setCurrentStageMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vaultMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f446567656e20476f626c696e73000000000000000000000000000000000000008152506040518060400160405280600281526020017f444700000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200009692919062000808565b508060039080519060200190620000af92919062000808565b505050620000d2620000c6620001c760201b60201c565b620001cf60201b60201c565b60016009819055506103e8600b819055506000600c60006101000a81548160ff021916908315150217905550620001257343107a5211852fb3a3b09cd1d84bf2559e229e0560196200029560201b60201c565b6200014c732b3148aa03b4013c4a23f941bf99a4f289b9fbab60196200029560201b60201c565b6200017373edf82e744126129433d0a04a63876846dccf15f160196200029560201b60201c565b6200019a7342abbe61e17444524fe604a47f53dfcc3c98c52860196200029560201b60201c565b620001c1730a68802b712e0261e27ac81fa39656677f136ae160196200029560201b60201c565b62000afe565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b7828260405180602001604052806000815250620002bb60201b60201c565b5050565b620002d08383836001620002d560201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000343576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200037f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200039460008683876200062a60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200060557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015620005b75750620005b560008884886200063060201b60201c565b155b15620005ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000532565b508060008190555050620006236000868387620007df60201b60201c565b5050505050565b50505050565b60006200065e8473ffffffffffffffffffffffffffffffffffffffff16620007e560201b620016e91760201c565b15620007d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000690620001c760201b60201c565b8786866040518563ffffffff1660e01b8152600401620006b494939291906200095e565b602060405180830381600087803b158015620006cf57600080fd5b505af19250505080156200070357506040513d601f19601f82011682018060405250810190620007009190620008cf565b60015b62000781573d806000811462000736576040519150601f19603f3d011682016040523d82523d6000602084013e6200073b565b606091505b5060008151141562000779576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007d7565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008169062000a6e565b90600052602060002090601f0160209004810192826200083a576000855562000886565b82601f106200085557805160ff191683800117855562000886565b8280016001018555821562000886579182015b828111156200088557825182559160200191906001019062000868565b5b50905062000895919062000899565b5090565b5b80821115620008b45760008160009055506001016200089a565b5090565b600081519050620008c98162000ae4565b92915050565b600060208284031215620008e257600080fd5b6000620008f284828501620008b8565b91505092915050565b6200090681620009ce565b82525050565b60006200091982620009b2565b620009258185620009bd565b93506200093781856020860162000a38565b620009428162000ad3565b840191505092915050565b620009588162000a2e565b82525050565b6000608082019050620009756000830187620008fb565b620009846020830186620008fb565b6200099360408301856200094d565b8181036060830152620009a781846200090c565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620009db8262000a0e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a5857808201518184015260208101905062000a3b565b8381111562000a68576000848401525b50505050565b6000600282049050600182168062000a8757607f821691505b6020821081141562000a9e5762000a9d62000aa4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b62000aef81620009e2565b811462000afb57600080fd5b50565b613b898062000b0e6000396000f3fe6080604052600436106101cc5760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461062c578063e985e9c514610669578063f2fde38b146106a6578063f62625a1146106cf576101cc565b8063b88d4fde14610570578063c87b56dd14610599578063cb30feae146105d6578063cfc86f7b14610601576101cc565b80639231ab2a116100d15780639231ab2a146104c857806395d89b4114610505578063a22cb46514610530578063ac44600214610559576101cc565b806370a0823114610449578063715018a6146104865780638da5cb5b1461049d576101cc565b80631249c58b1161016f57806342842e0e1161013e57806342842e0e1461039157806342966c68146103ba57806355f804b3146103e35780636352211e1461040c576101cc565b80631249c58b1461031c57806318160ddd1461032657806323b872dd146103515780632e5cb2e91461037a576101cc565b8063081812fc116101ab578063081812fc14610264578063095ea7b3146102a15780630a6ca4c4146102ca5780630ad6c6f0146102f3576101cc565b8062891329146101d157806301ffc9a7146101fc57806306fdde0314610239575b600080fd5b3480156101dd57600080fd5b506101e66106f8565b6040516101f391906135c1565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e91906130d2565b6106fe565b6040516102309190613489565b60405180910390f35b34801561024557600080fd5b5061024e6107e0565b60405161025b91906134a4565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190613169565b610872565b6040516102989190613422565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c3919061306d565b6108ee565b005b3480156102d657600080fd5b506102f160048036038101906102ec919061306d565b6109f9565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613169565b610a83565b005b610324610b09565b005b34801561033257600080fd5b5061033b610b86565b60405161034891906135c1565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612f67565b610b94565b005b34801561038657600080fd5b5061038f610ba4565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612f67565b610c41565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190613169565b610c61565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190613124565b610d52565b005b34801561041857600080fd5b50610433600480360381019061042e9190613169565b610de4565b6040516104409190613422565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612f02565b610dfa565b60405161047d91906135c1565b60405180910390f35b34801561049257600080fd5b5061049b610eca565b005b3480156104a957600080fd5b506104b2610f52565b6040516104bf9190613422565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613169565b610f7c565b6040516104fc91906135a6565b60405180910390f35b34801561051157600080fd5b5061051a610f94565b60405161052791906134a4565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190613031565b611026565b005b34801561056557600080fd5b5061056e61119e565b005b34801561057c57600080fd5b5061059760048036038101906105929190612fb6565b61131f565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190613169565b611372565b6040516105cd91906134a4565b60405180910390f35b3480156105e257600080fd5b506105eb611411565b6040516105f89190613489565b60405180910390f35b34801561060d57600080fd5b50610616611424565b60405161062391906134a4565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612f02565b6114b2565b60405161066091906135c1565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612f2b565b6114c4565b60405161069d9190613489565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612f02565b611558565b005b3480156106db57600080fd5b506106f660048036038101906106f191906130a9565b611650565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d88261170c565b5b9050919050565b6060600280546107ef90613805565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613805565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611776565b6108b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f982610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109806117b0565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b257506109b0816109ab6117b0565b6114c4565b155b156109e9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f48383836117b8565b505050565b610a016117b0565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613506565b60405180910390fd5b610a7f828261186a565b5050565b610a8b6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613506565b60405180910390fd5b80600b8190555050565b600b546001610b16610b86565b610b209190613680565b11158015610b3a5750600c60009054906101000a900460ff165b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613546565b60405180910390fd5b610b8433600161186a565b565b600060015460005403905090565b610b9f83838361191a565b505050565b610bac6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610bca610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613506565b60405180910390fd5b610c3f73edf82e744126129433d0a04a63876846dccf15f160c861186a565b565b610c5c8383836040518060200160405280600081525061131f565b505050565b6000610c6c82611e0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16610c936117b0565b73ffffffffffffffffffffffffffffffffffffffff161480610cc65750610cc58260000151610cc06117b0565b6114c4565b5b80610d0b5750610cd46117b0565b73ffffffffffffffffffffffffffffffffffffffff16610cf384610872565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4d83612087565b505050565b610d5a6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610d78610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613506565b60405180910390fd5b8181600a9190610ddf929190612d01565b505050565b6000610def82611e0b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e62576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ed26117b0565b73ffffffffffffffffffffffffffffffffffffffff16610ef0610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613506565b60405180910390fd5b610f50600061242b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f84612d87565b610f8d82611e0b565b9050919050565b606060038054610fa390613805565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf90613805565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b5050505050905090565b61102e6117b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611093576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110a06117b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114d6117b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111929190613489565b60405180910390a35050565b6111a66117b0565b73ffffffffffffffffffffffffffffffffffffffff166111c4610f52565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613506565b60405180910390fd5b60026009541415611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613566565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161128e9061340d565b60006040518083038185875af1925050503d80600081146112cb576040519150601f19603f3d011682016040523d82523d6000602084013e6112d0565b606091505b5050905080611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613526565b60405180910390fd5b506001600981905550565b61132a84848461191a565b611336848484846124f1565b61136c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061137d82611776565b6113b3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113bd61267f565b90506000815114156113de5760405180602001604052806000815250611409565b806113e884612711565b6040516020016113f99291906133e9565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b600a805461143190613805565b80601f016020809104026020016040519081016040528092919081815260200182805461145d90613805565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b505050505081565b60006114bd826128be565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115606117b0565b73ffffffffffffffffffffffffffffffffffffffff1661157e610f52565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613506565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906134c6565b60405180910390fd5b61164d8161242b565b50565b6116586117b0565b73ffffffffffffffffffffffffffffffffffffffff16611676610f52565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613506565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156117a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611b3981611876610b86565b6118809190613680565b11156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906134e6565b60405180910390fd5b60026118cc336114b2565b1061190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613586565b60405180910390fd5b611916828261298e565b5050565b600061192582611e0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661194c6117b0565b73ffffffffffffffffffffffffffffffffffffffff16148061197f575061197e82600001516119796117b0565b6114c4565b5b806119c4575061198d6117b0565b73ffffffffffffffffffffffffffffffffffffffff166119ac84610872565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a66576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611acd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ada85858560016129ac565b611aea60008484600001516117b8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d9b57600054811015611d9a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0485858560016129b2565b5050505050565b611e13612d87565b6000829050600054811015612050576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161204e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f32578092505050612082565b5b60011561204d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612048578092505050612082565b611f33565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061209282611e0b565b90506120a6816000015160008460016129ac565b6120b660008383600001516117b8565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123a2576000548110156123a15781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612415816000015160008460016129b2565b6001600081548092919060010191905055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125128473ffffffffffffffffffffffffffffffffffffffff166116e9565b15612672578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253b6117b0565b8786866040518563ffffffff1660e01b815260040161255d949392919061343d565b602060405180830381600087803b15801561257757600080fd5b505af19250505080156125a857506040513d601f19601f820116820180604052508101906125a591906130fb565b60015b612622573d80600081146125d8576040519150601f19603f3d011682016040523d82523d6000602084013e6125dd565b606091505b5060008151141561261a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612677565b600190505b949350505050565b6060600a805461268e90613805565b80601f01602080910402602001604051908101604052809291908181526020018280546126ba90613805565b80156127075780601f106126dc57610100808354040283529160200191612707565b820191906000526020600020905b8154815290600101906020018083116126ea57829003601f168201915b5050505050905090565b60606000821415612759576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b9565b600082905060005b6000821461278b57808061277490613868565b915050600a8261278491906136d6565b9150612761565b60008167ffffffffffffffff8111156127cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ff5781602001600182028036833780820191505090505b5090505b600085146128b2576001826128189190613707565b9150600a8561282791906138b1565b60306128339190613680565b60f81b81838151811061286f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ab91906136d6565b9450612803565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612926576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129a88282604051806020016040528060008152506129b8565b5050565b50505050565b50505050565b6129c583838360016129ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a37576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7f60008683876129ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ce457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c985750612c9660008884886124f1565b155b15612ccf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c1d565b508060008190555050612cfa60008683876129b2565b5050505050565b828054612d0d90613805565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857803560ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578235825591602001919060010190612d5a565b5b509050612d839190612dca565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612de3576000816000905550600101612dcb565b5090565b6000612dfa612df584613601565b6135dc565b905082815260208101848484011115612e1257600080fd5b612e1d8482856137c3565b509392505050565b600081359050612e3481613af7565b92915050565b600081359050612e4981613b0e565b92915050565b600081359050612e5e81613b25565b92915050565b600081519050612e7381613b25565b92915050565b600082601f830112612e8a57600080fd5b8135612e9a848260208601612de7565b91505092915050565b60008083601f840112612eb557600080fd5b8235905067ffffffffffffffff811115612ece57600080fd5b602083019150836001820283011115612ee657600080fd5b9250929050565b600081359050612efc81613b3c565b92915050565b600060208284031215612f1457600080fd5b6000612f2284828501612e25565b91505092915050565b60008060408385031215612f3e57600080fd5b6000612f4c85828601612e25565b9250506020612f5d85828601612e25565b9150509250929050565b600080600060608486031215612f7c57600080fd5b6000612f8a86828701612e25565b9350506020612f9b86828701612e25565b9250506040612fac86828701612eed565b9150509250925092565b60008060008060808587031215612fcc57600080fd5b6000612fda87828801612e25565b9450506020612feb87828801612e25565b9350506040612ffc87828801612eed565b925050606085013567ffffffffffffffff81111561301957600080fd5b61302587828801612e79565b91505092959194509250565b6000806040838503121561304457600080fd5b600061305285828601612e25565b925050602061306385828601612e3a565b9150509250929050565b6000806040838503121561308057600080fd5b600061308e85828601612e25565b925050602061309f85828601612eed565b9150509250929050565b6000602082840312156130bb57600080fd5b60006130c984828501612e3a565b91505092915050565b6000602082840312156130e457600080fd5b60006130f284828501612e4f565b91505092915050565b60006020828403121561310d57600080fd5b600061311b84828501612e64565b91505092915050565b6000806020838503121561313757600080fd5b600083013567ffffffffffffffff81111561315157600080fd5b61315d85828601612ea3565b92509250509250929050565b60006020828403121561317b57600080fd5b600061318984828501612eed565b91505092915050565b61319b8161373b565b82525050565b6131aa8161373b565b82525050565b6131b98161374d565b82525050565b6131c88161374d565b82525050565b60006131d982613632565b6131e38185613648565b93506131f38185602086016137d2565b6131fc8161399e565b840191505092915050565b60006132128261363d565b61321c8185613664565b935061322c8185602086016137d2565b6132358161399e565b840191505092915050565b600061324b8261363d565b6132558185613675565b93506132658185602086016137d2565b80840191505092915050565b600061327e602683613664565b9150613289826139af565b604082019050919050565b60006132a1601d83613664565b91506132ac826139fe565b602082019050919050565b60006132c4602083613664565b91506132cf82613a27565b602082019050919050565b60006132e7600083613659565b91506132f282613a50565b600082019050919050565b600061330a601083613664565b915061331582613a53565b602082019050919050565b600061332d601183613664565b915061333882613a7c565b602082019050919050565b6000613350601f83613664565b915061335b82613aa5565b602082019050919050565b6000613373601683613664565b915061337e82613ace565b602082019050919050565b60608201600082015161339f6000850182613192565b5060208201516133b260208501826133da565b5060408201516133c560408501826131b0565b50505050565b6133d4816137a5565b82525050565b6133e3816137af565b82525050565b60006133f58285613240565b91506134018284613240565b91508190509392505050565b6000613418826132da565b9150819050919050565b600060208201905061343760008301846131a1565b92915050565b600060808201905061345260008301876131a1565b61345f60208301866131a1565b61346c60408301856133cb565b818103606083015261347e81846131ce565b905095945050505050565b600060208201905061349e60008301846131bf565b92915050565b600060208201905081810360008301526134be8184613207565b905092915050565b600060208201905081810360008301526134df81613271565b9050919050565b600060208201905081810360008301526134ff81613294565b9050919050565b6000602082019050818103600083015261351f816132b7565b9050919050565b6000602082019050818103600083015261353f816132fd565b9050919050565b6000602082019050818103600083015261355f81613320565b9050919050565b6000602082019050818103600083015261357f81613343565b9050919050565b6000602082019050818103600083015261359f81613366565b9050919050565b60006060820190506135bb6000830184613389565b92915050565b60006020820190506135d660008301846133cb565b92915050565b60006135e66135f7565b90506135f28282613837565b919050565b6000604051905090565b600067ffffffffffffffff82111561361c5761361b61396f565b5b6136258261399e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061368b826137a5565b9150613696836137a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136cb576136ca6138e2565b5b828201905092915050565b60006136e1826137a5565b91506136ec836137a5565b9250826136fc576136fb613911565b5b828204905092915050565b6000613712826137a5565b915061371d836137a5565b9250828210156137305761372f6138e2565b5b828203905092915050565b600061374682613785565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156137f05780820151818401526020810190506137d5565b838111156137ff576000848401525b50505050565b6000600282049050600182168061381d57607f821691505b6020821081141561383157613830613940565b5b50919050565b6138408261399e565b810181811067ffffffffffffffff8211171561385f5761385e61396f565b5b80604052505050565b6000613873826137a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a6576138a56138e2565b5b600182019050919050565b60006138bc826137a5565b91506138c7836137a5565b9250826138d7576138d6613911565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20676f626c696e732068617665206265656e206d696e7465642e000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d696e74206973206e6f74206c6976652e000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d61782032206d696e74207065722077616c6c65742e00000000000000000000600082015250565b613b008161373b565b8114613b0b57600080fd5b50565b613b178161374d565b8114613b2257600080fd5b50565b613b2e81613759565b8114613b3957600080fd5b50565b613b45816137a5565b8114613b5057600080fd5b5056fea2646970667358221220d075140d92741be33f862c326a8dfe7517b86ec1c1d9d7a6e99c19ae2203e29164736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461062c578063e985e9c514610669578063f2fde38b146106a6578063f62625a1146106cf576101cc565b8063b88d4fde14610570578063c87b56dd14610599578063cb30feae146105d6578063cfc86f7b14610601576101cc565b80639231ab2a116100d15780639231ab2a146104c857806395d89b4114610505578063a22cb46514610530578063ac44600214610559576101cc565b806370a0823114610449578063715018a6146104865780638da5cb5b1461049d576101cc565b80631249c58b1161016f57806342842e0e1161013e57806342842e0e1461039157806342966c68146103ba57806355f804b3146103e35780636352211e1461040c576101cc565b80631249c58b1461031c57806318160ddd1461032657806323b872dd146103515780632e5cb2e91461037a576101cc565b8063081812fc116101ab578063081812fc14610264578063095ea7b3146102a15780630a6ca4c4146102ca5780630ad6c6f0146102f3576101cc565b8062891329146101d157806301ffc9a7146101fc57806306fdde0314610239575b600080fd5b3480156101dd57600080fd5b506101e66106f8565b6040516101f391906135c1565b60405180910390f35b34801561020857600080fd5b50610223600480360381019061021e91906130d2565b6106fe565b6040516102309190613489565b60405180910390f35b34801561024557600080fd5b5061024e6107e0565b60405161025b91906134a4565b60405180910390f35b34801561027057600080fd5b5061028b60048036038101906102869190613169565b610872565b6040516102989190613422565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c3919061306d565b6108ee565b005b3480156102d657600080fd5b506102f160048036038101906102ec919061306d565b6109f9565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613169565b610a83565b005b610324610b09565b005b34801561033257600080fd5b5061033b610b86565b60405161034891906135c1565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612f67565b610b94565b005b34801561038657600080fd5b5061038f610ba4565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612f67565b610c41565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190613169565b610c61565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190613124565b610d52565b005b34801561041857600080fd5b50610433600480360381019061042e9190613169565b610de4565b6040516104409190613422565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612f02565b610dfa565b60405161047d91906135c1565b60405180910390f35b34801561049257600080fd5b5061049b610eca565b005b3480156104a957600080fd5b506104b2610f52565b6040516104bf9190613422565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613169565b610f7c565b6040516104fc91906135a6565b60405180910390f35b34801561051157600080fd5b5061051a610f94565b60405161052791906134a4565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190613031565b611026565b005b34801561056557600080fd5b5061056e61119e565b005b34801561057c57600080fd5b5061059760048036038101906105929190612fb6565b61131f565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190613169565b611372565b6040516105cd91906134a4565b60405180910390f35b3480156105e257600080fd5b506105eb611411565b6040516105f89190613489565b60405180910390f35b34801561060d57600080fd5b50610616611424565b60405161062391906134a4565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612f02565b6114b2565b60405161066091906135c1565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612f2b565b6114c4565b60405161069d9190613489565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612f02565b611558565b005b3480156106db57600080fd5b506106f660048036038101906106f191906130a9565b611650565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d88261170c565b5b9050919050565b6060600280546107ef90613805565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613805565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611776565b6108b3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f982610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109806117b0565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b257506109b0816109ab6117b0565b6114c4565b155b156109e9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109f48383836117b8565b505050565b610a016117b0565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613506565b60405180910390fd5b610a7f828261186a565b5050565b610a8b6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613506565b60405180910390fd5b80600b8190555050565b600b546001610b16610b86565b610b209190613680565b11158015610b3a5750600c60009054906101000a900460ff165b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613546565b60405180910390fd5b610b8433600161186a565b565b600060015460005403905090565b610b9f83838361191a565b505050565b610bac6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610bca610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790613506565b60405180910390fd5b610c3f73edf82e744126129433d0a04a63876846dccf15f160c861186a565b565b610c5c8383836040518060200160405280600081525061131f565b505050565b6000610c6c82611e0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16610c936117b0565b73ffffffffffffffffffffffffffffffffffffffff161480610cc65750610cc58260000151610cc06117b0565b6114c4565b5b80610d0b5750610cd46117b0565b73ffffffffffffffffffffffffffffffffffffffff16610cf384610872565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d4d83612087565b505050565b610d5a6117b0565b73ffffffffffffffffffffffffffffffffffffffff16610d78610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590613506565b60405180910390fd5b8181600a9190610ddf929190612d01565b505050565b6000610def82611e0b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e62576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ed26117b0565b73ffffffffffffffffffffffffffffffffffffffff16610ef0610f52565b73ffffffffffffffffffffffffffffffffffffffff1614610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90613506565b60405180910390fd5b610f50600061242b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f84612d87565b610f8d82611e0b565b9050919050565b606060038054610fa390613805565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf90613805565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b5050505050905090565b61102e6117b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611093576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110a06117b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114d6117b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111929190613489565b60405180910390a35050565b6111a66117b0565b73ffffffffffffffffffffffffffffffffffffffff166111c4610f52565b73ffffffffffffffffffffffffffffffffffffffff161461121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190613506565b60405180910390fd5b60026009541415611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125790613566565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161128e9061340d565b60006040518083038185875af1925050503d80600081146112cb576040519150601f19603f3d011682016040523d82523d6000602084013e6112d0565b606091505b5050905080611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613526565b60405180910390fd5b506001600981905550565b61132a84848461191a565b611336848484846124f1565b61136c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061137d82611776565b6113b3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113bd61267f565b90506000815114156113de5760405180602001604052806000815250611409565b806113e884612711565b6040516020016113f99291906133e9565b6040516020818303038152906040525b915050919050565b600c60009054906101000a900460ff1681565b600a805461143190613805565b80601f016020809104026020016040519081016040528092919081815260200182805461145d90613805565b80156114aa5780601f1061147f576101008083540402835291602001916114aa565b820191906000526020600020905b81548152906001019060200180831161148d57829003601f168201915b505050505081565b60006114bd826128be565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115606117b0565b73ffffffffffffffffffffffffffffffffffffffff1661157e610f52565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613506565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906134c6565b60405180910390fd5b61164d8161242b565b50565b6116586117b0565b73ffffffffffffffffffffffffffffffffffffffff16611676610f52565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613506565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156117a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611b3981611876610b86565b6118809190613680565b11156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906134e6565b60405180910390fd5b60026118cc336114b2565b1061190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613586565b60405180910390fd5b611916828261298e565b5050565b600061192582611e0b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661194c6117b0565b73ffffffffffffffffffffffffffffffffffffffff16148061197f575061197e82600001516119796117b0565b6114c4565b5b806119c4575061198d6117b0565b73ffffffffffffffffffffffffffffffffffffffff166119ac84610872565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a66576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611acd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ada85858560016129ac565b611aea60008484600001516117b8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d9b57600054811015611d9a5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0485858560016129b2565b5050505050565b611e13612d87565b6000829050600054811015612050576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161204e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f32578092505050612082565b5b60011561204d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612048578092505050612082565b611f33565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600061209282611e0b565b90506120a6816000015160008460016129ac565b6120b660008383600001516117b8565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123a2576000548110156123a15781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612415816000015160008460016129b2565b6001600081548092919060010191905055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006125128473ffffffffffffffffffffffffffffffffffffffff166116e9565b15612672578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253b6117b0565b8786866040518563ffffffff1660e01b815260040161255d949392919061343d565b602060405180830381600087803b15801561257757600080fd5b505af19250505080156125a857506040513d601f19601f820116820180604052508101906125a591906130fb565b60015b612622573d80600081146125d8576040519150601f19603f3d011682016040523d82523d6000602084013e6125dd565b606091505b5060008151141561261a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612677565b600190505b949350505050565b6060600a805461268e90613805565b80601f01602080910402602001604051908101604052809291908181526020018280546126ba90613805565b80156127075780601f106126dc57610100808354040283529160200191612707565b820191906000526020600020905b8154815290600101906020018083116126ea57829003601f168201915b5050505050905090565b60606000821415612759576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b9565b600082905060005b6000821461278b57808061277490613868565b915050600a8261278491906136d6565b9150612761565b60008167ffffffffffffffff8111156127cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ff5781602001600182028036833780820191505090505b5090505b600085146128b2576001826128189190613707565b9150600a8561282791906138b1565b60306128339190613680565b60f81b81838151811061286f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ab91906136d6565b9450612803565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612926576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129a88282604051806020016040528060008152506129b8565b5050565b50505050565b50505050565b6129c583838360016129ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a37576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7f60008683876129ac565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ce457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c985750612c9660008884886124f1565b155b15612ccf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c1d565b508060008190555050612cfa60008683876129b2565b5050505050565b828054612d0d90613805565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857803560ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578235825591602001919060010190612d5a565b5b509050612d839190612dca565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612de3576000816000905550600101612dcb565b5090565b6000612dfa612df584613601565b6135dc565b905082815260208101848484011115612e1257600080fd5b612e1d8482856137c3565b509392505050565b600081359050612e3481613af7565b92915050565b600081359050612e4981613b0e565b92915050565b600081359050612e5e81613b25565b92915050565b600081519050612e7381613b25565b92915050565b600082601f830112612e8a57600080fd5b8135612e9a848260208601612de7565b91505092915050565b60008083601f840112612eb557600080fd5b8235905067ffffffffffffffff811115612ece57600080fd5b602083019150836001820283011115612ee657600080fd5b9250929050565b600081359050612efc81613b3c565b92915050565b600060208284031215612f1457600080fd5b6000612f2284828501612e25565b91505092915050565b60008060408385031215612f3e57600080fd5b6000612f4c85828601612e25565b9250506020612f5d85828601612e25565b9150509250929050565b600080600060608486031215612f7c57600080fd5b6000612f8a86828701612e25565b9350506020612f9b86828701612e25565b9250506040612fac86828701612eed565b9150509250925092565b60008060008060808587031215612fcc57600080fd5b6000612fda87828801612e25565b9450506020612feb87828801612e25565b9350506040612ffc87828801612eed565b925050606085013567ffffffffffffffff81111561301957600080fd5b61302587828801612e79565b91505092959194509250565b6000806040838503121561304457600080fd5b600061305285828601612e25565b925050602061306385828601612e3a565b9150509250929050565b6000806040838503121561308057600080fd5b600061308e85828601612e25565b925050602061309f85828601612eed565b9150509250929050565b6000602082840312156130bb57600080fd5b60006130c984828501612e3a565b91505092915050565b6000602082840312156130e457600080fd5b60006130f284828501612e4f565b91505092915050565b60006020828403121561310d57600080fd5b600061311b84828501612e64565b91505092915050565b6000806020838503121561313757600080fd5b600083013567ffffffffffffffff81111561315157600080fd5b61315d85828601612ea3565b92509250509250929050565b60006020828403121561317b57600080fd5b600061318984828501612eed565b91505092915050565b61319b8161373b565b82525050565b6131aa8161373b565b82525050565b6131b98161374d565b82525050565b6131c88161374d565b82525050565b60006131d982613632565b6131e38185613648565b93506131f38185602086016137d2565b6131fc8161399e565b840191505092915050565b60006132128261363d565b61321c8185613664565b935061322c8185602086016137d2565b6132358161399e565b840191505092915050565b600061324b8261363d565b6132558185613675565b93506132658185602086016137d2565b80840191505092915050565b600061327e602683613664565b9150613289826139af565b604082019050919050565b60006132a1601d83613664565b91506132ac826139fe565b602082019050919050565b60006132c4602083613664565b91506132cf82613a27565b602082019050919050565b60006132e7600083613659565b91506132f282613a50565b600082019050919050565b600061330a601083613664565b915061331582613a53565b602082019050919050565b600061332d601183613664565b915061333882613a7c565b602082019050919050565b6000613350601f83613664565b915061335b82613aa5565b602082019050919050565b6000613373601683613664565b915061337e82613ace565b602082019050919050565b60608201600082015161339f6000850182613192565b5060208201516133b260208501826133da565b5060408201516133c560408501826131b0565b50505050565b6133d4816137a5565b82525050565b6133e3816137af565b82525050565b60006133f58285613240565b91506134018284613240565b91508190509392505050565b6000613418826132da565b9150819050919050565b600060208201905061343760008301846131a1565b92915050565b600060808201905061345260008301876131a1565b61345f60208301866131a1565b61346c60408301856133cb565b818103606083015261347e81846131ce565b905095945050505050565b600060208201905061349e60008301846131bf565b92915050565b600060208201905081810360008301526134be8184613207565b905092915050565b600060208201905081810360008301526134df81613271565b9050919050565b600060208201905081810360008301526134ff81613294565b9050919050565b6000602082019050818103600083015261351f816132b7565b9050919050565b6000602082019050818103600083015261353f816132fd565b9050919050565b6000602082019050818103600083015261355f81613320565b9050919050565b6000602082019050818103600083015261357f81613343565b9050919050565b6000602082019050818103600083015261359f81613366565b9050919050565b60006060820190506135bb6000830184613389565b92915050565b60006020820190506135d660008301846133cb565b92915050565b60006135e66135f7565b90506135f28282613837565b919050565b6000604051905090565b600067ffffffffffffffff82111561361c5761361b61396f565b5b6136258261399e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061368b826137a5565b9150613696836137a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136cb576136ca6138e2565b5b828201905092915050565b60006136e1826137a5565b91506136ec836137a5565b9250826136fc576136fb613911565b5b828204905092915050565b6000613712826137a5565b915061371d836137a5565b9250828210156137305761372f6138e2565b5b828203905092915050565b600061374682613785565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156137f05780820151818401526020810190506137d5565b838111156137ff576000848401525b50505050565b6000600282049050600182168061381d57607f821691505b6020821081141561383157613830613940565b5b50919050565b6138408261399e565b810181811067ffffffffffffffff8211171561385f5761385e61396f565b5b80604052505050565b6000613873826137a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138a6576138a56138e2565b5b600182019050919050565b60006138bc826137a5565b91506138c7836137a5565b9250826138d7576138d6613911565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20676f626c696e732068617665206265656e206d696e7465642e000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d696e74206973206e6f74206c6976652e000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d61782032206d696e74207065722077616c6c65742e00000000000000000000600082015250565b613b008161373b565b8114613b0b57600080fd5b50565b613b178161374d565b8114613b2257600080fd5b50565b613b2e81613759565b8114613b3957600080fd5b50565b613b45816137a5565b8114613b5057600080fd5b5056fea2646970667358221220d075140d92741be33f862c326a8dfe7517b86ec1c1d9d7a6e99c19ae2203e29164736f6c63430008040033

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.