ETH Price: $2,473.39 (+1.30%)

Token

goblindragoneggs.wtf (GDE)
 

Overview

Max Total Supply

238 GDE

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptomirek.eth
Balance
2 GDE
0x9c6e4c937b469f29ec5d790906b11aa1410e3645
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:
GoblinDragonEggs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : goblindragoneggs.sol
//SPDX-License-Identifier: MIT
//by kevlabs

//              _     _ _                            
//             | |   | (_)                           
//   __ _  ___ | |__ | |_ _ __   ___  __ _  __ _ ___ 
//  / _` |/ _ \| '_ \| | | '_ \ / _ \/ _` |/ _` / __|
// | (_| | (_) | |_) | | | | | |  __/ (_| | (_| \__ \
//  \__, |\___/|_.__/|_|_|_| |_|\___|\__, |\__, |___/
//   __/ |                            __/ | __/ |    
//  |___/                            |___/ |___/     


pragma solidity >=0.8.0 <0.9.0;

import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


contract GoblinDragonEggs is ERC721A, Ownable { //change

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    bool public paidSaleOpen;
    bool public freeSaleOpen;
    bool public revealed = false;
    string public hiddenMetadataUri;
    string public baseURI = "";  
    string public uriSuffix = ".json";
    
    
 
    uint256 public  maxFreePerAdress = 2;    
    uint256 public  maxFreeSupply = 2000; 

    uint256 public  maxPerTx = 4;              
    uint256 public  maxPerWallet = 10;                
    uint256 public  maxSupply = 7000;                  
    uint256 public  cost = 0.005 ether;                

    mapping(address => bool) public userMintedFree;

    constructor() ERC721A("goblindragoneggs.wtf", "GDE") {     
        paidSaleOpen = true;
        freeSaleOpen = true;
        setHiddenMetadataUri("ipfs://QmYNao65YrEqhM2CmcMWT2d4XbeBBKWk7BYmU2Yw5CxCDb/nothatched.json");
       
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
    }

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

    function seturiSuffix(string memory _newuriSuffix) public onlyOwner {
    uriSuffix = _newuriSuffix;
    }

    function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
    }

    function setMaxFreePerAdress(uint256 _maxFreePerAdress) public onlyOwner {
    maxFreePerAdress = _maxFreePerAdress;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
    }
    
    function setMaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
    }

    function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
    maxPerTx = _maxPerTx;
    }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId), ".json"
            )
        ) : "";
    }

    function _startTokenId() internal pure override returns (uint) {
	return 1;
    }

    function togglePaidSale() public onlyOwner {
        paidSaleOpen = !(paidSaleOpen);
    }

    function toggleFreeSale() public onlyOwner {
        freeSaleOpen = !(freeSaleOpen);
    }

    function paidMint(uint256 numOfTokens) external payable callerIsUser {
        require(paidSaleOpen, "Sale is not active yet");
        require(totalSupply() + numOfTokens < maxSupply, "Exceed max supply"); 
        require(numOfTokens <= maxPerTx, "Can not claim more in a txn");
        require(numberMinted(msg.sender) + numOfTokens <= maxPerWallet, "Can not mint this many");
        require(msg.value >= cost * numOfTokens, "Insufficient funds provided to mint");

        _safeMint(msg.sender, numOfTokens);
    }

    function freeMint(uint256 numOfTokens) external callerIsUser {
        require(freeSaleOpen, "Free Sale is not active yet");
        require(totalSupply() + numOfTokens < maxFreeSupply, "Exceed max free supply, use paidMint to mint"); 
        require(numOfTokens <= maxFreePerAdress, "Can't claim more for free");
        require(numberMinted(msg.sender) + numOfTokens <= maxFreePerAdress, "Can not mint this many");

        userMintedFree[msg.sender] = true;
        _safeMint(msg.sender, numOfTokens);
    }

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

    function withdrawFunds() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, "No funds to withdraw");
        
        _withdraw(payable(msg.sender), balance);
    }

    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    function accountBalance() internal view returns(uint256) {
        return address(this).balance;
    }

    function ownerMint(address mintTo, uint256 numOfTokens) external onlyOwner {
        _safeMint(mintTo, numOfTokens);
    }

    function isSaleOpen() public view returns (bool) {
        return paidSaleOpen;
    }

    function isFreeSaleOpen() public view returns (bool) {
        return freeSaleOpen && totalSupply() < maxFreeSupply;
    }
}

File 2 of 6 : 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 6 : 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 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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 6 of 6 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isFreeSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerAdress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"mintTo","type":"address"},{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"paidSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerAdress","type":"uint256"}],"name":"setMaxFreePerAdress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newuriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaidSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860166101000a81548160ff02191690831515021790555060405180602001604052806000815250600a908051906020019062000046929190620003b1565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000094929190620003b1565b506002600c556107d0600d556004600e55600a600f55611b586010556611c37937e08000601155348015620000c857600080fd5b506040518060400160405280601481526020017f676f626c696e647261676f6e656767732e7774660000000000000000000000008152506040518060400160405280600381526020017f474445000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014d929190620003b1565b50806003908051906020019062000166929190620003b1565b50620001776200020560201b60201c565b60008190555050506200019f620001936200020e60201b60201c565b6200021660201b60201c565b6001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550620001ff6040518060800160405280604581526020016200487460459139620002dc60201b60201c565b62000549565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ec6200020e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003126200038760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003629062000488565b60405180910390fd5b806009908051906020019062000383929190620003b1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003bf90620004bb565b90600052602060002090601f016020900481019282620003e357600085556200042f565b82601f10620003fe57805160ff19168380011785556200042f565b828001600101855582156200042f579182015b828111156200042e57825182559160200191906001019062000411565b5b5090506200043e919062000442565b5090565b5b808211156200045d57600081600090555060010162000443565b5090565b600062000470602083620004aa565b91506200047d8262000520565b602082019050919050565b60006020820190508181036000830152620004a38162000461565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004d457607f821691505b60208210811415620004eb57620004ea620004f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61431b80620005596000396000f3fe6080604052600436106102ae5760003560e01c80636f8b44b011610175578063b88d4fde116100dc578063e0a8085311610095578063ed554ea81161006f578063ed554ea814610a51578063f2fde38b14610a7c578063f92ad0d914610aa5578063f968adbe14610ad0576102ae565b8063e0a80853146109c2578063e268e4d3146109eb578063e985e9c514610a14576102ae565b8063b88d4fde146108b4578063c6f6f216146108dd578063c720f6c514610906578063c87b56dd1461091d578063d5abeb011461095a578063dc33e68114610985576102ae565b80638810c33d1161012e5780638810c33d146107b65780638da5cb5b146107e157806395d89b411461080c578063a22cb46514610837578063a45ba8e714610860578063a957a7e61461088b576102ae565b80636f8b44b0146106ce57806370a08231146106f7578063715018a61461073457806377a38c1a1461074b5780637c928fe9146107625780638405bc5f1461078b576102ae565b8063453c23101161021957806355f804b3116101d257806355f804b3146105bb5780635b28fd91146105e45780636352211e1461060d57806364f640761461064a57806365cde733146106875780636c0360eb146106a3576102ae565b8063453c2310146104bd57806347513334146104e8578063484b973c146105135780634fdd43cb1461053c57806351830227146105655780635503a0e814610590576102ae565b80631a0813301161026b5780631a081330146103d757806323b872dd1461040257806324600fc31461042b578063305ae7751461044257806342842e0e1461046b57806344a0d68a14610494576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806313faede61461038157806318160ddd146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906133d3565b610afb565b6040516102e791906138cd565b60405180910390f35b3480156102fc57600080fd5b50610305610b8d565b60405161031291906138e8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613476565b610c1f565b60405161034f9190613866565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613366565b610c9b565b005b34801561038d57600080fd5b50610396610ddc565b6040516103a39190613aca565b60405180910390f35b3480156103b857600080fd5b506103c1610de2565b6040516103ce9190613aca565b60405180910390f35b3480156103e357600080fd5b506103ec610df9565b6040516103f991906138cd565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613250565b610e10565b005b34801561043757600080fd5b50610440610e20565b005b34801561044e57600080fd5b506104696004803603810190610464919061342d565b610ef8565b005b34801561047757600080fd5b50610492600480360381019061048d9190613250565b610f8e565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613476565b610fae565b005b3480156104c957600080fd5b506104d2611034565b6040516104df9190613aca565b60405180910390f35b3480156104f457600080fd5b506104fd61103a565b60405161050a9190613aca565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613366565b611040565b005b34801561054857600080fd5b50610563600480360381019061055e919061342d565b6110ca565b005b34801561057157600080fd5b5061057a611160565b60405161058791906138cd565b60405180910390f35b34801561059c57600080fd5b506105a5611173565b6040516105b291906138e8565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061342d565b611201565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613476565b611297565b005b34801561061957600080fd5b50610634600480360381019061062f9190613476565b61131d565b6040516106419190613866565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906131e3565b61132f565b60405161067e91906138cd565b60405180910390f35b6106a1600480360381019061069c9190613476565b61134f565b005b3480156106af57600080fd5b506106b861155c565b6040516106c591906138e8565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613476565b6115ea565b005b34801561070357600080fd5b5061071e600480360381019061071991906131e3565b611670565b60405161072b9190613aca565b60405180910390f35b34801561074057600080fd5b50610749611705565b005b34801561075757600080fd5b5061076061178d565b005b34801561076e57600080fd5b5061078960048036038101906107849190613476565b611835565b005b34801561079757600080fd5b506107a0611a4a565b6040516107ad9190613aca565b60405180910390f35b3480156107c257600080fd5b506107cb611a50565b6040516107d891906138cd565b60405180910390f35b3480156107ed57600080fd5b506107f6611a63565b6040516108039190613866565b60405180910390f35b34801561081857600080fd5b50610821611a8d565b60405161082e91906138e8565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613326565b611b1f565b005b34801561086c57600080fd5b50610875611c97565b60405161088291906138e8565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613476565b611d25565b005b3480156108c057600080fd5b506108db60048036038101906108d691906132a3565b611dab565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190613476565b611e1e565b005b34801561091257600080fd5b5061091b611ea4565b005b34801561092957600080fd5b50610944600480360381019061093f9190613476565b611f4c565b60405161095191906138e8565b60405180910390f35b34801561096657600080fd5b5061096f6120b0565b60405161097c9190613aca565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a791906131e3565b6120b6565b6040516109b99190613aca565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906133a6565b6120c8565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190613476565b612161565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613210565b6121e7565b604051610a4891906138cd565b60405180910390f35b348015610a5d57600080fd5b50610a6661227b565b604051610a7391906138cd565b60405180910390f35b348015610a8857600080fd5b50610aa36004803603810190610a9e91906131e3565b6122a6565b005b348015610ab157600080fd5b50610aba61239e565b604051610ac791906138cd565b60405180910390f35b348015610adc57600080fd5b50610ae56123b1565b604051610af29190613aca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b9c90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc890613d9a565b8015610c155780601f10610bea57610100808354040283529160200191610c15565b820191906000526020600020905b815481529060010190602001808311610bf857829003601f168201915b5050505050905090565b6000610c2a826123b7565b610c60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca682612416565b90508073ffffffffffffffffffffffffffffffffffffffff16610cc76124e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a57610cf381610cee6124e4565b6121e7565b610d29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610dec6124ec565b6001546000540303905090565b6000600860149054906101000a900460ff16905090565b610e1b8383836124f5565b505050565b610e286128bd565b73ffffffffffffffffffffffffffffffffffffffff16610e46611a63565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390613a6a565b60405180910390fd5b6000610ea66128c5565b905060008111610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906139aa565b60405180910390fd5b610ef533826128cd565b50565b610f006128bd565b73ffffffffffffffffffffffffffffffffffffffff16610f1e611a63565b73ffffffffffffffffffffffffffffffffffffffff1614610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90613a6a565b60405180910390fd5b80600b9080519060200190610f8a929190612ff7565b5050565b610fa983838360405180602001604052806000815250611dab565b505050565b610fb66128bd565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611a63565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190613a6a565b60405180910390fd5b8060118190555050565b600f5481565b600d5481565b6110486128bd565b73ffffffffffffffffffffffffffffffffffffffff16611066611a63565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613a6a565b60405180910390fd5b6110c6828261297e565b5050565b6110d26128bd565b73ffffffffffffffffffffffffffffffffffffffff166110f0611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613a6a565b60405180910390fd5b806009908051906020019061115c929190612ff7565b5050565b600860169054906101000a900460ff1681565b600b805461118090613d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613d9a565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b505050505081565b6112096128bd565b73ffffffffffffffffffffffffffffffffffffffff16611227611a63565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613a6a565b60405180910390fd5b80600a9080519060200190611293929190612ff7565b5050565b61129f6128bd565b73ffffffffffffffffffffffffffffffffffffffff166112bd611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613a6a565b60405180910390fd5b80600d8190555050565b600061132882612416565b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b4906139ea565b60405180910390fd5b600860149054906101000a900460ff1661140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061396a565b60405180910390fd5b60105481611418610de2565b6114229190613bcf565b10611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613a4a565b60405180910390fd5b600e548111156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061392a565b60405180910390fd5b600f54816114b4336120b6565b6114be9190613bcf565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613a0a565b60405180910390fd5b8060115461150d9190613c56565b34101561154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061390a565b60405180910390fd5b611559338261297e565b50565b600a805461156990613d9a565b80601f016020809104026020016040519081016040528092919081815260200182805461159590613d9a565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f26128bd565b73ffffffffffffffffffffffffffffffffffffffff16611610611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613a6a565b60405180910390fd5b8060108190555050565b60008061167c8361299c565b14156116b4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170d6128bd565b73ffffffffffffffffffffffffffffffffffffffff1661172b611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613a6a565b60405180910390fd5b61178b60006129a6565b565b6117956128bd565b73ffffffffffffffffffffffffffffffffffffffff166117b3611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090613a6a565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a906139ea565b60405180910390fd5b600860159054906101000a900460ff166118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613aaa565b60405180910390fd5b600d54816118fe610de2565b6119089190613bcf565b10611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613a2a565b60405180910390fd5b600c5481111561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906139ca565b60405180910390fd5b600c548161199a336120b6565b6119a49190613bcf565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613a0a565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a47338261297e565b50565b600c5481565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a9c90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac890613d9a565b8015611b155780601f10611aea57610100808354040283529160200191611b15565b820191906000526020600020905b815481529060010190602001808311611af857829003601f168201915b5050505050905090565b611b276124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b996124e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c466124e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8b91906138cd565b60405180910390a35050565b60098054611ca490613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd090613d9a565b8015611d1d5780601f10611cf257610100808354040283529160200191611d1d565b820191906000526020600020905b815481529060010190602001808311611d0057829003601f168201915b505050505081565b611d2d6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611d4b611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613a6a565b60405180910390fd5b80600c8190555050565b611db68484846124f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1857611de184848484612a6c565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e266128bd565b73ffffffffffffffffffffffffffffffffffffffff16611e44611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190613a6a565b60405180910390fd5b80600e8190555050565b611eac6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611eca611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613a6a565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6060611f57826123b7565b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90613a8a565b60405180910390fd5b60001515600860169054906101000a900460ff16151514156120445760098054611fbf90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90613d9a565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b505050505090506120ab565b600061204e612bcc565b90506000600a805461205f90613d9a565b90501161207b57604051806020016040528060008152506120a7565b600a61208684612be3565b604051602001612097929190613822565b6040516020818303038152906040525b9150505b919050565b60105481565b60006120c182612d44565b9050919050565b6120d06128bd565b73ffffffffffffffffffffffffffffffffffffffff166120ee611a63565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90613a6a565b60405180910390fd5b80600860166101000a81548160ff02191690831515021790555050565b6121696128bd565b73ffffffffffffffffffffffffffffffffffffffff16612187611a63565b73ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490613a6a565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860159054906101000a900460ff1680156122a15750600d5461229f610de2565b105b905090565b6122ae6128bd565b73ffffffffffffffffffffffffffffffffffffffff166122cc611a63565b73ffffffffffffffffffffffffffffffffffffffff1614612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990613a6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123899061394a565b60405180910390fd5b61239b816129a6565b50565b600860159054906101000a900460ff1681565b600e5481565b6000816123c26124ec565b111580156123d1575060005482105b801561240f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124256124ec565b116124ad576000548110156124ac5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124aa575b60008114156124a0576004600083600190039350838152602001908152602001600020549050612475565b80925050506124df565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061250082612416565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612567576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166125c06124e4565b73ffffffffffffffffffffffffffffffffffffffff1614806125ef57506125ee866125e96124e4565b6121e7565b5b8061262c57506125fd6124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612665576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006126708661299c565b14156126a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b58686866001612d9b565b60006126c08361299c565b146126fc576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127c38761299c565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561284d57600060018501905060006004600083815260200190815260200160002054141561284b57600054811461284a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128b58686866001612da1565b505050505050565b600033905090565b600047905090565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128f390613851565b60006040518083038185875af1925050503d8060008114612930576040519150601f19603f3d011682016040523d82523d6000602084013e612935565b606091505b5050905080612979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129709061398a565b60405180910390fd5b505050565b612998828260405180602001604052806000815250612da7565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a926124e4565b8786866040518563ffffffff1660e01b8152600401612ab49493929190613881565b602060405180830381600087803b158015612ace57600080fd5b505af1925050508015612aff57506040513d601f19601f82011682018060405250810190612afc9190613400565b60015b612b79573d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b50600081511415612b71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000821415612c2b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3f565b600082905060005b60008214612c5d578080612c4690613dfd565b915050600a82612c569190613c25565b9150612c33565b60008167ffffffffffffffff811115612c7957612c78613f33565b5b6040519080825280601f01601f191660200182016040528015612cab5781602001600182028036833780820191505090505b5090505b60008514612d3857600182612cc49190613cb0565b9150600a85612cd39190613e46565b6030612cdf9190613bcf565b60f81b818381518110612cf557612cf4613f04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d319190613c25565b9450612caf565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b612db18383612e44565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e3f57600080549050600083820390505b612df16000868380600101945086612a6c565b612e27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dde578160005414612e3c57600080fd5b50505b505050565b6000805490506000612e558461299c565b1415612e8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ec8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed56000848385612d9b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612f3a60018414612fed565b901b60a042901b612f4a8561299c565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612f665782820160008190555050612fe86000848385612da1565b505050565b6000819050919050565b82805461300390613d9a565b90600052602060002090601f016020900481019282613025576000855561306c565b82601f1061303e57805160ff191683800117855561306c565b8280016001018555821561306c579182015b8281111561306b578251825591602001919060010190613050565b5b509050613079919061307d565b5090565b5b8082111561309657600081600090555060010161307e565b5090565b60006130ad6130a884613b0a565b613ae5565b9050828152602081018484840111156130c9576130c8613f67565b5b6130d4848285613d58565b509392505050565b60006130ef6130ea84613b3b565b613ae5565b90508281526020810184848401111561310b5761310a613f67565b5b613116848285613d58565b509392505050565b60008135905061312d81614289565b92915050565b600081359050613142816142a0565b92915050565b600081359050613157816142b7565b92915050565b60008151905061316c816142b7565b92915050565b600082601f83011261318757613186613f62565b5b813561319784826020860161309a565b91505092915050565b600082601f8301126131b5576131b4613f62565b5b81356131c58482602086016130dc565b91505092915050565b6000813590506131dd816142ce565b92915050565b6000602082840312156131f9576131f8613f71565b5b60006132078482850161311e565b91505092915050565b6000806040838503121561322757613226613f71565b5b60006132358582860161311e565b92505060206132468582860161311e565b9150509250929050565b60008060006060848603121561326957613268613f71565b5b60006132778682870161311e565b93505060206132888682870161311e565b9250506040613299868287016131ce565b9150509250925092565b600080600080608085870312156132bd576132bc613f71565b5b60006132cb8782880161311e565b94505060206132dc8782880161311e565b93505060406132ed878288016131ce565b925050606085013567ffffffffffffffff81111561330e5761330d613f6c565b5b61331a87828801613172565b91505092959194509250565b6000806040838503121561333d5761333c613f71565b5b600061334b8582860161311e565b925050602061335c85828601613133565b9150509250929050565b6000806040838503121561337d5761337c613f71565b5b600061338b8582860161311e565b925050602061339c858286016131ce565b9150509250929050565b6000602082840312156133bc576133bb613f71565b5b60006133ca84828501613133565b91505092915050565b6000602082840312156133e9576133e8613f71565b5b60006133f784828501613148565b91505092915050565b60006020828403121561341657613415613f71565b5b60006134248482850161315d565b91505092915050565b60006020828403121561344357613442613f71565b5b600082013567ffffffffffffffff81111561346157613460613f6c565b5b61346d848285016131a0565b91505092915050565b60006020828403121561348c5761348b613f71565b5b600061349a848285016131ce565b91505092915050565b6134ac81613ce4565b82525050565b6134bb81613cf6565b82525050565b60006134cc82613b81565b6134d68185613b97565b93506134e6818560208601613d67565b6134ef81613f76565b840191505092915050565b600061350582613b8c565b61350f8185613bb3565b935061351f818560208601613d67565b61352881613f76565b840191505092915050565b600061353e82613b8c565b6135488185613bc4565b9350613558818560208601613d67565b80840191505092915050565b6000815461357181613d9a565b61357b8186613bc4565b9450600182166000811461359657600181146135a7576135da565b60ff198316865281860193506135da565b6135b085613b6c565b60005b838110156135d2578154818901526001820191506020810190506135b3565b838801955050505b50505092915050565b60006135f0602383613bb3565b91506135fb82613f87565b604082019050919050565b6000613613601b83613bb3565b915061361e82613fd6565b602082019050919050565b6000613636602683613bb3565b915061364182613fff565b604082019050919050565b6000613659601683613bb3565b91506136648261404e565b602082019050919050565b600061367c601483613bb3565b915061368782614077565b602082019050919050565b600061369f601483613bb3565b91506136aa826140a0565b602082019050919050565b60006136c2601983613bb3565b91506136cd826140c9565b602082019050919050565b60006136e5601e83613bb3565b91506136f0826140f2565b602082019050919050565b6000613708601683613bb3565b91506137138261411b565b602082019050919050565b600061372b602c83613bb3565b915061373682614144565b604082019050919050565b600061374e601183613bb3565b915061375982614193565b602082019050919050565b6000613771600583613bc4565b915061377c826141bc565b600582019050919050565b6000613794602083613bb3565b915061379f826141e5565b602082019050919050565b60006137b7602f83613bb3565b91506137c28261420e565b604082019050919050565b60006137da601b83613bb3565b91506137e58261425d565b602082019050919050565b60006137fd600083613ba8565b915061380882614286565b600082019050919050565b61381c81613d4e565b82525050565b600061382e8285613564565b915061383a8284613533565b915061384582613764565b91508190509392505050565b600061385c826137f0565b9150819050919050565b600060208201905061387b60008301846134a3565b92915050565b600060808201905061389660008301876134a3565b6138a360208301866134a3565b6138b06040830185613813565b81810360608301526138c281846134c1565b905095945050505050565b60006020820190506138e260008301846134b2565b92915050565b6000602082019050818103600083015261390281846134fa565b905092915050565b60006020820190508181036000830152613923816135e3565b9050919050565b6000602082019050818103600083015261394381613606565b9050919050565b6000602082019050818103600083015261396381613629565b9050919050565b600060208201905081810360008301526139838161364c565b9050919050565b600060208201905081810360008301526139a38161366f565b9050919050565b600060208201905081810360008301526139c381613692565b9050919050565b600060208201905081810360008301526139e3816136b5565b9050919050565b60006020820190508181036000830152613a03816136d8565b9050919050565b60006020820190508181036000830152613a23816136fb565b9050919050565b60006020820190508181036000830152613a438161371e565b9050919050565b60006020820190508181036000830152613a6381613741565b9050919050565b60006020820190508181036000830152613a8381613787565b9050919050565b60006020820190508181036000830152613aa3816137aa565b9050919050565b60006020820190508181036000830152613ac3816137cd565b9050919050565b6000602082019050613adf6000830184613813565b92915050565b6000613aef613b00565b9050613afb8282613dcc565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2557613b24613f33565b5b613b2e82613f76565b9050602081019050919050565b600067ffffffffffffffff821115613b5657613b55613f33565b5b613b5f82613f76565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bda82613d4e565b9150613be583613d4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1a57613c19613e77565b5b828201905092915050565b6000613c3082613d4e565b9150613c3b83613d4e565b925082613c4b57613c4a613ea6565b5b828204905092915050565b6000613c6182613d4e565b9150613c6c83613d4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ca557613ca4613e77565b5b828202905092915050565b6000613cbb82613d4e565b9150613cc683613d4e565b925082821015613cd957613cd8613e77565b5b828203905092915050565b6000613cef82613d2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d85578082015181840152602081019050613d6a565b83811115613d94576000848401525b50505050565b60006002820490506001821680613db257607f821691505b60208210811415613dc657613dc5613ed5565b5b50919050565b613dd582613f76565b810181811067ffffffffffffffff82111715613df457613df3613f33565b5b80604052505050565b6000613e0882613d4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3b57613e3a613e77565b5b600182019050919050565b6000613e5182613d4e565b9150613e5c83613d4e565b925082613e6c57613e6b613ea6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742066756e64732070726f766964656420746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f7420636c61696d206d6f726520696e20612074786e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652079657400000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f43616e277420636c61696d206d6f726520666f72206672656500000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f43616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f457863656564206d6178206672656520737570706c792c20757365207061696460008201527f4d696e7420746f206d696e740000000000000000000000000000000000000000602082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f467265652053616c65206973206e6f7420616374697665207965740000000000600082015250565b50565b61429281613ce4565b811461429d57600080fd5b50565b6142a981613cf6565b81146142b457600080fd5b50565b6142c081613d02565b81146142cb57600080fd5b50565b6142d781613d4e565b81146142e257600080fd5b5056fea264697066735822122025664b436baa7e8a6aabf4e0beeecba51a278462371066e4e4a549d05e51259b64736f6c63430008070033697066733a2f2f516d594e616f363559724571684d32436d634d575432643458626542424b576b3742596d553259773543784344622f6e6f74686174636865642e6a736f6e

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636f8b44b011610175578063b88d4fde116100dc578063e0a8085311610095578063ed554ea81161006f578063ed554ea814610a51578063f2fde38b14610a7c578063f92ad0d914610aa5578063f968adbe14610ad0576102ae565b8063e0a80853146109c2578063e268e4d3146109eb578063e985e9c514610a14576102ae565b8063b88d4fde146108b4578063c6f6f216146108dd578063c720f6c514610906578063c87b56dd1461091d578063d5abeb011461095a578063dc33e68114610985576102ae565b80638810c33d1161012e5780638810c33d146107b65780638da5cb5b146107e157806395d89b411461080c578063a22cb46514610837578063a45ba8e714610860578063a957a7e61461088b576102ae565b80636f8b44b0146106ce57806370a08231146106f7578063715018a61461073457806377a38c1a1461074b5780637c928fe9146107625780638405bc5f1461078b576102ae565b8063453c23101161021957806355f804b3116101d257806355f804b3146105bb5780635b28fd91146105e45780636352211e1461060d57806364f640761461064a57806365cde733146106875780636c0360eb146106a3576102ae565b8063453c2310146104bd57806347513334146104e8578063484b973c146105135780634fdd43cb1461053c57806351830227146105655780635503a0e814610590576102ae565b80631a0813301161026b5780631a081330146103d757806323b872dd1461040257806324600fc31461042b578063305ae7751461044257806342842e0e1461046b57806344a0d68a14610494576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b31461035857806313faede61461038157806318160ddd146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d591906133d3565b610afb565b6040516102e791906138cd565b60405180910390f35b3480156102fc57600080fd5b50610305610b8d565b60405161031291906138e8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613476565b610c1f565b60405161034f9190613866565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613366565b610c9b565b005b34801561038d57600080fd5b50610396610ddc565b6040516103a39190613aca565b60405180910390f35b3480156103b857600080fd5b506103c1610de2565b6040516103ce9190613aca565b60405180910390f35b3480156103e357600080fd5b506103ec610df9565b6040516103f991906138cd565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613250565b610e10565b005b34801561043757600080fd5b50610440610e20565b005b34801561044e57600080fd5b506104696004803603810190610464919061342d565b610ef8565b005b34801561047757600080fd5b50610492600480360381019061048d9190613250565b610f8e565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190613476565b610fae565b005b3480156104c957600080fd5b506104d2611034565b6040516104df9190613aca565b60405180910390f35b3480156104f457600080fd5b506104fd61103a565b60405161050a9190613aca565b60405180910390f35b34801561051f57600080fd5b5061053a60048036038101906105359190613366565b611040565b005b34801561054857600080fd5b50610563600480360381019061055e919061342d565b6110ca565b005b34801561057157600080fd5b5061057a611160565b60405161058791906138cd565b60405180910390f35b34801561059c57600080fd5b506105a5611173565b6040516105b291906138e8565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061342d565b611201565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613476565b611297565b005b34801561061957600080fd5b50610634600480360381019061062f9190613476565b61131d565b6040516106419190613866565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906131e3565b61132f565b60405161067e91906138cd565b60405180910390f35b6106a1600480360381019061069c9190613476565b61134f565b005b3480156106af57600080fd5b506106b861155c565b6040516106c591906138e8565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190613476565b6115ea565b005b34801561070357600080fd5b5061071e600480360381019061071991906131e3565b611670565b60405161072b9190613aca565b60405180910390f35b34801561074057600080fd5b50610749611705565b005b34801561075757600080fd5b5061076061178d565b005b34801561076e57600080fd5b5061078960048036038101906107849190613476565b611835565b005b34801561079757600080fd5b506107a0611a4a565b6040516107ad9190613aca565b60405180910390f35b3480156107c257600080fd5b506107cb611a50565b6040516107d891906138cd565b60405180910390f35b3480156107ed57600080fd5b506107f6611a63565b6040516108039190613866565b60405180910390f35b34801561081857600080fd5b50610821611a8d565b60405161082e91906138e8565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613326565b611b1f565b005b34801561086c57600080fd5b50610875611c97565b60405161088291906138e8565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad9190613476565b611d25565b005b3480156108c057600080fd5b506108db60048036038101906108d691906132a3565b611dab565b005b3480156108e957600080fd5b5061090460048036038101906108ff9190613476565b611e1e565b005b34801561091257600080fd5b5061091b611ea4565b005b34801561092957600080fd5b50610944600480360381019061093f9190613476565b611f4c565b60405161095191906138e8565b60405180910390f35b34801561096657600080fd5b5061096f6120b0565b60405161097c9190613aca565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a791906131e3565b6120b6565b6040516109b99190613aca565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906133a6565b6120c8565b005b3480156109f757600080fd5b50610a126004803603810190610a0d9190613476565b612161565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613210565b6121e7565b604051610a4891906138cd565b60405180910390f35b348015610a5d57600080fd5b50610a6661227b565b604051610a7391906138cd565b60405180910390f35b348015610a8857600080fd5b50610aa36004803603810190610a9e91906131e3565b6122a6565b005b348015610ab157600080fd5b50610aba61239e565b604051610ac791906138cd565b60405180910390f35b348015610adc57600080fd5b50610ae56123b1565b604051610af29190613aca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b9c90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc890613d9a565b8015610c155780601f10610bea57610100808354040283529160200191610c15565b820191906000526020600020905b815481529060010190602001808311610bf857829003601f168201915b5050505050905090565b6000610c2a826123b7565b610c60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca682612416565b90508073ffffffffffffffffffffffffffffffffffffffff16610cc76124e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a57610cf381610cee6124e4565b6121e7565b610d29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610dec6124ec565b6001546000540303905090565b6000600860149054906101000a900460ff16905090565b610e1b8383836124f5565b505050565b610e286128bd565b73ffffffffffffffffffffffffffffffffffffffff16610e46611a63565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390613a6a565b60405180910390fd5b6000610ea66128c5565b905060008111610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906139aa565b60405180910390fd5b610ef533826128cd565b50565b610f006128bd565b73ffffffffffffffffffffffffffffffffffffffff16610f1e611a63565b73ffffffffffffffffffffffffffffffffffffffff1614610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90613a6a565b60405180910390fd5b80600b9080519060200190610f8a929190612ff7565b5050565b610fa983838360405180602001604052806000815250611dab565b505050565b610fb66128bd565b73ffffffffffffffffffffffffffffffffffffffff16610fd4611a63565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190613a6a565b60405180910390fd5b8060118190555050565b600f5481565b600d5481565b6110486128bd565b73ffffffffffffffffffffffffffffffffffffffff16611066611a63565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390613a6a565b60405180910390fd5b6110c6828261297e565b5050565b6110d26128bd565b73ffffffffffffffffffffffffffffffffffffffff166110f0611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613a6a565b60405180910390fd5b806009908051906020019061115c929190612ff7565b5050565b600860169054906101000a900460ff1681565b600b805461118090613d9a565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613d9a565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b505050505081565b6112096128bd565b73ffffffffffffffffffffffffffffffffffffffff16611227611a63565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613a6a565b60405180910390fd5b80600a9080519060200190611293929190612ff7565b5050565b61129f6128bd565b73ffffffffffffffffffffffffffffffffffffffff166112bd611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613a6a565b60405180910390fd5b80600d8190555050565b600061132882612416565b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b4906139ea565b60405180910390fd5b600860149054906101000a900460ff1661140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061396a565b60405180910390fd5b60105481611418610de2565b6114229190613bcf565b10611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613a4a565b60405180910390fd5b600e548111156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061392a565b60405180910390fd5b600f54816114b4336120b6565b6114be9190613bcf565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613a0a565b60405180910390fd5b8060115461150d9190613c56565b34101561154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061390a565b60405180910390fd5b611559338261297e565b50565b600a805461156990613d9a565b80601f016020809104026020016040519081016040528092919081815260200182805461159590613d9a565b80156115e25780601f106115b7576101008083540402835291602001916115e2565b820191906000526020600020905b8154815290600101906020018083116115c557829003601f168201915b505050505081565b6115f26128bd565b73ffffffffffffffffffffffffffffffffffffffff16611610611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90613a6a565b60405180910390fd5b8060108190555050565b60008061167c8361299c565b14156116b4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61170d6128bd565b73ffffffffffffffffffffffffffffffffffffffff1661172b611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613a6a565b60405180910390fd5b61178b60006129a6565b565b6117956128bd565b73ffffffffffffffffffffffffffffffffffffffff166117b3611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090613a6a565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a906139ea565b60405180910390fd5b600860159054906101000a900460ff166118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613aaa565b60405180910390fd5b600d54816118fe610de2565b6119089190613bcf565b10611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613a2a565b60405180910390fd5b600c5481111561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906139ca565b60405180910390fd5b600c548161199a336120b6565b6119a49190613bcf565b11156119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613a0a565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a47338261297e565b50565b600c5481565b600860149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a9c90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac890613d9a565b8015611b155780601f10611aea57610100808354040283529160200191611b15565b820191906000526020600020905b815481529060010190602001808311611af857829003601f168201915b5050505050905090565b611b276124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b996124e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c466124e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8b91906138cd565b60405180910390a35050565b60098054611ca490613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd090613d9a565b8015611d1d5780601f10611cf257610100808354040283529160200191611d1d565b820191906000526020600020905b815481529060010190602001808311611d0057829003601f168201915b505050505081565b611d2d6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611d4b611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613a6a565b60405180910390fd5b80600c8190555050565b611db68484846124f5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1857611de184848484612a6c565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e266128bd565b73ffffffffffffffffffffffffffffffffffffffff16611e44611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190613a6a565b60405180910390fd5b80600e8190555050565b611eac6128bd565b73ffffffffffffffffffffffffffffffffffffffff16611eca611a63565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613a6a565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6060611f57826123b7565b611f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8d90613a8a565b60405180910390fd5b60001515600860169054906101000a900460ff16151514156120445760098054611fbf90613d9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611feb90613d9a565b80156120385780601f1061200d57610100808354040283529160200191612038565b820191906000526020600020905b81548152906001019060200180831161201b57829003601f168201915b505050505090506120ab565b600061204e612bcc565b90506000600a805461205f90613d9a565b90501161207b57604051806020016040528060008152506120a7565b600a61208684612be3565b604051602001612097929190613822565b6040516020818303038152906040525b9150505b919050565b60105481565b60006120c182612d44565b9050919050565b6120d06128bd565b73ffffffffffffffffffffffffffffffffffffffff166120ee611a63565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90613a6a565b60405180910390fd5b80600860166101000a81548160ff02191690831515021790555050565b6121696128bd565b73ffffffffffffffffffffffffffffffffffffffff16612187611a63565b73ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490613a6a565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860159054906101000a900460ff1680156122a15750600d5461229f610de2565b105b905090565b6122ae6128bd565b73ffffffffffffffffffffffffffffffffffffffff166122cc611a63565b73ffffffffffffffffffffffffffffffffffffffff1614612322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231990613a6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123899061394a565b60405180910390fd5b61239b816129a6565b50565b600860159054906101000a900460ff1681565b600e5481565b6000816123c26124ec565b111580156123d1575060005482105b801561240f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806124256124ec565b116124ad576000548110156124ac5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156124aa575b60008114156124a0576004600083600190039350838152602001908152602001600020549050612475565b80925050506124df565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061250082612416565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612567576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166125c06124e4565b73ffffffffffffffffffffffffffffffffffffffff1614806125ef57506125ee866125e96124e4565b6121e7565b5b8061262c57506125fd6124e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612665576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006126708661299c565b14156126a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b58686866001612d9b565b60006126c08361299c565b146126fc576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6127c38761299c565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561284d57600060018501905060006004600083815260200190815260200160002054141561284b57600054811461284a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128b58686866001612da1565b505050505050565b600033905090565b600047905090565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516128f390613851565b60006040518083038185875af1925050503d8060008114612930576040519150601f19603f3d011682016040523d82523d6000602084013e612935565b606091505b5050905080612979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129709061398a565b60405180910390fd5b505050565b612998828260405180602001604052806000815250612da7565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a926124e4565b8786866040518563ffffffff1660e01b8152600401612ab49493929190613881565b602060405180830381600087803b158015612ace57600080fd5b505af1925050508015612aff57506040513d601f19601f82011682018060405250810190612afc9190613400565b60015b612b79573d8060008114612b2f576040519150601f19603f3d011682016040523d82523d6000602084013e612b34565b606091505b50600081511415612b71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000821415612c2b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d3f565b600082905060005b60008214612c5d578080612c4690613dfd565b915050600a82612c569190613c25565b9150612c33565b60008167ffffffffffffffff811115612c7957612c78613f33565b5b6040519080825280601f01601f191660200182016040528015612cab5781602001600182028036833780820191505090505b5090505b60008514612d3857600182612cc49190613cb0565b9150600a85612cd39190613e46565b6030612cdf9190613bcf565b60f81b818381518110612cf557612cf4613f04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d319190613c25565b9450612caf565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b612db18383612e44565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e3f57600080549050600083820390505b612df16000868380600101945086612a6c565b612e27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612dde578160005414612e3c57600080fd5b50505b505050565b6000805490506000612e558461299c565b1415612e8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ec8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ed56000848385612d9b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612f3a60018414612fed565b901b60a042901b612f4a8561299c565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612f665782820160008190555050612fe86000848385612da1565b505050565b6000819050919050565b82805461300390613d9a565b90600052602060002090601f016020900481019282613025576000855561306c565b82601f1061303e57805160ff191683800117855561306c565b8280016001018555821561306c579182015b8281111561306b578251825591602001919060010190613050565b5b509050613079919061307d565b5090565b5b8082111561309657600081600090555060010161307e565b5090565b60006130ad6130a884613b0a565b613ae5565b9050828152602081018484840111156130c9576130c8613f67565b5b6130d4848285613d58565b509392505050565b60006130ef6130ea84613b3b565b613ae5565b90508281526020810184848401111561310b5761310a613f67565b5b613116848285613d58565b509392505050565b60008135905061312d81614289565b92915050565b600081359050613142816142a0565b92915050565b600081359050613157816142b7565b92915050565b60008151905061316c816142b7565b92915050565b600082601f83011261318757613186613f62565b5b813561319784826020860161309a565b91505092915050565b600082601f8301126131b5576131b4613f62565b5b81356131c58482602086016130dc565b91505092915050565b6000813590506131dd816142ce565b92915050565b6000602082840312156131f9576131f8613f71565b5b60006132078482850161311e565b91505092915050565b6000806040838503121561322757613226613f71565b5b60006132358582860161311e565b92505060206132468582860161311e565b9150509250929050565b60008060006060848603121561326957613268613f71565b5b60006132778682870161311e565b93505060206132888682870161311e565b9250506040613299868287016131ce565b9150509250925092565b600080600080608085870312156132bd576132bc613f71565b5b60006132cb8782880161311e565b94505060206132dc8782880161311e565b93505060406132ed878288016131ce565b925050606085013567ffffffffffffffff81111561330e5761330d613f6c565b5b61331a87828801613172565b91505092959194509250565b6000806040838503121561333d5761333c613f71565b5b600061334b8582860161311e565b925050602061335c85828601613133565b9150509250929050565b6000806040838503121561337d5761337c613f71565b5b600061338b8582860161311e565b925050602061339c858286016131ce565b9150509250929050565b6000602082840312156133bc576133bb613f71565b5b60006133ca84828501613133565b91505092915050565b6000602082840312156133e9576133e8613f71565b5b60006133f784828501613148565b91505092915050565b60006020828403121561341657613415613f71565b5b60006134248482850161315d565b91505092915050565b60006020828403121561344357613442613f71565b5b600082013567ffffffffffffffff81111561346157613460613f6c565b5b61346d848285016131a0565b91505092915050565b60006020828403121561348c5761348b613f71565b5b600061349a848285016131ce565b91505092915050565b6134ac81613ce4565b82525050565b6134bb81613cf6565b82525050565b60006134cc82613b81565b6134d68185613b97565b93506134e6818560208601613d67565b6134ef81613f76565b840191505092915050565b600061350582613b8c565b61350f8185613bb3565b935061351f818560208601613d67565b61352881613f76565b840191505092915050565b600061353e82613b8c565b6135488185613bc4565b9350613558818560208601613d67565b80840191505092915050565b6000815461357181613d9a565b61357b8186613bc4565b9450600182166000811461359657600181146135a7576135da565b60ff198316865281860193506135da565b6135b085613b6c565b60005b838110156135d2578154818901526001820191506020810190506135b3565b838801955050505b50505092915050565b60006135f0602383613bb3565b91506135fb82613f87565b604082019050919050565b6000613613601b83613bb3565b915061361e82613fd6565b602082019050919050565b6000613636602683613bb3565b915061364182613fff565b604082019050919050565b6000613659601683613bb3565b91506136648261404e565b602082019050919050565b600061367c601483613bb3565b915061368782614077565b602082019050919050565b600061369f601483613bb3565b91506136aa826140a0565b602082019050919050565b60006136c2601983613bb3565b91506136cd826140c9565b602082019050919050565b60006136e5601e83613bb3565b91506136f0826140f2565b602082019050919050565b6000613708601683613bb3565b91506137138261411b565b602082019050919050565b600061372b602c83613bb3565b915061373682614144565b604082019050919050565b600061374e601183613bb3565b915061375982614193565b602082019050919050565b6000613771600583613bc4565b915061377c826141bc565b600582019050919050565b6000613794602083613bb3565b915061379f826141e5565b602082019050919050565b60006137b7602f83613bb3565b91506137c28261420e565b604082019050919050565b60006137da601b83613bb3565b91506137e58261425d565b602082019050919050565b60006137fd600083613ba8565b915061380882614286565b600082019050919050565b61381c81613d4e565b82525050565b600061382e8285613564565b915061383a8284613533565b915061384582613764565b91508190509392505050565b600061385c826137f0565b9150819050919050565b600060208201905061387b60008301846134a3565b92915050565b600060808201905061389660008301876134a3565b6138a360208301866134a3565b6138b06040830185613813565b81810360608301526138c281846134c1565b905095945050505050565b60006020820190506138e260008301846134b2565b92915050565b6000602082019050818103600083015261390281846134fa565b905092915050565b60006020820190508181036000830152613923816135e3565b9050919050565b6000602082019050818103600083015261394381613606565b9050919050565b6000602082019050818103600083015261396381613629565b9050919050565b600060208201905081810360008301526139838161364c565b9050919050565b600060208201905081810360008301526139a38161366f565b9050919050565b600060208201905081810360008301526139c381613692565b9050919050565b600060208201905081810360008301526139e3816136b5565b9050919050565b60006020820190508181036000830152613a03816136d8565b9050919050565b60006020820190508181036000830152613a23816136fb565b9050919050565b60006020820190508181036000830152613a438161371e565b9050919050565b60006020820190508181036000830152613a6381613741565b9050919050565b60006020820190508181036000830152613a8381613787565b9050919050565b60006020820190508181036000830152613aa3816137aa565b9050919050565b60006020820190508181036000830152613ac3816137cd565b9050919050565b6000602082019050613adf6000830184613813565b92915050565b6000613aef613b00565b9050613afb8282613dcc565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2557613b24613f33565b5b613b2e82613f76565b9050602081019050919050565b600067ffffffffffffffff821115613b5657613b55613f33565b5b613b5f82613f76565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bda82613d4e565b9150613be583613d4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c1a57613c19613e77565b5b828201905092915050565b6000613c3082613d4e565b9150613c3b83613d4e565b925082613c4b57613c4a613ea6565b5b828204905092915050565b6000613c6182613d4e565b9150613c6c83613d4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ca557613ca4613e77565b5b828202905092915050565b6000613cbb82613d4e565b9150613cc683613d4e565b925082821015613cd957613cd8613e77565b5b828203905092915050565b6000613cef82613d2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d85578082015181840152602081019050613d6a565b83811115613d94576000848401525b50505050565b60006002820490506001821680613db257607f821691505b60208210811415613dc657613dc5613ed5565b5b50919050565b613dd582613f76565b810181811067ffffffffffffffff82111715613df457613df3613f33565b5b80604052505050565b6000613e0882613d4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e3b57613e3a613e77565b5b600182019050919050565b6000613e5182613d4e565b9150613e5c83613d4e565b925082613e6c57613e6b613ea6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742066756e64732070726f766964656420746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f7420636c61696d206d6f726520696e20612074786e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652079657400000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4e6f2066756e647320746f207769746864726177000000000000000000000000600082015250565b7f43616e277420636c61696d206d6f726520666f72206672656500000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f43616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f457863656564206d6178206672656520737570706c792c20757365207061696460008201527f4d696e7420746f206d696e740000000000000000000000000000000000000000602082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f467265652053616c65206973206e6f7420616374697665207965740000000000600082015250565b50565b61429281613ce4565b811461429d57600080fd5b50565b6142a981613cf6565b81146142b457600080fd5b50565b6142c081613d02565b81146142cb57600080fd5b50565b6142d781613d4e565b81146142e257600080fd5b5056fea264697066735822122025664b436baa7e8a6aabf4e0beeecba51a278462371066e4e4a549d05e51259b64736f6c63430008070033

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.