ETH Price: $3,684.74 (+2.59%)

Token

ERC-20: Sober Panda Crew (SPC)
 

Overview

Max Total Supply

1,112 SPC

Holders

244

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SPC
0x44800575b836770734a77304bc24ca44fd64aeb3
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:
SoberPandaCrew

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : SoberPandaCrew.sol
// SPDX-License-Identifier: MIT
// www.thecreatiiives.com

pragma solidity >=0.7.0 <0.9.0;

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

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

  string public uriPrefix = "ipfs://QmevjzRsn5bvMA467LvktbvSqCzxEKGPpaDxiEy2gSuRSG/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 8888;
  uint256 public wlSupply = 1111;
  uint256 public maxMintAmountPerTx = 50;
  uint256 public maxMintAmount = 1;

  bool public paused = true;
  bool public revealed = true;
  bool public freeSupply = true;

  address public partnerone = 0xB80e20A02498D3f5e3f0FFE342DF75c97a4667cB;
  address public partnertwo = 0x23BAD9e51C5e088A0f87B37Bd824842141e5e2D5;
  address public partnerthree = 0x2cd2cB2205f44a3cEAB2135A1c0E852bC5702206;
  address public partnerfour = 0x0528C9f5Ca1ED8264C23C70F6159ed83f791e506;
  address public partnerfive = 0xf3638f04432BF94C7Df0CE0620a0D3431fD266A5;
  address public partnersix = 0x73cD189BB1e556Cf222724694e91632bb89f182a;
  address public partnerseven = 0x75f9D6DE31a2BEc2222F51e3EA6F2b5b8694D49a;
  address public partnereight = 0xe077Cd760fcddf223c4e00a7E9C0A5f86E2a2B90;
  address public developer = 0xCB78F1E71440Adfb4Adad98e33C821A70E2df6f0;

  mapping(address => uint256) public allowlist;

  constructor() ERC721A("Sober Panda Crew", "SPC")  {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    if (!freeSupply) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    } else {
      require(totalSupply() + _mintAmount <= wlSupply, "Max wl supply exceeded!");
      require(maxMintAmount >= allowlist[msg.sender] + _mintAmount, "not eligible for allowlist mint");
      allowlist[msg.sender] = allowlist[msg.sender] + _mintAmount;
    }

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(_receiver, 1);
    }
  }

  function isAllowed(address _address) public view returns (uint)  {
    return allowlist[_address];
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  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(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

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

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setFreeSupply(bool _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPartners(
    address _one,
    address _two,
    address _three,
    address _four,
    address _five,
    address _six,
    address _seven,
    address _eight,
    address _dev
  ) public onlyOwner {
    partnerone = _one;
    partnertwo = _two;
    partnerthree = _three;
    partnerfour = _four;
    partnerfive = _five;
    partnersix = _six;
    partnerseven = _seven;
    partnereight = _eight;
    developer = _dev;
  }

  function withdraw() public onlyOwner {
    (bool paro, ) = payable(partnerone).call{value: address(this).balance * 40 / 100}("");
    require(paro);
    (bool part, ) = payable(partnertwo).call{value: address(this).balance * 75 / 1000}("");
    require(part);
    (bool parth, ) = payable(partnerthree).call{value: address(this).balance * 75 / 1000}("");
    require(parth);
    (bool parf, ) = payable(partnerfour).call{value: address(this).balance * 75 / 1000}("");
    require(parf);
    (bool parfi, ) = payable(partnerfive).call{value: address(this).balance * 75 / 1000}("");
    require(parfi);
    (bool pars, ) = payable(partnersix).call{value: address(this).balance * 75 / 1000}("");
    require(pars);
    (bool parse, ) = payable(partnerseven).call{value: address(this).balance * 75 / 1000}("");
    require(parse);
    (bool pare, ) = payable(partnereight).call{value: address(this).balance * 75 / 1000}("");
    require(pare);
    (bool os, ) = payable(developer).call{value: address(this).balance}("");
    require(os);
  }

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

File 2 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();

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

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

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

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

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

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

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

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

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

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

    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 3 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 (owner == address(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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        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, can be overriden 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 (to == owner) revert ApprovalToCurrentOwner();

        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.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        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 4 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 5 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;
    }
}

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":"_address","type":"address"}],"name":"isAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnereight","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerfive","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerfour","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerone","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerseven","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnersix","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerthree","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnertwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_freeSupply","type":"bool"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_one","type":"address"},{"internalType":"address","name":"_two","type":"address"},{"internalType":"address","name":"_three","type":"address"},{"internalType":"address","name":"_four","type":"address"},{"internalType":"address","name":"_five","type":"address"},{"internalType":"address","name":"_six","type":"address"},{"internalType":"address","name":"_seven","type":"address"},{"internalType":"address","name":"_eight","type":"address"},{"internalType":"address","name":"_dev","type":"address"}],"name":"setPartners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","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":[{"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e0604052603660808181529062002e6360a039600990620000229082620003b3565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004e9082620003b3565b50662386f26fc10000600c556122b8600d55610457600e556032600f5560016010556011805476b80e20a02498d3f5e3f0ffe342df75c97a4667cb0101016001600160b81b0319909116179055601280546001600160a01b03199081167323bad9e51c5e088a0f87b37bd824842141e5e2d517909155601380548216732cd2cb2205f44a3ceab2135a1c0e852bc5702206179055601480548216730528c9f5ca1ed8264c23c70f6159ed83f791e50617905560158054821673f3638f04432bf94c7df0ce0620a0d3431fd266a51790556016805482167373cd189bb1e556cf222724694e91632bb89f182a1790556017805482167375f9d6de31a2bec2222f51e3ea6f2b5b8694d49a17905560188054821673e077cd760fcddf223c4e00a7e9c0a5f86e2a2b901790556019805490911673cb78f1e71440adfb4adad98e33c821a70e2df6f0179055348015620001a457600080fd5b506040518060400160405280601081526020016f536f6265722050616e6461204372657760801b8152506040518060400160405280600381526020016253504360e81b81525062000204620001fe6200024960201b60201c565b6200024d565b6003620002128382620003b3565b506004620002218282620003b3565b506000600155505060408051602081019091526000815262000243906200029d565b6200047f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b6200030a8282620003b3565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200033957607f821691505b6020821081036200035a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ae57600081815260208120601f850160051c81016020861015620003895750805b601f850160051c820191505b81811015620003aa5782815560010162000395565b5050505b505050565b81516001600160401b03811115620003cf57620003cf6200030e565b620003e781620003e0845462000324565b8462000360565b602080601f8311600181146200041f5760008415620004065750858301515b600019600386901b1c1916600185901b178555620003aa565b600085815260208120601f198616915b8281101562000450578886015182559484019460019091019084016200042f565b50858210156200046f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6129d4806200048f6000396000f3fe6080604052600436106103355760003560e01c80636352211e116101ab578063a7cd52cb116100f7578063cdbecfd111610095578063e0a808531161006f578063e0a808531461095f578063e985e9c51461097f578063efbd73f4146109c8578063f2fde38b146109e857600080fd5b8063cdbecfd114610909578063d5abeb0114610929578063d7e5ecc31461093f57600080fd5b8063babcc539116100d1578063babcc53914610873578063c1e4c07c146108a9578063c87b56dd146108c9578063ca4b208b146108e957600080fd5b8063a7cd52cb14610806578063b071401b14610833578063b88d4fde1461085357600080fd5b806394354fd0116101645780639918e8581161013e5780639918e8581461079e578063a0712d68146107be578063a22cb465146107d1578063a45ba8e7146107f157600080fd5b806394354fd01461074c57806395802e871461076257806395d89b411461078957600080fd5b80636352211e146106995780636f8b44b0146106b957806370a08231146106d9578063715018a6146106f95780637ec4a6591461070e5780638da5cb5b1461072e57600080fd5b80631d5910ce11610285578063438b63001161022357806351830227116101fd57806351830227146106365780635503a0e8146106555780635c975abb1461066a57806362b99ad41461068457600080fd5b8063438b6300146105c957806344a0d68a146105f65780634fdd43cb1461061657600080fd5b806324a6ab0c1161025f57806324a6ab0c146105545780633450abd0146105745780633ccfd60b1461059457806342842e0e146105a957600080fd5b80631d5910ce146104fe578063239c70ae1461051e57806323b872dd1461053457600080fd5b806310437af5116102f257806314f5be0b116102cc57806314f5be0b1461048557806316ba10e0146104a557806316c38b3c146104c557806318160ddd146104e557600080fd5b806310437af51461042f578063121836d61461044f57806313faede61461046f57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063088a4ed0146103c9578063095ea7b3146103eb5780630fe8418b1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004612230565b610a08565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a5a565b60405161036691906122a5565b34801561039d57600080fd5b506103b16103ac3660046122b8565b610aec565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e43660046122b8565b610b30565b005b3480156103f757600080fd5b506103e96104063660046122ed565b610b68565b34801561041757600080fd5b50610421600e5481565b604051908152602001610366565b34801561043b57600080fd5b506103e961044a366004612327565b610c3a565b34801561045b57600080fd5b506018546103b1906001600160a01b031681565b34801561047b57600080fd5b50610421600c5481565b34801561049157600080fd5b506013546103b1906001600160a01b031681565b3480156104b157600080fd5b506103e96104c03660046123ce565b610c80565b3480156104d157600080fd5b506103e96104e0366004612327565b610cba565b3480156104f157600080fd5b5060025460015403610421565b34801561050a57600080fd5b506014546103b1906001600160a01b031681565b34801561052a57600080fd5b5061042160105481565b34801561054057600080fd5b506103e961054f366004612417565b610cf7565b34801561056057600080fd5b5060115461035a9062010000900460ff1681565b34801561058057600080fd5b506015546103b1906001600160a01b031681565b3480156105a057600080fd5b506103e9610d07565b3480156105b557600080fd5b506103e96105c4366004612417565b611152565b3480156105d557600080fd5b506105e96105e4366004612453565b61116d565b604051610366919061246e565b34801561060257600080fd5b506103e96106113660046122b8565b61124d565b34801561062257600080fd5b506103e96106313660046123ce565b61127c565b34801561064257600080fd5b5060115461035a90610100900460ff1681565b34801561066157600080fd5b506103846112b2565b34801561067657600080fd5b5060115461035a9060ff1681565b34801561069057600080fd5b50610384611340565b3480156106a557600080fd5b506103b16106b43660046122b8565b61134d565b3480156106c557600080fd5b506103e96106d43660046122b8565b611358565b3480156106e557600080fd5b506104216106f4366004612453565b611387565b34801561070557600080fd5b506103e96113d6565b34801561071a57600080fd5b506103e96107293660046123ce565b61140c565b34801561073a57600080fd5b506000546001600160a01b03166103b1565b34801561075857600080fd5b50610421600f5481565b34801561076e57600080fd5b506011546103b190630100000090046001600160a01b031681565b34801561079557600080fd5b50610384611442565b3480156107aa57600080fd5b506103e96107b93660046124b2565b611451565b6103e96107cc3660046122b8565b611527565b3480156107dd57600080fd5b506103e96107ec36600461255a565b61179d565b3480156107fd57600080fd5b50610384611832565b34801561081257600080fd5b50610421610821366004612453565b601a6020526000908152604090205481565b34801561083f57600080fd5b506103e961084e3660046122b8565b61183f565b34801561085f57600080fd5b506103e961086e36600461258d565b61186e565b34801561087f57600080fd5b5061042161088e366004612453565b6001600160a01b03166000908152601a602052604090205490565b3480156108b557600080fd5b506012546103b1906001600160a01b031681565b3480156108d557600080fd5b506103846108e43660046122b8565b6118b8565b3480156108f557600080fd5b506019546103b1906001600160a01b031681565b34801561091557600080fd5b506016546103b1906001600160a01b031681565b34801561093557600080fd5b50610421600d5481565b34801561094b57600080fd5b506017546103b1906001600160a01b031681565b34801561096b57600080fd5b506103e961097a366004612327565b611a2c565b34801561098b57600080fd5b5061035a61099a366004612609565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156109d457600080fd5b506103e96109e3366004612633565b611a70565b3480156109f457600080fd5b506103e9610a03366004612453565b611b70565b60006301ffc9a760e01b6001600160e01b031983161480610a3957506380ac58cd60e01b6001600160e01b03198316145b80610a545750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610a6990612656565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9590612656565b8015610ae25780601f10610ab757610100808354040283529160200191610ae2565b820191906000526020600020905b815481529060010190602001808311610ac557829003601f168201915b5050505050905090565b6000610af782611c0b565b610b14576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b03163314610b635760405162461bcd60e51b8152600401610b5a90612690565b60405180910390fd5b601055565b6000610b7382611c33565b9050806001600160a01b0316836001600160a01b031603610ba75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610bde57610bc1813361099a565b610bde576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610c645760405162461bcd60e51b8152600401610b5a90612690565b60118054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610caa5760405162461bcd60e51b8152600401610b5a90612690565b600a610cb68282612713565b5050565b6000546001600160a01b03163314610ce45760405162461bcd60e51b8152600401610b5a90612690565b6011805460ff1916911515919091179055565b610d02838383611c9a565b505050565b6000546001600160a01b03163314610d315760405162461bcd60e51b8152600401610b5a90612690565b601154600090630100000090046001600160a01b03166064610d544760286127e9565b610d5e919061281e565b604051600081818185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610dad57600080fd5b6012546000906001600160a01b03166103e8610dca47604b6127e9565b610dd4919061281e565b604051600081818185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b6013546000906001600160a01b03166103e8610e4047604b6127e9565b610e4a919061281e565b604051600081818185875af1925050503d8060008114610e86576040519150601f19603f3d011682016040523d82523d6000602084013e610e8b565b606091505b5050905080610e9957600080fd5b6014546000906001600160a01b03166103e8610eb647604b6127e9565b610ec0919061281e565b604051600081818185875af1925050503d8060008114610efc576040519150601f19603f3d011682016040523d82523d6000602084013e610f01565b606091505b5050905080610f0f57600080fd5b6015546000906001600160a01b03166103e8610f2c47604b6127e9565b610f36919061281e565b604051600081818185875af1925050503d8060008114610f72576040519150601f19603f3d011682016040523d82523d6000602084013e610f77565b606091505b5050905080610f8557600080fd5b6016546000906001600160a01b03166103e8610fa247604b6127e9565b610fac919061281e565b604051600081818185875af1925050503d8060008114610fe8576040519150601f19603f3d011682016040523d82523d6000602084013e610fed565b606091505b5050905080610ffb57600080fd5b6017546000906001600160a01b03166103e861101847604b6127e9565b611022919061281e565b604051600081818185875af1925050503d806000811461105e576040519150601f19603f3d011682016040523d82523d6000602084013e611063565b606091505b505090508061107157600080fd5b6018546000906001600160a01b03166103e861108e47604b6127e9565b611098919061281e565b604051600081818185875af1925050503d80600081146110d4576040519150601f19603f3d011682016040523d82523d6000602084013e6110d9565b606091505b50509050806110e757600080fd5b6019546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611134576040519150601f19603f3d011682016040523d82523d6000602084013e611139565b606091505b505090508061114757600080fd5b505050505050505050565b610d028383836040518060200160405280600081525061186e565b6060600061117a83611387565b905060008167ffffffffffffffff81111561119757611197612342565b6040519080825280602002602001820160405280156111c0578160200160208202803683370190505b509050600160005b83811080156111d95750600d548211155b156112435760006111e98361134d565b9050866001600160a01b0316816001600160a01b031603611230578284838151811061121757611217612832565b60209081029190910101528161122c81612848565b9250505b8261123a81612848565b935050506111c8565b5090949350505050565b6000546001600160a01b031633146112775760405162461bcd60e51b8152600401610b5a90612690565b600c55565b6000546001600160a01b031633146112a65760405162461bcd60e51b8152600401610b5a90612690565b600b610cb68282612713565b600a80546112bf90612656565b80601f01602080910402602001604051908101604052809291908181526020018280546112eb90612656565b80156113385780601f1061130d57610100808354040283529160200191611338565b820191906000526020600020905b81548152906001019060200180831161131b57829003601f168201915b505050505081565b600980546112bf90612656565b6000610a5482611c33565b6000546001600160a01b031633146113825760405162461bcd60e51b8152600401610b5a90612690565b600d55565b60006001600160a01b0382166113b0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146114005760405162461bcd60e51b8152600401610b5a90612690565b61140a6000611e41565b565b6000546001600160a01b031633146114365760405162461bcd60e51b8152600401610b5a90612690565b6009610cb68282612713565b606060048054610a6990612656565b6000546001600160a01b0316331461147b5760405162461bcd60e51b8152600401610b5a90612690565b601180546301000000600160b81b03191663010000006001600160a01b039b8c1602179055601280546001600160a01b0319908116998b16999099179055601380548916978a16979097179096556014805488169589169590951790945560158054871693881693909317909255601680548616918716919091179055601780548516918616919091179055601880548416918516919091179055601980549092169216919091179055565b80600d54816115396002546001540390565b6115439190612861565b11156115885760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b5a565b60115460ff16156115d55760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b5a565b6000821180156115e75750600f548211155b61162a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b5a565b60115462010000900460ff166116925781600c5461164891906127e9565b34101561168d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b5a565b611793565b600e54826116a36002546001540390565b6116ad9190612861565b11156116fb5760405162461bcd60e51b815260206004820152601760248201527f4d617820776c20737570706c79206578636565646564210000000000000000006044820152606401610b5a565b336000908152601a6020526040902054611716908390612861565b60105410156117675760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610b5a565b336000908152601a6020526040902054611782908390612861565b336000908152601a60205260409020555b610cb63383611e91565b336001600160a01b038316036117c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546112bf90612656565b6000546001600160a01b031633146118695760405162461bcd60e51b8152600401610b5a90612690565b600f55565b611879848484611c9a565b6001600160a01b0383163b156118b25761189584848484611eab565b6118b2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606118c382611c0b565b6119275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b5a565b601154610100900460ff1615156000036119cd57600b805461194890612656565b80601f016020809104026020016040519081016040528092919081815260200182805461197490612656565b80156119c15780601f10611996576101008083540402835291602001916119c1565b820191906000526020600020905b8154815290600101906020018083116119a457829003601f168201915b50505050509050919050565b60006119d7611f97565b905060008151116119f75760405180602001604052806000815250611a25565b80611a0184611fa6565b600a604051602001611a1593929190612879565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611a565760405162461bcd60e51b8152600401610b5a90612690565b601180549115156101000261ff0019909216919091179055565b81600d5481611a826002546001540390565b611a8c9190612861565b1115611ad15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b5a565b60115460ff1615611b1e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b5a565b6000546001600160a01b03163314611b485760405162461bcd60e51b8152600401610b5a90612690565b60005b838110156118b257611b5e836001611e91565b80611b6881612848565b915050611b4b565b6000546001600160a01b03163314611b9a5760405162461bcd60e51b8152600401610b5a90612690565b6001600160a01b038116611bff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5a565b611c0881611e41565b50565b600060015482108015610a54575050600090815260056020526040902054600160e01b161590565b600081600154811015611c815760008181526005602052604081205490600160e01b82169003611c7f575b80600003611a25575060001901600081815260056020526040902054611c5e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611ca582611c33565b9050836001600160a01b0316816001600160a01b031614611cd85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cf65750611cf6853361099a565b80611d11575033611d0684610aec565b6001600160a01b0316145b905080611d3157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d5857604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611df957600183016000818152600560205260408120549003611df7576001548114611df75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cb68282604051806020016040528060008152506120a7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ee0903390899088908890600401612919565b6020604051808303816000875af1925050508015611f1b575060408051601f3d908101601f19168201909252611f1891810190612956565b60015b611f79573d808015611f49576040519150601f19603f3d011682016040523d82523d6000602084013e611f4e565b606091505b508051600003611f71576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610a6990612656565b606081600003611fcd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff75780611fe181612848565b9150611ff09050600a8361281e565b9150611fd1565b60008167ffffffffffffffff81111561201257612012612342565b6040519080825280601f01601f19166020018201604052801561203c576020820181803683370190505b5090505b8415611f8f57612051600183612973565b915061205e600a8661298a565b612069906030612861565b60f81b81838151811061207e5761207e612832565b60200101906001600160f81b031916908160001a9053506120a0600a8661281e565b9450612040565b6001546001600160a01b0384166120d057604051622e076360e81b815260040160405180910390fd5b826000036120f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156121c6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461218f6000878480600101955087611eab565b6121ac576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121445782600154146121c157600080fd5b61220b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121c7575b506001556118b2600085838684565b6001600160e01b031981168114611c0857600080fd5b60006020828403121561224257600080fd5b8135611a258161221a565b60005b83811015612268578181015183820152602001612250565b838111156118b25750506000910152565b6000815180845261229181602086016020860161224d565b601f01601f19169290920160200192915050565b602081526000611a256020830184612279565b6000602082840312156122ca57600080fd5b5035919050565b80356001600160a01b03811681146122e857600080fd5b919050565b6000806040838503121561230057600080fd5b612309836122d1565b946020939093013593505050565b803580151581146122e857600080fd5b60006020828403121561233957600080fd5b611a2582612317565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237357612373612342565b604051601f8501601f19908116603f0116810190828211818310171561239b5761239b612342565b816040528093508581528686860111156123b457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e057600080fd5b813567ffffffffffffffff8111156123f757600080fd5b8201601f8101841361240857600080fd5b611f8f84823560208401612358565b60008060006060848603121561242c57600080fd5b612435846122d1565b9250612443602085016122d1565b9150604084013590509250925092565b60006020828403121561246557600080fd5b611a25826122d1565b6020808252825182820181905260009190848201906040850190845b818110156124a65783518352928401929184019160010161248a565b50909695505050505050565b60008060008060008060008060006101208a8c0312156124d157600080fd5b6124da8a6122d1565b98506124e860208b016122d1565b97506124f660408b016122d1565b965061250460608b016122d1565b955061251260808b016122d1565b945061252060a08b016122d1565b935061252e60c08b016122d1565b925061253c60e08b016122d1565b915061254b6101008b016122d1565b90509295985092959850929598565b6000806040838503121561256d57600080fd5b612576836122d1565b915061258460208401612317565b90509250929050565b600080600080608085870312156125a357600080fd5b6125ac856122d1565b93506125ba602086016122d1565b925060408501359150606085013567ffffffffffffffff8111156125dd57600080fd5b8501601f810187136125ee57600080fd5b6125fd87823560208401612358565b91505092959194509250565b6000806040838503121561261c57600080fd5b612625836122d1565b9150612584602084016122d1565b6000806040838503121561264657600080fd5b82359150612584602084016122d1565b600181811c9082168061266a57607f821691505b60208210810361268a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610d0257600081815260208120601f850160051c810160208610156126ec5750805b601f850160051c820191505b8181101561270b578281556001016126f8565b505050505050565b815167ffffffffffffffff81111561272d5761272d612342565b6127418161273b8454612656565b846126c5565b602080601f831160018114612776576000841561275e5750858301515b600019600386901b1c1916600185901b17855561270b565b600085815260208120601f198616915b828110156127a557888601518255948401946001909101908401612786565b50858210156127c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612803576128036127d3565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261282d5761282d612808565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161285a5761285a6127d3565b5060010190565b60008219821115612874576128746127d3565b500190565b60008451602061288c8285838a0161224d565b85519184019161289f8184848a0161224d565b85549201916000906128b081612656565b600182811680156128c857600181146128dd57612909565b60ff1984168752821515830287019450612909565b896000528560002060005b84811015612901578154898201529083019087016128e8565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294c90830184612279565b9695505050505050565b60006020828403121561296857600080fd5b8151611a258161221a565b600082821015612985576129856127d3565b500390565b60008261299957612999612808565b50069056fea26469706673582212201d3cf3690b762e63519470c3ba7a82198038f8ecb339cf1d2d0d08396168b16764736f6c634300080f0033697066733a2f2f516d65766a7a52736e3562764d413436374c766b7462765371437a78454b475070614478694579326753755253472f

Deployed Bytecode

0x6080604052600436106103355760003560e01c80636352211e116101ab578063a7cd52cb116100f7578063cdbecfd111610095578063e0a808531161006f578063e0a808531461095f578063e985e9c51461097f578063efbd73f4146109c8578063f2fde38b146109e857600080fd5b8063cdbecfd114610909578063d5abeb0114610929578063d7e5ecc31461093f57600080fd5b8063babcc539116100d1578063babcc53914610873578063c1e4c07c146108a9578063c87b56dd146108c9578063ca4b208b146108e957600080fd5b8063a7cd52cb14610806578063b071401b14610833578063b88d4fde1461085357600080fd5b806394354fd0116101645780639918e8581161013e5780639918e8581461079e578063a0712d68146107be578063a22cb465146107d1578063a45ba8e7146107f157600080fd5b806394354fd01461074c57806395802e871461076257806395d89b411461078957600080fd5b80636352211e146106995780636f8b44b0146106b957806370a08231146106d9578063715018a6146106f95780637ec4a6591461070e5780638da5cb5b1461072e57600080fd5b80631d5910ce11610285578063438b63001161022357806351830227116101fd57806351830227146106365780635503a0e8146106555780635c975abb1461066a57806362b99ad41461068457600080fd5b8063438b6300146105c957806344a0d68a146105f65780634fdd43cb1461061657600080fd5b806324a6ab0c1161025f57806324a6ab0c146105545780633450abd0146105745780633ccfd60b1461059457806342842e0e146105a957600080fd5b80631d5910ce146104fe578063239c70ae1461051e57806323b872dd1461053457600080fd5b806310437af5116102f257806314f5be0b116102cc57806314f5be0b1461048557806316ba10e0146104a557806316c38b3c146104c557806318160ddd146104e557600080fd5b806310437af51461042f578063121836d61461044f57806313faede61461046f57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063088a4ed0146103c9578063095ea7b3146103eb5780630fe8418b1461040b575b600080fd5b34801561034657600080fd5b5061035a610355366004612230565b610a08565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a5a565b60405161036691906122a5565b34801561039d57600080fd5b506103b16103ac3660046122b8565b610aec565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e43660046122b8565b610b30565b005b3480156103f757600080fd5b506103e96104063660046122ed565b610b68565b34801561041757600080fd5b50610421600e5481565b604051908152602001610366565b34801561043b57600080fd5b506103e961044a366004612327565b610c3a565b34801561045b57600080fd5b506018546103b1906001600160a01b031681565b34801561047b57600080fd5b50610421600c5481565b34801561049157600080fd5b506013546103b1906001600160a01b031681565b3480156104b157600080fd5b506103e96104c03660046123ce565b610c80565b3480156104d157600080fd5b506103e96104e0366004612327565b610cba565b3480156104f157600080fd5b5060025460015403610421565b34801561050a57600080fd5b506014546103b1906001600160a01b031681565b34801561052a57600080fd5b5061042160105481565b34801561054057600080fd5b506103e961054f366004612417565b610cf7565b34801561056057600080fd5b5060115461035a9062010000900460ff1681565b34801561058057600080fd5b506015546103b1906001600160a01b031681565b3480156105a057600080fd5b506103e9610d07565b3480156105b557600080fd5b506103e96105c4366004612417565b611152565b3480156105d557600080fd5b506105e96105e4366004612453565b61116d565b604051610366919061246e565b34801561060257600080fd5b506103e96106113660046122b8565b61124d565b34801561062257600080fd5b506103e96106313660046123ce565b61127c565b34801561064257600080fd5b5060115461035a90610100900460ff1681565b34801561066157600080fd5b506103846112b2565b34801561067657600080fd5b5060115461035a9060ff1681565b34801561069057600080fd5b50610384611340565b3480156106a557600080fd5b506103b16106b43660046122b8565b61134d565b3480156106c557600080fd5b506103e96106d43660046122b8565b611358565b3480156106e557600080fd5b506104216106f4366004612453565b611387565b34801561070557600080fd5b506103e96113d6565b34801561071a57600080fd5b506103e96107293660046123ce565b61140c565b34801561073a57600080fd5b506000546001600160a01b03166103b1565b34801561075857600080fd5b50610421600f5481565b34801561076e57600080fd5b506011546103b190630100000090046001600160a01b031681565b34801561079557600080fd5b50610384611442565b3480156107aa57600080fd5b506103e96107b93660046124b2565b611451565b6103e96107cc3660046122b8565b611527565b3480156107dd57600080fd5b506103e96107ec36600461255a565b61179d565b3480156107fd57600080fd5b50610384611832565b34801561081257600080fd5b50610421610821366004612453565b601a6020526000908152604090205481565b34801561083f57600080fd5b506103e961084e3660046122b8565b61183f565b34801561085f57600080fd5b506103e961086e36600461258d565b61186e565b34801561087f57600080fd5b5061042161088e366004612453565b6001600160a01b03166000908152601a602052604090205490565b3480156108b557600080fd5b506012546103b1906001600160a01b031681565b3480156108d557600080fd5b506103846108e43660046122b8565b6118b8565b3480156108f557600080fd5b506019546103b1906001600160a01b031681565b34801561091557600080fd5b506016546103b1906001600160a01b031681565b34801561093557600080fd5b50610421600d5481565b34801561094b57600080fd5b506017546103b1906001600160a01b031681565b34801561096b57600080fd5b506103e961097a366004612327565b611a2c565b34801561098b57600080fd5b5061035a61099a366004612609565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156109d457600080fd5b506103e96109e3366004612633565b611a70565b3480156109f457600080fd5b506103e9610a03366004612453565b611b70565b60006301ffc9a760e01b6001600160e01b031983161480610a3957506380ac58cd60e01b6001600160e01b03198316145b80610a545750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060038054610a6990612656565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9590612656565b8015610ae25780601f10610ab757610100808354040283529160200191610ae2565b820191906000526020600020905b815481529060010190602001808311610ac557829003601f168201915b5050505050905090565b6000610af782611c0b565b610b14576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b03163314610b635760405162461bcd60e51b8152600401610b5a90612690565b60405180910390fd5b601055565b6000610b7382611c33565b9050806001600160a01b0316836001600160a01b031603610ba75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610bde57610bc1813361099a565b610bde576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b03163314610c645760405162461bcd60e51b8152600401610b5a90612690565b60118054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610caa5760405162461bcd60e51b8152600401610b5a90612690565b600a610cb68282612713565b5050565b6000546001600160a01b03163314610ce45760405162461bcd60e51b8152600401610b5a90612690565b6011805460ff1916911515919091179055565b610d02838383611c9a565b505050565b6000546001600160a01b03163314610d315760405162461bcd60e51b8152600401610b5a90612690565b601154600090630100000090046001600160a01b03166064610d544760286127e9565b610d5e919061281e565b604051600081818185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610dad57600080fd5b6012546000906001600160a01b03166103e8610dca47604b6127e9565b610dd4919061281e565b604051600081818185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b6013546000906001600160a01b03166103e8610e4047604b6127e9565b610e4a919061281e565b604051600081818185875af1925050503d8060008114610e86576040519150601f19603f3d011682016040523d82523d6000602084013e610e8b565b606091505b5050905080610e9957600080fd5b6014546000906001600160a01b03166103e8610eb647604b6127e9565b610ec0919061281e565b604051600081818185875af1925050503d8060008114610efc576040519150601f19603f3d011682016040523d82523d6000602084013e610f01565b606091505b5050905080610f0f57600080fd5b6015546000906001600160a01b03166103e8610f2c47604b6127e9565b610f36919061281e565b604051600081818185875af1925050503d8060008114610f72576040519150601f19603f3d011682016040523d82523d6000602084013e610f77565b606091505b5050905080610f8557600080fd5b6016546000906001600160a01b03166103e8610fa247604b6127e9565b610fac919061281e565b604051600081818185875af1925050503d8060008114610fe8576040519150601f19603f3d011682016040523d82523d6000602084013e610fed565b606091505b5050905080610ffb57600080fd5b6017546000906001600160a01b03166103e861101847604b6127e9565b611022919061281e565b604051600081818185875af1925050503d806000811461105e576040519150601f19603f3d011682016040523d82523d6000602084013e611063565b606091505b505090508061107157600080fd5b6018546000906001600160a01b03166103e861108e47604b6127e9565b611098919061281e565b604051600081818185875af1925050503d80600081146110d4576040519150601f19603f3d011682016040523d82523d6000602084013e6110d9565b606091505b50509050806110e757600080fd5b6019546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611134576040519150601f19603f3d011682016040523d82523d6000602084013e611139565b606091505b505090508061114757600080fd5b505050505050505050565b610d028383836040518060200160405280600081525061186e565b6060600061117a83611387565b905060008167ffffffffffffffff81111561119757611197612342565b6040519080825280602002602001820160405280156111c0578160200160208202803683370190505b509050600160005b83811080156111d95750600d548211155b156112435760006111e98361134d565b9050866001600160a01b0316816001600160a01b031603611230578284838151811061121757611217612832565b60209081029190910101528161122c81612848565b9250505b8261123a81612848565b935050506111c8565b5090949350505050565b6000546001600160a01b031633146112775760405162461bcd60e51b8152600401610b5a90612690565b600c55565b6000546001600160a01b031633146112a65760405162461bcd60e51b8152600401610b5a90612690565b600b610cb68282612713565b600a80546112bf90612656565b80601f01602080910402602001604051908101604052809291908181526020018280546112eb90612656565b80156113385780601f1061130d57610100808354040283529160200191611338565b820191906000526020600020905b81548152906001019060200180831161131b57829003601f168201915b505050505081565b600980546112bf90612656565b6000610a5482611c33565b6000546001600160a01b031633146113825760405162461bcd60e51b8152600401610b5a90612690565b600d55565b60006001600160a01b0382166113b0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146114005760405162461bcd60e51b8152600401610b5a90612690565b61140a6000611e41565b565b6000546001600160a01b031633146114365760405162461bcd60e51b8152600401610b5a90612690565b6009610cb68282612713565b606060048054610a6990612656565b6000546001600160a01b0316331461147b5760405162461bcd60e51b8152600401610b5a90612690565b601180546301000000600160b81b03191663010000006001600160a01b039b8c1602179055601280546001600160a01b0319908116998b16999099179055601380548916978a16979097179096556014805488169589169590951790945560158054871693881693909317909255601680548616918716919091179055601780548516918616919091179055601880548416918516919091179055601980549092169216919091179055565b80600d54816115396002546001540390565b6115439190612861565b11156115885760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b5a565b60115460ff16156115d55760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b5a565b6000821180156115e75750600f548211155b61162a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610b5a565b60115462010000900460ff166116925781600c5461164891906127e9565b34101561168d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b5a565b611793565b600e54826116a36002546001540390565b6116ad9190612861565b11156116fb5760405162461bcd60e51b815260206004820152601760248201527f4d617820776c20737570706c79206578636565646564210000000000000000006044820152606401610b5a565b336000908152601a6020526040902054611716908390612861565b60105410156117675760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e74006044820152606401610b5a565b336000908152601a6020526040902054611782908390612861565b336000908152601a60205260409020555b610cb63383611e91565b336001600160a01b038316036117c65760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546112bf90612656565b6000546001600160a01b031633146118695760405162461bcd60e51b8152600401610b5a90612690565b600f55565b611879848484611c9a565b6001600160a01b0383163b156118b25761189584848484611eab565b6118b2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606118c382611c0b565b6119275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b5a565b601154610100900460ff1615156000036119cd57600b805461194890612656565b80601f016020809104026020016040519081016040528092919081815260200182805461197490612656565b80156119c15780601f10611996576101008083540402835291602001916119c1565b820191906000526020600020905b8154815290600101906020018083116119a457829003601f168201915b50505050509050919050565b60006119d7611f97565b905060008151116119f75760405180602001604052806000815250611a25565b80611a0184611fa6565b600a604051602001611a1593929190612879565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611a565760405162461bcd60e51b8152600401610b5a90612690565b601180549115156101000261ff0019909216919091179055565b81600d5481611a826002546001540390565b611a8c9190612861565b1115611ad15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610b5a565b60115460ff1615611b1e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b5a565b6000546001600160a01b03163314611b485760405162461bcd60e51b8152600401610b5a90612690565b60005b838110156118b257611b5e836001611e91565b80611b6881612848565b915050611b4b565b6000546001600160a01b03163314611b9a5760405162461bcd60e51b8152600401610b5a90612690565b6001600160a01b038116611bff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5a565b611c0881611e41565b50565b600060015482108015610a54575050600090815260056020526040902054600160e01b161590565b600081600154811015611c815760008181526005602052604081205490600160e01b82169003611c7f575b80600003611a25575060001901600081815260056020526040902054611c5e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611ca582611c33565b9050836001600160a01b0316816001600160a01b031614611cd85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cf65750611cf6853361099a565b80611d11575033611d0684610aec565b6001600160a01b0316145b905080611d3157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d5857604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611df957600183016000818152600560205260408120549003611df7576001548114611df75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cb68282604051806020016040528060008152506120a7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ee0903390899088908890600401612919565b6020604051808303816000875af1925050508015611f1b575060408051601f3d908101601f19168201909252611f1891810190612956565b60015b611f79573d808015611f49576040519150601f19603f3d011682016040523d82523d6000602084013e611f4e565b606091505b508051600003611f71576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610a6990612656565b606081600003611fcd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff75780611fe181612848565b9150611ff09050600a8361281e565b9150611fd1565b60008167ffffffffffffffff81111561201257612012612342565b6040519080825280601f01601f19166020018201604052801561203c576020820181803683370190505b5090505b8415611f8f57612051600183612973565b915061205e600a8661298a565b612069906030612861565b60f81b81838151811061207e5761207e612832565b60200101906001600160f81b031916908160001a9053506120a0600a8661281e565b9450612040565b6001546001600160a01b0384166120d057604051622e076360e81b815260040160405180910390fd5b826000036120f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156121c6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461218f6000878480600101955087611eab565b6121ac576040516368d2bf6b60e11b815260040160405180910390fd5b8082106121445782600154146121c157600080fd5b61220b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106121c7575b506001556118b2600085838684565b6001600160e01b031981168114611c0857600080fd5b60006020828403121561224257600080fd5b8135611a258161221a565b60005b83811015612268578181015183820152602001612250565b838111156118b25750506000910152565b6000815180845261229181602086016020860161224d565b601f01601f19169290920160200192915050565b602081526000611a256020830184612279565b6000602082840312156122ca57600080fd5b5035919050565b80356001600160a01b03811681146122e857600080fd5b919050565b6000806040838503121561230057600080fd5b612309836122d1565b946020939093013593505050565b803580151581146122e857600080fd5b60006020828403121561233957600080fd5b611a2582612317565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237357612373612342565b604051601f8501601f19908116603f0116810190828211818310171561239b5761239b612342565b816040528093508581528686860111156123b457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e057600080fd5b813567ffffffffffffffff8111156123f757600080fd5b8201601f8101841361240857600080fd5b611f8f84823560208401612358565b60008060006060848603121561242c57600080fd5b612435846122d1565b9250612443602085016122d1565b9150604084013590509250925092565b60006020828403121561246557600080fd5b611a25826122d1565b6020808252825182820181905260009190848201906040850190845b818110156124a65783518352928401929184019160010161248a565b50909695505050505050565b60008060008060008060008060006101208a8c0312156124d157600080fd5b6124da8a6122d1565b98506124e860208b016122d1565b97506124f660408b016122d1565b965061250460608b016122d1565b955061251260808b016122d1565b945061252060a08b016122d1565b935061252e60c08b016122d1565b925061253c60e08b016122d1565b915061254b6101008b016122d1565b90509295985092959850929598565b6000806040838503121561256d57600080fd5b612576836122d1565b915061258460208401612317565b90509250929050565b600080600080608085870312156125a357600080fd5b6125ac856122d1565b93506125ba602086016122d1565b925060408501359150606085013567ffffffffffffffff8111156125dd57600080fd5b8501601f810187136125ee57600080fd5b6125fd87823560208401612358565b91505092959194509250565b6000806040838503121561261c57600080fd5b612625836122d1565b9150612584602084016122d1565b6000806040838503121561264657600080fd5b82359150612584602084016122d1565b600181811c9082168061266a57607f821691505b60208210810361268a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610d0257600081815260208120601f850160051c810160208610156126ec5750805b601f850160051c820191505b8181101561270b578281556001016126f8565b505050505050565b815167ffffffffffffffff81111561272d5761272d612342565b6127418161273b8454612656565b846126c5565b602080601f831160018114612776576000841561275e5750858301515b600019600386901b1c1916600185901b17855561270b565b600085815260208120601f198616915b828110156127a557888601518255948401946001909101908401612786565b50858210156127c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612803576128036127d3565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261282d5761282d612808565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161285a5761285a6127d3565b5060010190565b60008219821115612874576128746127d3565b500190565b60008451602061288c8285838a0161224d565b85519184019161289f8184848a0161224d565b85549201916000906128b081612656565b600182811680156128c857600181146128dd57612909565b60ff1984168752821515830287019450612909565b896000528560002060005b84811015612901578154898201529083019087016128e8565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294c90830184612279565b9695505050505050565b60006020828403121561296857600080fd5b8151611a258161221a565b600082821015612985576129856127d3565b500390565b60008261299957612999612808565b50069056fea26469706673582212201d3cf3690b762e63519470c3ba7a82198038f8ecb339cf1d2d0d08396168b16764736f6c634300080f0033

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.