ETH Price: $2,275.35 (-0.65%)

Token

Apex Predators Lions (APL)
 

Overview

Max Total Supply

1,000 APL

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
justabi.eth
Balance
1 APL
0xCe1B9EA48e2219926B573b16f0F5AA7975d21dD0
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:
ApexPredatorsLions

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion
File 1 of 15 : ApexPredatorsLions.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract ApexPredatorsLions is ERC721Enumerable, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  Counters.Counter public _mintIds;
  Counters.Counter public _claimIds;

  // Smart contract status
  enum MintStatus {
    CLOSED,
    PRESALE,
    PUBLIC
  }
  MintStatus public status = MintStatus.CLOSED;

  // ERC721 params
  string private _tokenName = "Apex Predators Lions";
  string private _tokenId = "APL";
  string private _baseTokenURI = "https://claim.apexpredatorsnft.com/api/metadata/";

  // Withdraw address
  address public withdraw_address = 0x43Efca78533eb8616679F5F2C7db2EE94Af9582D;

  // Collection params
  uint256 public constant TOT = 1000;
  uint256 public constant PRICE = 1 ether;
  uint256[3] public MAX_PER_STATUS = [0, 5, 5];

  // Premint list
  mapping(address => bool) private _presaleList;
  mapping(address => uint256) private _presaleClaimed;

  // Event declaration
  event MintEvent(uint256 indexed id);
  event ChangedStatusEvent(uint256 newStatus);
  event ChangedBaseURIEvent(string newURI);
  event ChangedWithdrawAddress(address newAddress);

  // Modifier to check claiming requirements
  modifier onlyIfAvailable(uint256 _qty) {
    require(status != MintStatus.CLOSED, "Minting is closed");
    require(_qty > 0, "NFTs amount must be greater than zero");
    require(_qty <= MAX_PER_STATUS[uint256(status)], "Exceeded the max amount of claimable NFT");
    require(_claimIds.current() < _mintIds.current(), "Collection is sold out");
    require(_claimIds.current() + _qty <= _mintIds.current(), "Not enough NFTs available");
    require(msg.value == PRICE * _qty, "Ether sent is not correct");
    _;
  }

  // Constructor
  constructor() ERC721(_tokenName, _tokenId) { }

  // Owner mint function
  function ownerMint(uint256 _qty) external nonReentrant onlyOwner {
    require(_qty > 0, "qty must be positive");
    require(_mintIds.current() < TOT, "Collection is sold out");
    require(_mintIds.current() + _qty <= TOT, "Not enough NFTs available");

    for (uint i = 0; i < _qty; i++){
        _mintIds.increment();
        _safeMint(msg.sender, _mintIds.current());
        emit MintEvent(_mintIds.current());
    }

  }

  // Public claim
  function claim(uint256 _qty) external payable nonReentrant onlyIfAvailable(_qty){
      if(status == MintStatus.PRESALE){
          require(_presaleList[msg.sender] == true, "You are not in the presale list");
          require(_presaleClaimed[msg.sender] + _qty <= MAX_PER_STATUS[uint256(status)], "Not enough NFTs available in presale");
          _presaleClaimed[msg.sender] += _qty;
      }

      for (uint i = 0; i < _qty; i++) {
          _claim();
      }
  }

  // Private claim
  function _claim() private {
      require(_exists(_claimIds.current() + 1), "Token does not exists");
      _claimIds.increment();
      _safeTransfer(ownerOf(_claimIds.current()), msg.sender, _claimIds.current(), "");
  }

  // Presale list: Add addresses to presale list
  function addToPresaleList(address[] calldata _addresses)
    external
    onlyOwner
  {
    require(_addresses.length > 0, "List is empty");
    for (uint256 i = 0; i < _addresses.length; i++) {
      require(!_presaleList[_addresses[i]], "Already in presale list");
      _presaleList[_addresses[i]] = true;
    }
  }

  // Getters
  function tokenExists(uint256 _id) public view returns (bool) {
    return _exists(_id);
  }

  function getStatus() external view returns(string memory status_, uint qty_, uint price_, string memory msg_, uint256 available_){
    uint256 _available = availableToClaim();
    if(_available == 0){
      return ("SOLD OUT", 0, PRICE, "Sold out", 0);
    }
      if(status == MintStatus.CLOSED){
          return ("CLOSED", MAX_PER_STATUS[uint256(status)], PRICE, "Minting is closed", _available);
      } else if  (status == MintStatus.PRESALE){
          if(_presaleList[msg.sender] == true) {
            if(_presaleClaimed[msg.sender] < MAX_PER_STATUS[uint256(status)] ) {
                  return ("PRESALE", MAX_PER_STATUS[uint256(status)] - _presaleClaimed[msg.sender], PRICE, "You are in presale", _available);
              } else {
                  return( "PRESALE", 0, PRICE, "You already claimed your presale", _available);
              }
          } else {
              return ("PRESALE", 0, PRICE, "You are not in presale", _available);
          }
      } else {
          return ("PUBLIC", MAX_PER_STATUS[uint256(status)], PRICE, "Public sale", _available);
      }
  }

  function availableToClaim() public view  returns (uint256){
    return _mintIds.current() - _claimIds.current();
  }

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

  // Setters
  function setStatus(uint8 _status) external onlyOwner {
    // _status -> 0: CLOSED, 1: PRESALE, 2: PUBLIC
    require(_status >= 0 && _status <= 2, "Mint status must be between 0 and 2");
    status = MintStatus(_status);
    emit ChangedStatusEvent(_status);
  }

  function setBaseURI(string memory _URI) public onlyOwner {
    _baseTokenURI = _URI;
    emit ChangedBaseURIEvent(_URI);
  }

  function setWithdrawAddress(address _withdraw) external onlyOwner {
    withdraw_address = _withdraw;
    emit ChangedWithdrawAddress(_withdraw);
  }

  // Withdraw function
  function withdrawAll() external payable nonReentrant onlyOwner {
    require(address(this).balance != 0, "Balance is zero");
    payable(withdraw_address).transfer(address(this).balance);
  }
}

File 2 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

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 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 11 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 14 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 15 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ChangedBaseURIEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStatus","type":"uint256"}],"name":"ChangedStatusEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"ChangedWithdrawAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MintEvent","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":"uint256","name":"","type":"uint256"}],"name":"MAX_PER_STATUS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_claimIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"string","name":"status_","type":"string"},{"internalType":"uint256","name":"qty_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"string","name":"msg_","type":"string"},{"internalType":"uint256","name":"available_","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":"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":"_qty","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdraw","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum ApexPredatorsLions.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

600e805460ff1916905560c0604052601460808190527f41706578205072656461746f7273204c696f6e7300000000000000000000000060a09081526200004a91600f9190620002db565b506040805180820190915260038082526210541360ea1b60209092019182526200007791601091620002db565b5060405180606001604052806030815260200162003e39603091398051620000a891601191602090910190620002db565b50601280546001600160a01b0319167343efca78533eb8616679f5f2c7db2ee94af9582d179055604080516060810182526000815260056020820181905291810191909152620000fd9060139060036200036a565b503480156200010b57600080fd5b50600f80546200011b90620003b7565b80601f01602080910402602001604051908101604052809291908181526020018280546200014990620003b7565b80156200019a5780601f106200016e576101008083540402835291602001916200019a565b820191906000526020600020905b8154815290600101906020018083116200017c57829003601f168201915b505050505060108054620001ae90620003b7565b80601f0160208091040260200160405190810160405280929190818152602001828054620001dc90620003b7565b80156200022d5780601f1062000201576101008083540402835291602001916200022d565b820191906000526020600020905b8154815290600101906020018083116200020f57829003601f168201915b5050845162000247935060009250602086019150620002db565b5080516200025d906001906020840190620002db565b5050506200027a620002746200028560201b60201c565b62000289565b6001600b55620003f4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002e990620003b7565b90600052602060002090601f0160209004810192826200030d576000855562000358565b82601f106200032857805160ff191683800117855562000358565b8280016001018555821562000358579182015b82811115620003585782518255916020019190600101906200033b565b5062000366929150620003a0565b5090565b826003810192821562000358579160200282015b8281111562000358578251829060ff169055916020019190600101906200037e565b5b80821115620003665760008155600101620003a1565b600181811c90821680620003cc57607f821691505b60208210811415620003ee57634e487b7160e01b600052602260045260246000fd5b50919050565b613a3580620004046000396000f3fe60806040526004361061024e5760003560e01c80634f6ccce7116101385780638d859f3e116100b0578063b88d4fde1161007f578063e985e9c511610064578063e985e9c514610673578063f19e75d4146106c9578063f2fde38b146106e957600080fd5b8063b88d4fde14610633578063c87b56dd1461065357600080fd5b80638d859f3e146105b75780638da5cb5b146105d357806395d89b41146105fe578063a22cb4651461061357600080fd5b806370a08231116101075780637204a3c9116100ec5780637204a3c9146105785780637a177de914610598578063853828b6146105af57600080fd5b806370a0823114610543578063715018a61461056357600080fd5b80634f6ccce7146104cd57806355f804b3146104ed5780636352211e1461050d57806369ff2d111461052d57600080fd5b806323b872dd116101cb578063379607f51161019a57806342842e0e1161017f57806342842e0e1461045a5780634a9a8aa81461047a5780634e69d560146104a757600080fd5b8063379607f5146104275780633ab1a4941461043a57600080fd5b806323b872dd146103b25780632e49d78b146103d25780632f745c59146103f25780632fd9696a1461041257600080fd5b8063095ea7b31161022257806318160ddd1161020757806318160ddd14610356578063200d2ed21461036b578063223657701461039257600080fd5b8063095ea7b31461030f5780630a8260f91461033157600080fd5b8062923f9e1461025357806301ffc9a71461028857806306fdde03146102a8578063081812fc146102ca575b600080fd5b34801561025f57600080fd5b5061027361026e3660046132b3565b610709565b60405190151581526020015b60405180910390f35b34801561029457600080fd5b506102736102a33660046132fa565b610737565b3480156102b457600080fd5b506102bd61078d565b60405161027f919061338d565b3480156102d657600080fd5b506102ea6102e53660046132b3565b61081f565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161027f565b34801561031b57600080fd5b5061032f61032a3660046133c9565b6108e4565b005b34801561033d57600080fd5b50600c546103489081565b60405190815260200161027f565b34801561036257600080fd5b50600854610348565b34801561037757600080fd5b50600e546103859060ff1681565b60405161027f9190613422565b34801561039e57600080fd5b506103486103ad3660046132b3565b610a3d565b3480156103be57600080fd5b5061032f6103cd366004613463565b610a54565b3480156103de57600080fd5b5061032f6103ed36600461349f565b610adb565b3480156103fe57600080fd5b5061034861040d3660046133c9565b610c4a565b34801561041e57600080fd5b50610348610cff565b61032f6104353660046132b3565b610d1c565b34801561044657600080fd5b5061032f6104553660046134c2565b61119c565b34801561046657600080fd5b5061032f610475366004613463565b611276565b34801561048657600080fd5b506012546102ea9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104b357600080fd5b506104bc611291565b60405161027f9594939291906134dd565b3480156104d957600080fd5b506103486104e83660046132b3565b6116f1565b3480156104f957600080fd5b5061032f6105083660046135e4565b611795565b34801561051957600080fd5b506102ea6105283660046132b3565b61183f565b34801561053957600080fd5b506103486103e881565b34801561054f57600080fd5b5061034861055e3660046134c2565b6118d7565b34801561056f57600080fd5b5061032f61198b565b34801561058457600080fd5b5061032f61059336600461362d565b6119fe565b3480156105a457600080fd5b50600d546103489081565b61032f611bf1565b3480156105c357600080fd5b50610348670de0b6b3a764000081565b3480156105df57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166102ea565b34801561060a57600080fd5b506102bd611d4b565b34801561061f57600080fd5b5061032f61062e3660046136a2565b611d5a565b34801561063f57600080fd5b5061032f61064e3660046136de565b611e57565b34801561065f57600080fd5b506102bd61066e3660046132b3565b611ee5565b34801561067f57600080fd5b5061027361068e36600461375a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106d557600080fd5b5061032f6106e43660046132b3565b611fdb565b3480156106f557600080fd5b5061032f6107043660046134c2565b61221a565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610731575061073182612316565b60606000805461079c9061378d565b80601f01602080910402602001604051908101604052809291908181526020018280546107c89061378d565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166108bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108ef8261183f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109935760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108b2565b3373ffffffffffffffffffffffffffffffffffffffff821614806109bc57506109bc813361068e565b610a2e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b2565b610a3883836123f9565b505050565b60138160038110610a4d57600080fd5b0154905081565b610a5e3382612499565b610ad05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108b2565b610a388383836125ef565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b60028160ff161115610bbc5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f642032000000000000000000000000000000000000000000000000000000000060648201526084016108b2565b8060ff166002811115610bd157610bd16133f3565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836002811115610c0b57610c0b6133f3565b021790555060405160ff821681527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a678906020015b60405180910390a150565b6000610c55836118d7565b8210610cc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108b2565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b6000610d0a600d5490565b600c54610d179190613810565b905090565b6002600b541415610d6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55806000600e5460ff166002811115610d8e57610d8e6133f3565b1415610ddc5760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320636c6f73656400000000000000000000000000000060448201526064016108b2565b60008111610e525760405162461bcd60e51b815260206004820152602560248201527f4e46547320616d6f756e74206d7573742062652067726561746572207468616e60448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108b2565b600e5460139060ff166002811115610e6c57610e6c6133f3565b60038110610e7c57610e7c613827565b0154811115610ef35760405162461bcd60e51b815260206004820152602860248201527f457863656564656420746865206d617820616d6f756e74206f6620636c61696d60448201527f61626c65204e465400000000000000000000000000000000000000000000000060648201526084016108b2565b600c54600d5410610f465760405162461bcd60e51b815260206004820152601660248201527f436f6c6c656374696f6e20697320736f6c64206f75740000000000000000000060448201526064016108b2565b600c5481610f53600d5490565b610f5d9190613856565b1115610fab5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f756768204e46547320617661696c61626c650000000000000060448201526064016108b2565b610fbd81670de0b6b3a764000061386e565b341461100b5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016108b2565b6001600e5460ff166002811115611024576110246133f3565b141561116d573360009081526016602052604090205460ff16151560011461108e5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420696e207468652070726573616c65206c6973740060448201526064016108b2565b600e5460139060ff1660028111156110a8576110a86133f3565b600381106110b8576110b8613827565b0154336000908152601760205260409020546110d5908490613856565b11156111485760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f756768204e46547320617661696c61626c6520696e2070726560448201527f73616c650000000000000000000000000000000000000000000000000000000060648201526084016108b2565b3360009081526017602052604081208054849290611167908490613856565b90915550505b60005b828110156111925761118061282d565b8061118a816138ab565b915050611170565b50506001600b5550565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f1354e0220161b341b2ddfc335d39df48515b1301300ca981a001862338c0e9f690602001610c3f565b610a3883838360405180602001604052806000815250611e57565b606060008060606000806112a3610cff565b90508061132d57505060408051808201825260088082527f534f4c44204f555400000000000000000000000000000000000000000000000060208084019190915283518085019094529083527f536f6c64206f757400000000000000000000000000000000000000000000000090830152945060009350670de0b6b3a764000092509050826116ea565b6000600e5460ff166002811115611346576113466133f3565b14156113f957600e5460139060ff166002811115611366576113666133f3565b6003811061137657611376613827565b0154604080518082018252600681527f434c4f53454400000000000000000000000000000000000000000000000000006020808301919091528251808401909352601183527f4d696e74696e6720697320636c6f736564000000000000000000000000000000908301529750909550670de0b6b3a76400009450925090506116ea565b6001600e5460ff166002811115611412576114126133f3565b1415611641573360009081526016602052604090205460ff161515600114156115bf57600e5460139060ff16600281111561144f5761144f6133f3565b6003811061145f5761145f613827565b015433600090815260176020526040902054101561153e5733600090815260176020526040902054600e5460139060ff1660028111156114a1576114a16133f3565b600381106114b1576114b1613827565b01546114bd9190613810565b604080518082018252600781527f50524553414c45000000000000000000000000000000000000000000000000006020808301919091528251808401909352601283527f596f752061726520696e2070726573616c650000000000000000000000000000908301529750909550670de0b6b3a76400009450925090506116ea565b604080518082018252600781527f50524553414c450000000000000000000000000000000000000000000000000060208083019190915282518084019093528083527f596f7520616c726561647920636c61696d656420796f75722070726573616c6590830152965060009550670de0b6b3a76400009450925090506116ea565b604080518082018252600781527f50524553414c45000000000000000000000000000000000000000000000000006020808301919091528251808401909352601683527f596f7520617265206e6f7420696e2070726573616c650000000000000000000090830152965060009550670de0b6b3a76400009450925090506116ea565b600e5460139060ff16600281111561165b5761165b6133f3565b6003811061166b5761166b613827565b0154604080518082018252600681527f5055424c494300000000000000000000000000000000000000000000000000006020808301919091528251808401909352600b83527f5075626c69632073616c65000000000000000000000000000000000000000000908301529750909550670de0b6b3a76400009450925090505b9091929394565b60006116fc60085490565b82106117705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108b2565b6008828154811061178357611783613827565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b805161180f90601190602084019061321a565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610c3f919061338d565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806107315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108b2565b600073ffffffffffffffffffffffffffffffffffffffff82166119625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108b2565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b6119fc60006128f6565b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b80611ab25760405162461bcd60e51b815260206004820152600d60248201527f4c69737420697320656d7074790000000000000000000000000000000000000060448201526064016108b2565b60005b81811015610a385760166000848484818110611ad357611ad3613827565b9050602002016020810190611ae891906134c2565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff1615611b5f5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920696e2070726573616c65206c69737400000000000000000060448201526064016108b2565b600160166000858585818110611b7757611b77613827565b9050602002016020810190611b8c91906134c2565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611be9816138ab565b915050611ab5565b6002600b541415611c445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55600a5473ffffffffffffffffffffffffffffffffffffffff163314611cb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b47611cfd5760405162461bcd60e51b815260206004820152600f60248201527f42616c616e6365206973207a65726f000000000000000000000000000000000060448201526064016108b2565b60125460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611d43573d6000803e3d6000fd5b506001600b55565b60606001805461079c9061378d565b73ffffffffffffffffffffffffffffffffffffffff8216331415611dc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b2565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e613383612499565b611ed35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108b2565b611edf8484848461296d565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611f7f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108b2565b6000611f896129f6565b90506000815111611fa95760405180602001604052806000815250611fd4565b80611fb384612a05565b604051602001611fc49291906138e4565b6040516020818303038152906040525b9392505050565b6002600b54141561202e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55600a5473ffffffffffffffffffffffffffffffffffffffff16331461209a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b600081116120ea5760405162461bcd60e51b815260206004820152601460248201527f717479206d75737420626520706f73697469766500000000000000000000000060448201526064016108b2565b6103e86120f6600c5490565b106121435760405162461bcd60e51b815260206004820152601660248201527f436f6c6c656374696f6e20697320736f6c64206f75740000000000000000000060448201526064016108b2565b6103e881612150600c5490565b61215a9190613856565b11156121a85760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f756768204e46547320617661696c61626c650000000000000060448201526064016108b2565b60005b81811015612211576121c1600c80546001019055565b6121d3336121ce600c5490565b612b37565b600c546040517f94242c431036b9ba6723a138d4b275a5b38e13a95ef66227a45df427c0f843f390600090a280612209816138ab565b9150506121ab565b50506001600b55565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146122815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b73ffffffffffffffffffffffffffffffffffffffff811661230a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b2565b612313816128f6565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806123a957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610731565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906124538261183f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166125305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108b2565b600061253b8361183f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125aa57508373ffffffffffffffffffffffffffffffffffffffff166125928461081f565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e7575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661260f8261183f565b73ffffffffffffffffffffffffffffffffffffffff16146126985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108b2565b73ffffffffffffffffffffffffffffffffffffffff82166127205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108b2565b61272b838383612b55565b6127366000826123f9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061276c908490613810565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906127a7908490613856565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61286e612839600d5490565b612844906001613856565b60009081526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16151590565b6128ba5760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f7420657869737473000000000000000000000060448201526064016108b2565b6128c8600d80546001019055565b6119fc6128d7610528600d5490565b336128e1600d5490565b6040518060200160405280600081525061296d565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6129788484846125ef565b61298484848484612c5b565b611edf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b60606011805461079c9061378d565b606081612a4557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a6f5780612a59816138ab565b9150612a689050600a83613942565b9150612a49565b60008167ffffffffffffffff811115612a8a57612a8a613521565b6040519080825280601f01601f191660200182016040528015612ab4576020820181803683370190505b5090505b84156125e757612ac9600183613810565b9150612ad6600a86613956565b612ae1906030613856565b60f81b818381518110612af657612af6613827565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b30600a86613942565b9450612ab8565b612b51828260405180602001604052806000815250612e40565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316612bbd57612bb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612bfa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfa57612bfa8382612ec9565b73ffffffffffffffffffffffffffffffffffffffff8216612c1e57610a3881612f80565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a3857610a38828261302f565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612e35576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612cd290339089908890889060040161396a565b602060405180830381600087803b158015612cec57600080fd5b505af1925050508015612d3a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d37918101906139b3565b60015b612dea573d808015612d68576040519150601f19603f3d011682016040523d82523d6000602084013e612d6d565b606091505b508051612de25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125e7565b506001949350505050565b612e4a8383613080565b612e576000848484612c5b565b610a385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b60006001612ed6846118d7565b612ee09190613810565b600083815260076020526040902054909150808214612f405773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090612f9290600190613810565b60008381526009602052604081205460088054939450909284908110612fba57612fba613827565b906000526020600020015490508060088381548110612fdb57612fdb613827565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613013576130136139d0565b6001900381819060005260206000200160009055905550505050565b600061303a836118d7565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff82166130e35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b2565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156131555760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b2565b61316160008383612b55565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613197908490613856565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546132269061378d565b90600052602060002090601f016020900481019282613248576000855561328e565b82601f1061326157805160ff191683800117855561328e565b8280016001018555821561328e579182015b8281111561328e578251825591602001919060010190613273565b5061329a92915061329e565b5090565b5b8082111561329a576000815560010161329f565b6000602082840312156132c557600080fd5b5035919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461231357600080fd5b60006020828403121561330c57600080fd5b8135611fd4816132cc565b60005b8381101561333257818101518382015260200161331a565b83811115611edf5750506000910152565b6000815180845261335b816020860160208601613317565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611fd46020830184613343565b803573ffffffffffffffffffffffffffffffffffffffff811681146133c457600080fd5b919050565b600080604083850312156133dc57600080fd5b6133e5836133a0565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b602081016003831061345d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561347857600080fd5b613481846133a0565b925061348f602085016133a0565b9150604084013590509250925092565b6000602082840312156134b157600080fd5b813560ff81168114611fd457600080fd5b6000602082840312156134d457600080fd5b611fd4826133a0565b60a0815260006134f060a0830188613343565b866020840152856040840152828103606084015261350e8186613343565b9150508260808301529695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561356b5761356b613521565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156135b1576135b1613521565b816040528093508581528686860111156135ca57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156135f657600080fd5b813567ffffffffffffffff81111561360d57600080fd5b8201601f8101841361361e57600080fd5b6125e784823560208401613550565b6000806020838503121561364057600080fd5b823567ffffffffffffffff8082111561365857600080fd5b818501915085601f83011261366c57600080fd5b81358181111561367b57600080fd5b8660208260051b850101111561369057600080fd5b60209290920196919550909350505050565b600080604083850312156136b557600080fd5b6136be836133a0565b9150602083013580151581146136d357600080fd5b809150509250929050565b600080600080608085870312156136f457600080fd5b6136fd856133a0565b935061370b602086016133a0565b925060408501359150606085013567ffffffffffffffff81111561372e57600080fd5b8501601f8101871361373f57600080fd5b61374e87823560208401613550565b91505092959194509250565b6000806040838503121561376d57600080fd5b613776836133a0565b9150613784602084016133a0565b90509250929050565b600181811c908216806137a157607f821691505b602082108114156137db577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613822576138226137e1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008219821115613869576138696137e1565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138a6576138a66137e1565b500290565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138dd576138dd6137e1565b5060010190565b600083516138f6818460208801613317565b83519083019061390a818360208801613317565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261395157613951613913565b500490565b60008261396557613965613913565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526139a96080830184613343565b9695505050505050565b6000602082840312156139c557600080fd5b8151611fd4816132cc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220af1699ee3fbfbb1494efb3c6e52a1a2b30ac81f354fa17f97de432adf8fbc05564736f6c6343000809003368747470733a2f2f636c61696d2e617065787072656461746f72736e66742e636f6d2f6170692f6d657461646174612f

Deployed Bytecode

0x60806040526004361061024e5760003560e01c80634f6ccce7116101385780638d859f3e116100b0578063b88d4fde1161007f578063e985e9c511610064578063e985e9c514610673578063f19e75d4146106c9578063f2fde38b146106e957600080fd5b8063b88d4fde14610633578063c87b56dd1461065357600080fd5b80638d859f3e146105b75780638da5cb5b146105d357806395d89b41146105fe578063a22cb4651461061357600080fd5b806370a08231116101075780637204a3c9116100ec5780637204a3c9146105785780637a177de914610598578063853828b6146105af57600080fd5b806370a0823114610543578063715018a61461056357600080fd5b80634f6ccce7146104cd57806355f804b3146104ed5780636352211e1461050d57806369ff2d111461052d57600080fd5b806323b872dd116101cb578063379607f51161019a57806342842e0e1161017f57806342842e0e1461045a5780634a9a8aa81461047a5780634e69d560146104a757600080fd5b8063379607f5146104275780633ab1a4941461043a57600080fd5b806323b872dd146103b25780632e49d78b146103d25780632f745c59146103f25780632fd9696a1461041257600080fd5b8063095ea7b31161022257806318160ddd1161020757806318160ddd14610356578063200d2ed21461036b578063223657701461039257600080fd5b8063095ea7b31461030f5780630a8260f91461033157600080fd5b8062923f9e1461025357806301ffc9a71461028857806306fdde03146102a8578063081812fc146102ca575b600080fd5b34801561025f57600080fd5b5061027361026e3660046132b3565b610709565b60405190151581526020015b60405180910390f35b34801561029457600080fd5b506102736102a33660046132fa565b610737565b3480156102b457600080fd5b506102bd61078d565b60405161027f919061338d565b3480156102d657600080fd5b506102ea6102e53660046132b3565b61081f565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161027f565b34801561031b57600080fd5b5061032f61032a3660046133c9565b6108e4565b005b34801561033d57600080fd5b50600c546103489081565b60405190815260200161027f565b34801561036257600080fd5b50600854610348565b34801561037757600080fd5b50600e546103859060ff1681565b60405161027f9190613422565b34801561039e57600080fd5b506103486103ad3660046132b3565b610a3d565b3480156103be57600080fd5b5061032f6103cd366004613463565b610a54565b3480156103de57600080fd5b5061032f6103ed36600461349f565b610adb565b3480156103fe57600080fd5b5061034861040d3660046133c9565b610c4a565b34801561041e57600080fd5b50610348610cff565b61032f6104353660046132b3565b610d1c565b34801561044657600080fd5b5061032f6104553660046134c2565b61119c565b34801561046657600080fd5b5061032f610475366004613463565b611276565b34801561048657600080fd5b506012546102ea9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104b357600080fd5b506104bc611291565b60405161027f9594939291906134dd565b3480156104d957600080fd5b506103486104e83660046132b3565b6116f1565b3480156104f957600080fd5b5061032f6105083660046135e4565b611795565b34801561051957600080fd5b506102ea6105283660046132b3565b61183f565b34801561053957600080fd5b506103486103e881565b34801561054f57600080fd5b5061034861055e3660046134c2565b6118d7565b34801561056f57600080fd5b5061032f61198b565b34801561058457600080fd5b5061032f61059336600461362d565b6119fe565b3480156105a457600080fd5b50600d546103489081565b61032f611bf1565b3480156105c357600080fd5b50610348670de0b6b3a764000081565b3480156105df57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166102ea565b34801561060a57600080fd5b506102bd611d4b565b34801561061f57600080fd5b5061032f61062e3660046136a2565b611d5a565b34801561063f57600080fd5b5061032f61064e3660046136de565b611e57565b34801561065f57600080fd5b506102bd61066e3660046132b3565b611ee5565b34801561067f57600080fd5b5061027361068e36600461375a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106d557600080fd5b5061032f6106e43660046132b3565b611fdb565b3480156106f557600080fd5b5061032f6107043660046134c2565b61221a565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610731575061073182612316565b60606000805461079c9061378d565b80601f01602080910402602001604051908101604052809291908181526020018280546107c89061378d565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166108bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108ef8261183f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109935760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108b2565b3373ffffffffffffffffffffffffffffffffffffffff821614806109bc57506109bc813361068e565b610a2e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108b2565b610a3883836123f9565b505050565b60138160038110610a4d57600080fd5b0154905081565b610a5e3382612499565b610ad05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108b2565b610a388383836125ef565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b60028160ff161115610bbc5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f642032000000000000000000000000000000000000000000000000000000000060648201526084016108b2565b8060ff166002811115610bd157610bd16133f3565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836002811115610c0b57610c0b6133f3565b021790555060405160ff821681527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a678906020015b60405180910390a150565b6000610c55836118d7565b8210610cc95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108b2565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b6000610d0a600d5490565b600c54610d179190613810565b905090565b6002600b541415610d6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55806000600e5460ff166002811115610d8e57610d8e6133f3565b1415610ddc5760405162461bcd60e51b815260206004820152601160248201527f4d696e74696e6720697320636c6f73656400000000000000000000000000000060448201526064016108b2565b60008111610e525760405162461bcd60e51b815260206004820152602560248201527f4e46547320616d6f756e74206d7573742062652067726561746572207468616e60448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016108b2565b600e5460139060ff166002811115610e6c57610e6c6133f3565b60038110610e7c57610e7c613827565b0154811115610ef35760405162461bcd60e51b815260206004820152602860248201527f457863656564656420746865206d617820616d6f756e74206f6620636c61696d60448201527f61626c65204e465400000000000000000000000000000000000000000000000060648201526084016108b2565b600c54600d5410610f465760405162461bcd60e51b815260206004820152601660248201527f436f6c6c656374696f6e20697320736f6c64206f75740000000000000000000060448201526064016108b2565b600c5481610f53600d5490565b610f5d9190613856565b1115610fab5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f756768204e46547320617661696c61626c650000000000000060448201526064016108b2565b610fbd81670de0b6b3a764000061386e565b341461100b5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016108b2565b6001600e5460ff166002811115611024576110246133f3565b141561116d573360009081526016602052604090205460ff16151560011461108e5760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420696e207468652070726573616c65206c6973740060448201526064016108b2565b600e5460139060ff1660028111156110a8576110a86133f3565b600381106110b8576110b8613827565b0154336000908152601760205260409020546110d5908490613856565b11156111485760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f756768204e46547320617661696c61626c6520696e2070726560448201527f73616c650000000000000000000000000000000000000000000000000000000060648201526084016108b2565b3360009081526017602052604081208054849290611167908490613856565b90915550505b60005b828110156111925761118061282d565b8061118a816138ab565b915050611170565b50506001600b5550565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f1354e0220161b341b2ddfc335d39df48515b1301300ca981a001862338c0e9f690602001610c3f565b610a3883838360405180602001604052806000815250611e57565b606060008060606000806112a3610cff565b90508061132d57505060408051808201825260088082527f534f4c44204f555400000000000000000000000000000000000000000000000060208084019190915283518085019094529083527f536f6c64206f757400000000000000000000000000000000000000000000000090830152945060009350670de0b6b3a764000092509050826116ea565b6000600e5460ff166002811115611346576113466133f3565b14156113f957600e5460139060ff166002811115611366576113666133f3565b6003811061137657611376613827565b0154604080518082018252600681527f434c4f53454400000000000000000000000000000000000000000000000000006020808301919091528251808401909352601183527f4d696e74696e6720697320636c6f736564000000000000000000000000000000908301529750909550670de0b6b3a76400009450925090506116ea565b6001600e5460ff166002811115611412576114126133f3565b1415611641573360009081526016602052604090205460ff161515600114156115bf57600e5460139060ff16600281111561144f5761144f6133f3565b6003811061145f5761145f613827565b015433600090815260176020526040902054101561153e5733600090815260176020526040902054600e5460139060ff1660028111156114a1576114a16133f3565b600381106114b1576114b1613827565b01546114bd9190613810565b604080518082018252600781527f50524553414c45000000000000000000000000000000000000000000000000006020808301919091528251808401909352601283527f596f752061726520696e2070726573616c650000000000000000000000000000908301529750909550670de0b6b3a76400009450925090506116ea565b604080518082018252600781527f50524553414c450000000000000000000000000000000000000000000000000060208083019190915282518084019093528083527f596f7520616c726561647920636c61696d656420796f75722070726573616c6590830152965060009550670de0b6b3a76400009450925090506116ea565b604080518082018252600781527f50524553414c45000000000000000000000000000000000000000000000000006020808301919091528251808401909352601683527f596f7520617265206e6f7420696e2070726573616c650000000000000000000090830152965060009550670de0b6b3a76400009450925090506116ea565b600e5460139060ff16600281111561165b5761165b6133f3565b6003811061166b5761166b613827565b0154604080518082018252600681527f5055424c494300000000000000000000000000000000000000000000000000006020808301919091528251808401909352600b83527f5075626c69632073616c65000000000000000000000000000000000000000000908301529750909550670de0b6b3a76400009450925090505b9091929394565b60006116fc60085490565b82106117705760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108b2565b6008828154811061178357611783613827565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b805161180f90601190602084019061321a565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610c3f919061338d565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806107315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108b2565b600073ffffffffffffffffffffffffffffffffffffffff82166119625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108b2565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b6119fc60006128f6565b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611a655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b80611ab25760405162461bcd60e51b815260206004820152600d60248201527f4c69737420697320656d7074790000000000000000000000000000000000000060448201526064016108b2565b60005b81811015610a385760166000848484818110611ad357611ad3613827565b9050602002016020810190611ae891906134c2565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff1615611b5f5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920696e2070726573616c65206c69737400000000000000000060448201526064016108b2565b600160166000858585818110611b7757611b77613827565b9050602002016020810190611b8c91906134c2565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580611be9816138ab565b915050611ab5565b6002600b541415611c445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55600a5473ffffffffffffffffffffffffffffffffffffffff163314611cb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b47611cfd5760405162461bcd60e51b815260206004820152600f60248201527f42616c616e6365206973207a65726f000000000000000000000000000000000060448201526064016108b2565b60125460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611d43573d6000803e3d6000fd5b506001600b55565b60606001805461079c9061378d565b73ffffffffffffffffffffffffffffffffffffffff8216331415611dc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108b2565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e613383612499565b611ed35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108b2565b611edf8484848461296d565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611f7f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108b2565b6000611f896129f6565b90506000815111611fa95760405180602001604052806000815250611fd4565b80611fb384612a05565b604051602001611fc49291906138e4565b6040516020818303038152906040525b9392505050565b6002600b54141561202e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b2565b6002600b55600a5473ffffffffffffffffffffffffffffffffffffffff16331461209a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b600081116120ea5760405162461bcd60e51b815260206004820152601460248201527f717479206d75737420626520706f73697469766500000000000000000000000060448201526064016108b2565b6103e86120f6600c5490565b106121435760405162461bcd60e51b815260206004820152601660248201527f436f6c6c656374696f6e20697320736f6c64206f75740000000000000000000060448201526064016108b2565b6103e881612150600c5490565b61215a9190613856565b11156121a85760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f756768204e46547320617661696c61626c650000000000000060448201526064016108b2565b60005b81811015612211576121c1600c80546001019055565b6121d3336121ce600c5490565b612b37565b600c546040517f94242c431036b9ba6723a138d4b275a5b38e13a95ef66227a45df427c0f843f390600090a280612209816138ab565b9150506121ab565b50506001600b55565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146122815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108b2565b73ffffffffffffffffffffffffffffffffffffffff811661230a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108b2565b612313816128f6565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806123a957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610731565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906124538261183f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff166125305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108b2565b600061253b8361183f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125aa57508373ffffffffffffffffffffffffffffffffffffffff166125928461081f565b73ffffffffffffffffffffffffffffffffffffffff16145b806125e7575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661260f8261183f565b73ffffffffffffffffffffffffffffffffffffffff16146126985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108b2565b73ffffffffffffffffffffffffffffffffffffffff82166127205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108b2565b61272b838383612b55565b6127366000826123f9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080546001929061276c908490613810565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906127a7908490613856565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61286e612839600d5490565b612844906001613856565b60009081526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16151590565b6128ba5760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20646f6573206e6f7420657869737473000000000000000000000060448201526064016108b2565b6128c8600d80546001019055565b6119fc6128d7610528600d5490565b336128e1600d5490565b6040518060200160405280600081525061296d565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6129788484846125ef565b61298484848484612c5b565b611edf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b60606011805461079c9061378d565b606081612a4557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612a6f5780612a59816138ab565b9150612a689050600a83613942565b9150612a49565b60008167ffffffffffffffff811115612a8a57612a8a613521565b6040519080825280601f01601f191660200182016040528015612ab4576020820181803683370190505b5090505b84156125e757612ac9600183613810565b9150612ad6600a86613956565b612ae1906030613856565b60f81b818381518110612af657612af6613827565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612b30600a86613942565b9450612ab8565b612b51828260405180602001604052806000815250612e40565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316612bbd57612bb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612bfa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfa57612bfa8382612ec9565b73ffffffffffffffffffffffffffffffffffffffff8216612c1e57610a3881612f80565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a3857610a38828261302f565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612e35576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612cd290339089908890889060040161396a565b602060405180830381600087803b158015612cec57600080fd5b505af1925050508015612d3a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612d37918101906139b3565b60015b612dea573d808015612d68576040519150601f19603f3d011682016040523d82523d6000602084013e612d6d565b606091505b508051612de25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506125e7565b506001949350505050565b612e4a8383613080565b612e576000848484612c5b565b610a385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108b2565b60006001612ed6846118d7565b612ee09190613810565b600083815260076020526040902054909150808214612f405773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090612f9290600190613810565b60008381526009602052604081205460088054939450909284908110612fba57612fba613827565b906000526020600020015490508060088381548110612fdb57612fdb613827565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480613013576130136139d0565b6001900381819060005260206000200160009055905550505050565b600061303a836118d7565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff82166130e35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108b2565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156131555760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108b2565b61316160008383612b55565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613197908490613856565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546132269061378d565b90600052602060002090601f016020900481019282613248576000855561328e565b82601f1061326157805160ff191683800117855561328e565b8280016001018555821561328e579182015b8281111561328e578251825591602001919060010190613273565b5061329a92915061329e565b5090565b5b8082111561329a576000815560010161329f565b6000602082840312156132c557600080fd5b5035919050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461231357600080fd5b60006020828403121561330c57600080fd5b8135611fd4816132cc565b60005b8381101561333257818101518382015260200161331a565b83811115611edf5750506000910152565b6000815180845261335b816020860160208601613317565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611fd46020830184613343565b803573ffffffffffffffffffffffffffffffffffffffff811681146133c457600080fd5b919050565b600080604083850312156133dc57600080fd5b6133e5836133a0565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b602081016003831061345d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561347857600080fd5b613481846133a0565b925061348f602085016133a0565b9150604084013590509250925092565b6000602082840312156134b157600080fd5b813560ff81168114611fd457600080fd5b6000602082840312156134d457600080fd5b611fd4826133a0565b60a0815260006134f060a0830188613343565b866020840152856040840152828103606084015261350e8186613343565b9150508260808301529695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561356b5761356b613521565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156135b1576135b1613521565b816040528093508581528686860111156135ca57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156135f657600080fd5b813567ffffffffffffffff81111561360d57600080fd5b8201601f8101841361361e57600080fd5b6125e784823560208401613550565b6000806020838503121561364057600080fd5b823567ffffffffffffffff8082111561365857600080fd5b818501915085601f83011261366c57600080fd5b81358181111561367b57600080fd5b8660208260051b850101111561369057600080fd5b60209290920196919550909350505050565b600080604083850312156136b557600080fd5b6136be836133a0565b9150602083013580151581146136d357600080fd5b809150509250929050565b600080600080608085870312156136f457600080fd5b6136fd856133a0565b935061370b602086016133a0565b925060408501359150606085013567ffffffffffffffff81111561372e57600080fd5b8501601f8101871361373f57600080fd5b61374e87823560208401613550565b91505092959194509250565b6000806040838503121561376d57600080fd5b613776836133a0565b9150613784602084016133a0565b90509250929050565b600181811c908216806137a157607f821691505b602082108114156137db577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613822576138226137e1565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008219821115613869576138696137e1565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138a6576138a66137e1565b500290565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138dd576138dd6137e1565b5060010190565b600083516138f6818460208801613317565b83519083019061390a818360208801613317565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261395157613951613913565b500490565b60008261396557613965613913565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526139a96080830184613343565b9695505050505050565b6000602082840312156139c557600080fd5b8151611fd4816132cc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220af1699ee3fbfbb1494efb3c6e52a1a2b30ac81f354fa17f97de432adf8fbc05564736f6c63430008090033

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.