ETH Price: $3,391.31 (-1.61%)
Gas: 1 Gwei

Token

Just a Friend (fren)
 

Overview

Max Total Supply

5,613 fren

Holders

685

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 fren
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
JustAFriend

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-07
*/

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

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
  

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

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

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

contract JustAFriend is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0 ether;
    uint256 public MAX_SUPPLY = 5555;
    uint256 public MAX_MINTS = 275;
    string public baseURI = "ipfs://QmcQYXYhsHzdZC8uCXw2mkv5ki6BVXszu5sQwyAC7A4LhV/";
    string public baseExtension = "";
     bool public paused = true;   
    
    constructor() ERC721A("Just a Friend", "fren", MAX_MINTS, MAX_SUPPLY) {  
        _safeMint(_msgSender(), 1);
    }
    

    function FreeMint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens <= 4 && numTokens >0);
        _safeMint(msg.sender, numTokens);
    }

    function ArtisttMint(uint256 numTokens) public payable onlyOwner {
        _safeMint(msg.sender, numTokens);
    }


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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

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

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":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":"numTokens","type":"uint256"}],"name":"ArtisttMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

600080805560078190556009556115b3600a55610113600b55610120604052603660c081815290620028fa60e03980516200004391600c9160209091019062000683565b506040805160208101918290526000908190526200006491600d9162000683565b50600e805460ff191660011790553480156200007f57600080fd5b506040518060400160405280600d81526020016c129d5cdd081848119c9a595b99609a1b81525060405180604001604052806004815260200163333932b760e11b815250600b54600a5460008111620001365760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001985760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200012d565b8351620001ad90600190602087019062000683565b508251620001c390600290602086019062000683565b5060a09190915260805250620001db905033620001ee565b620001e833600162000240565b62000876565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002628282604051806020016040528060008152506200026660201b60201c565b5050565b6000546001600160a01b038416620002cb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016200012d565b620002d7816000541190565b15620003265760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016200012d565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819062000384908790620007d7565b6001600160801b03168152602001858360200151620003a49190620007d7565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005085760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46200048a600088848862000513565b620004e35760405162461bcd60e51b815260206004820152603360248201526000805160206200293083398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200012d565b81620004ef8162000842565b9250508080620004ff9062000842565b9150506200043a565b506000555050505050565b600062000534846001600160a01b03166200067d60201b62000ef21760201c565b156200067157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200056e9033908990889088906004016200075c565b602060405180830381600087803b1580156200058957600080fd5b505af1925050508015620005bc575060408051601f3d908101601f19168201909252620005b99181019062000729565b60015b62000656573d808015620005ed576040519150601f19603f3d011682016040523d82523d6000602084013e620005f2565b606091505b5080516200064e5760405162461bcd60e51b815260206004820152603360248201526000805160206200293083398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200012d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000675565b5060015b949350505050565b3b151590565b828054620006919062000805565b90600052602060002090601f016020900481019282620006b5576000855562000700565b82601f10620006d057805160ff191683800117855562000700565b8280016001018555821562000700579182015b8281111562000700578251825591602001919060010190620006e3565b506200070e92915062000712565b5090565b5b808211156200070e576000815560010162000713565b6000602082840312156200073c57600080fd5b81516001600160e01b0319811681146200075557600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007ab5785810182015185820160a0015281016200078d565b82811115620007be57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60006001600160801b03828116848216808303821115620007fc57620007fc62000860565b01949350505050565b600181811c908216806200081a57607f821691505b602082108114156200083c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000859576200085962000860565b5060010190565b634e487b7160e01b600052601160045260246000fd5b60805160a05161205a620008a06000396000818161137801526113a201526000505061205a6000f3fe6080604052600436106101cd5760003560e01c8063676dd563116100f7578063b88d4fde11610095578063cce132d111610064578063cce132d1146104e0578063d7224ba0146104f6578063e985e9c51461050c578063f2fde38b1461055557600080fd5b8063b88d4fde14610478578063bdfaa08414610498578063c6682862146104ab578063c87b56dd146104c057600080fd5b8063715018a6116100d1578063715018a6146104105780638da5cb5b1461042557806395d89b4114610443578063a22cb4651461045857600080fd5b8063676dd563146103c55780636c0360eb146103db57806370a08231146103f057600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103585780635c975abb1461037857806362569bb2146103925780636352211e146103a557600080fd5b80632f745c59146102e257806332cb6b0c1461030257806342842e0e146103185780634f6ccce71461033857600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611c0c565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611bf1565b6105e2565b005b34801561023557600080fd5b5061023e610628565b6040516101fe9190611dde565b34801561025757600080fd5b5061026b610266366004611c8f565b6106ba565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611bc7565b610745565b3480156102af57600080fd5b506000545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004611ae5565b61085d565b3480156102ee57600080fd5b506102b46102fd366004611bc7565b610868565b34801561030e57600080fd5b506102b4600a5481565b34801561032457600080fd5b50610227610333366004611ae5565b6109d6565b34801561034457600080fd5b506102b4610353366004611c8f565b6109f1565b34801561036457600080fd5b50610227610373366004611c46565b610a53565b34801561038457600080fd5b50600e546101f29060ff1681565b6102276103a0366004611c8f565b610a94565b3480156103b157600080fd5b5061026b6103c0366004611c8f565b610acb565b3480156103d157600080fd5b506102b460095481565b3480156103e757600080fd5b5061023e610add565b3480156103fc57600080fd5b506102b461040b366004611a90565b610b6b565b34801561041c57600080fd5b50610227610bfc565b34801561043157600080fd5b506008546001600160a01b031661026b565b34801561044f57600080fd5b5061023e610c32565b34801561046457600080fd5b50610227610473366004611b9d565b610c41565b34801561048457600080fd5b50610227610493366004611b21565b610d06565b6102276104a6366004611c8f565b610d3f565b3480156104b757600080fd5b5061023e610d95565b3480156104cc57600080fd5b5061023e6104db366004611c8f565b610da2565b3480156104ec57600080fd5b506102b4600b5481565b34801561050257600080fd5b506102b460075481565b34801561051857600080fd5b506101f2610527366004611ab2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50610227610570366004611a90565b610e5a565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506001600160e01b0319821663780e9d6360e01b145b806105dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106155760405162461bcd60e51b815260040161060c90611df1565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461063790611f4c565b80601f016020809104026020016040519081016040528092919081815260200182805461066390611f4c565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b60006106c7826000541190565b6107295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161060c565b506000908152600560205260409020546001600160a01b031690565b600061075082610acb565b9050806001600160a01b0316836001600160a01b031614156107bf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161060c565b336001600160a01b03821614806107db57506107db8133610527565b61084d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161060c565b610858838383610ef8565b505050565b610858838383610f54565b600061087383610b6b565b82106108cc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161060c565b600080549080805b83811015610976576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561092757805192505b876001600160a01b0316836001600160a01b031614156109635786841415610955575093506105dc92505050565b8361095f81611f87565b9450505b508061096e81611f87565b9150506108d4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161060c565b61085883838360405180602001604052806000815250610d06565b600080548210610a4f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161060c565b5090565b6008546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161060c90611df1565b8051610a9090600c90602084019061195e565b5050565b6008546001600160a01b03163314610abe5760405162461bcd60e51b815260040161060c90611df1565b610ac833826112dc565b50565b6000610ad6826112f6565b5192915050565b600c8054610aea90611f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690611f4c565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b505050505081565b60006001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161060c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c265760405162461bcd60e51b815260040161060c90611df1565b610c3060006114a0565b565b60606002805461063790611f4c565b6001600160a01b038216331415610c9a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161060c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d11848484610f54565b610d1d848484846114f2565b610d395760405162461bcd60e51b815260040161060c90611e20565b50505050565b600e5460ff1615610d7b5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161060c565b60048111158015610d8c5750600081115b610abe57600080fd5b600d8054610aea90611f4c565b6060610daf826000541190565b610dfb5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e27742065786973740000000000000000604482015260640161060c565b6000600c8054610e0a90611f4c565b905011610e2657604051806020016040528060008152506105dc565b600c610e3183611600565b600d604051602001610e4593929190611d6e565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e845760405162461bcd60e51b815260040161060c90611df1565b6001600160a01b038116610ee95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b610ac8816114a0565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f5f826112f6565b80519091506000906001600160a01b0316336001600160a01b03161480610f96575033610f8b846106ba565b6001600160a01b0316145b80610fa857508151610fa89033610527565b9050806110125760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161060c565b846001600160a01b031682600001516001600160a01b0316146110865760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161060c565b6001600160a01b0384166110ea5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6110fa6000848460000151610ef8565b6001600160a01b038516600090815260046020526040812080546001929061112c9084906001600160801b0316611eca565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261117891859116611e73565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611200846001611e9e565b6000818152600360205260409020549091506001600160a01b03166112925761122a816000541190565b156112925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a908282604051806020016040528060008152506116fe565b6040805180820190915260008082526020820152611315826000541190565b6113745760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161060c565b60007f000000000000000000000000000000000000000000000000000000000000000083106113d5576113c77f000000000000000000000000000000000000000000000000000000000000000084611ef2565b6113d2906001611e9e565b90505b825b81811061143f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561142c57949350505050565b508061143781611f35565b9150506113d7565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161060c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115f457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401611da1565b602060405180830381600087803b15801561155057600080fd5b505af1925050508015611580575060408051601f3d908101601f1916820190925261157d91810190611c29565b60015b6115da573d8080156115ae576040519150601f19603f3d011682016040523d82523d6000602084013e6115b3565b606091505b5080516115d25760405162461bcd60e51b815260040161060c90611e20565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f8565b5060015b949350505050565b6060816116245750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164e578061163881611f87565b91506116479050600a83611eb6565b9150611628565b60008167ffffffffffffffff81111561166957611669611ff8565b6040519080825280601f01601f191660200182016040528015611693576020820181803683370190505b5090505b84156115f8576116a8600183611ef2565b91506116b5600a86611fa2565b6116c0906030611e9e565b60f81b8183815181106116d5576116d5611fe2565b60200101906001600160f81b031916908160001a9053506116f7600a86611eb6565b9450611697565b6000546001600160a01b0384166117615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161060c565b61176c816000541190565b156117b95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161060c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611815908790611e73565b6001600160801b031681526020018583602001516118339190611e73565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156119535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461191760008884886114f2565b6119335760405162461bcd60e51b815260040161060c90611e20565b8161193d81611f87565b925050808061194b90611f87565b9150506118ca565b5060008190556112d4565b82805461196a90611f4c565b90600052602060002090601f01602090048101928261198c57600085556119d2565b82601f106119a557805160ff19168380011785556119d2565b828001600101855582156119d2579182015b828111156119d25782518255916020019190600101906119b7565b50610a4f9291505b80821115610a4f57600081556001016119da565b600067ffffffffffffffff80841115611a0957611a09611ff8565b604051601f8501601f19908116603f01168101908282118183101715611a3157611a31611ff8565b81604052809350858152868686011115611a4a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7b57600080fd5b919050565b80358015158114611a7b57600080fd5b600060208284031215611aa257600080fd5b611aab82611a64565b9392505050565b60008060408385031215611ac557600080fd5b611ace83611a64565b9150611adc60208401611a64565b90509250929050565b600080600060608486031215611afa57600080fd5b611b0384611a64565b9250611b1160208501611a64565b9150604084013590509250925092565b60008060008060808587031215611b3757600080fd5b611b4085611a64565b9350611b4e60208601611a64565b925060408501359150606085013567ffffffffffffffff811115611b7157600080fd5b8501601f81018713611b8257600080fd5b611b91878235602084016119ee565b91505092959194509250565b60008060408385031215611bb057600080fd5b611bb983611a64565b9150611adc60208401611a80565b60008060408385031215611bda57600080fd5b611be383611a64565b946020939093013593505050565b600060208284031215611c0357600080fd5b611aab82611a80565b600060208284031215611c1e57600080fd5b8135611aab8161200e565b600060208284031215611c3b57600080fd5b8151611aab8161200e565b600060208284031215611c5857600080fd5b813567ffffffffffffffff811115611c6f57600080fd5b8201601f81018413611c8057600080fd5b6115f8848235602084016119ee565b600060208284031215611ca157600080fd5b5035919050565b60008151808452611cc0816020860160208601611f09565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611cee57607f831692505b6020808410821415611d1057634e487b7160e01b600052602260045260246000fd5b818015611d245760018114611d3557611d62565b60ff19861689528489019650611d62565b60008881526020902060005b86811015611d5a5781548b820152908501908301611d41565b505084890196505b50505050505092915050565b6000611d7a8286611cd4565b8451611d8a818360208901611f09565b611d9681830186611cd4565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dd490830184611ca8565b9695505050505050565b602081526000611aab6020830184611ca8565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611e9557611e95611fb6565b01949350505050565b60008219821115611eb157611eb1611fb6565b500190565b600082611ec557611ec5611fcc565b500490565b60006001600160801b0383811690831681811015611eea57611eea611fb6565b039392505050565b600082821015611f0457611f04611fb6565b500390565b60005b83811015611f24578181015183820152602001611f0c565b83811115610d395750506000910152565b600081611f4457611f44611fb6565b506000190190565b600181811c90821680611f6057607f821691505b60208210811415611f8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9b57611f9b611fb6565b5060010190565b600082611fb157611fb1611fcc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ac857600080fdfea2646970667358221220ea604358ef912327d9b7be9fb3a13deceae8f02b4a92173963ae200a1382551464736f6c63430008070033697066733a2f2f516d63515958596873487a645a433875435877326d6b76356b6936425658737a75357351777941433741344c68562f455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063676dd563116100f7578063b88d4fde11610095578063cce132d111610064578063cce132d1146104e0578063d7224ba0146104f6578063e985e9c51461050c578063f2fde38b1461055557600080fd5b8063b88d4fde14610478578063bdfaa08414610498578063c6682862146104ab578063c87b56dd146104c057600080fd5b8063715018a6116100d1578063715018a6146104105780638da5cb5b1461042557806395d89b4114610443578063a22cb4651461045857600080fd5b8063676dd563146103c55780636c0360eb146103db57806370a08231146103f057600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103585780635c975abb1461037857806362569bb2146103925780636352211e146103a557600080fd5b80632f745c59146102e257806332cb6b0c1461030257806342842e0e146103185780634f6ccce71461033857600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611c0c565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611bf1565b6105e2565b005b34801561023557600080fd5b5061023e610628565b6040516101fe9190611dde565b34801561025757600080fd5b5061026b610266366004611c8f565b6106ba565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611bc7565b610745565b3480156102af57600080fd5b506000545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004611ae5565b61085d565b3480156102ee57600080fd5b506102b46102fd366004611bc7565b610868565b34801561030e57600080fd5b506102b4600a5481565b34801561032457600080fd5b50610227610333366004611ae5565b6109d6565b34801561034457600080fd5b506102b4610353366004611c8f565b6109f1565b34801561036457600080fd5b50610227610373366004611c46565b610a53565b34801561038457600080fd5b50600e546101f29060ff1681565b6102276103a0366004611c8f565b610a94565b3480156103b157600080fd5b5061026b6103c0366004611c8f565b610acb565b3480156103d157600080fd5b506102b460095481565b3480156103e757600080fd5b5061023e610add565b3480156103fc57600080fd5b506102b461040b366004611a90565b610b6b565b34801561041c57600080fd5b50610227610bfc565b34801561043157600080fd5b506008546001600160a01b031661026b565b34801561044f57600080fd5b5061023e610c32565b34801561046457600080fd5b50610227610473366004611b9d565b610c41565b34801561048457600080fd5b50610227610493366004611b21565b610d06565b6102276104a6366004611c8f565b610d3f565b3480156104b757600080fd5b5061023e610d95565b3480156104cc57600080fd5b5061023e6104db366004611c8f565b610da2565b3480156104ec57600080fd5b506102b4600b5481565b34801561050257600080fd5b506102b460075481565b34801561051857600080fd5b506101f2610527366004611ab2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50610227610570366004611a90565b610e5a565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506001600160e01b0319821663780e9d6360e01b145b806105dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106155760405162461bcd60e51b815260040161060c90611df1565b60405180910390fd5b600e805460ff1916911515919091179055565b60606001805461063790611f4c565b80601f016020809104026020016040519081016040528092919081815260200182805461066390611f4c565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b60006106c7826000541190565b6107295760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161060c565b506000908152600560205260409020546001600160a01b031690565b600061075082610acb565b9050806001600160a01b0316836001600160a01b031614156107bf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161060c565b336001600160a01b03821614806107db57506107db8133610527565b61084d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161060c565b610858838383610ef8565b505050565b610858838383610f54565b600061087383610b6b565b82106108cc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161060c565b600080549080805b83811015610976576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561092757805192505b876001600160a01b0316836001600160a01b031614156109635786841415610955575093506105dc92505050565b8361095f81611f87565b9450505b508061096e81611f87565b9150506108d4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161060c565b61085883838360405180602001604052806000815250610d06565b600080548210610a4f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161060c565b5090565b6008546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161060c90611df1565b8051610a9090600c90602084019061195e565b5050565b6008546001600160a01b03163314610abe5760405162461bcd60e51b815260040161060c90611df1565b610ac833826112dc565b50565b6000610ad6826112f6565b5192915050565b600c8054610aea90611f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690611f4c565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b505050505081565b60006001600160a01b038216610bd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161060c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c265760405162461bcd60e51b815260040161060c90611df1565b610c3060006114a0565b565b60606002805461063790611f4c565b6001600160a01b038216331415610c9a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161060c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d11848484610f54565b610d1d848484846114f2565b610d395760405162461bcd60e51b815260040161060c90611e20565b50505050565b600e5460ff1615610d7b5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b604482015260640161060c565b60048111158015610d8c5750600081115b610abe57600080fd5b600d8054610aea90611f4c565b6060610daf826000541190565b610dfb5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e27742065786973740000000000000000604482015260640161060c565b6000600c8054610e0a90611f4c565b905011610e2657604051806020016040528060008152506105dc565b600c610e3183611600565b600d604051602001610e4593929190611d6e565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e845760405162461bcd60e51b815260040161060c90611df1565b6001600160a01b038116610ee95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060c565b610ac8816114a0565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f5f826112f6565b80519091506000906001600160a01b0316336001600160a01b03161480610f96575033610f8b846106ba565b6001600160a01b0316145b80610fa857508151610fa89033610527565b9050806110125760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161060c565b846001600160a01b031682600001516001600160a01b0316146110865760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161060c565b6001600160a01b0384166110ea5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161060c565b6110fa6000848460000151610ef8565b6001600160a01b038516600090815260046020526040812080546001929061112c9084906001600160801b0316611eca565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261117891859116611e73565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611200846001611e9e565b6000818152600360205260409020549091506001600160a01b03166112925761122a816000541190565b156112925760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a908282604051806020016040528060008152506116fe565b6040805180820190915260008082526020820152611315826000541190565b6113745760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161060c565b60007f000000000000000000000000000000000000000000000000000000000000011383106113d5576113c77f000000000000000000000000000000000000000000000000000000000000011384611ef2565b6113d2906001611e9e565b90505b825b81811061143f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561142c57949350505050565b508061143781611f35565b9150506113d7565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161060c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115f457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401611da1565b602060405180830381600087803b15801561155057600080fd5b505af1925050508015611580575060408051601f3d908101601f1916820190925261157d91810190611c29565b60015b6115da573d8080156115ae576040519150601f19603f3d011682016040523d82523d6000602084013e6115b3565b606091505b5080516115d25760405162461bcd60e51b815260040161060c90611e20565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f8565b5060015b949350505050565b6060816116245750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164e578061163881611f87565b91506116479050600a83611eb6565b9150611628565b60008167ffffffffffffffff81111561166957611669611ff8565b6040519080825280601f01601f191660200182016040528015611693576020820181803683370190505b5090505b84156115f8576116a8600183611ef2565b91506116b5600a86611fa2565b6116c0906030611e9e565b60f81b8183815181106116d5576116d5611fe2565b60200101906001600160f81b031916908160001a9053506116f7600a86611eb6565b9450611697565b6000546001600160a01b0384166117615760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161060c565b61176c816000541190565b156117b95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161060c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611815908790611e73565b6001600160801b031681526020018583602001516118339190611e73565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156119535760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461191760008884886114f2565b6119335760405162461bcd60e51b815260040161060c90611e20565b8161193d81611f87565b925050808061194b90611f87565b9150506118ca565b5060008190556112d4565b82805461196a90611f4c565b90600052602060002090601f01602090048101928261198c57600085556119d2565b82601f106119a557805160ff19168380011785556119d2565b828001600101855582156119d2579182015b828111156119d25782518255916020019190600101906119b7565b50610a4f9291505b80821115610a4f57600081556001016119da565b600067ffffffffffffffff80841115611a0957611a09611ff8565b604051601f8501601f19908116603f01168101908282118183101715611a3157611a31611ff8565b81604052809350858152868686011115611a4a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7b57600080fd5b919050565b80358015158114611a7b57600080fd5b600060208284031215611aa257600080fd5b611aab82611a64565b9392505050565b60008060408385031215611ac557600080fd5b611ace83611a64565b9150611adc60208401611a64565b90509250929050565b600080600060608486031215611afa57600080fd5b611b0384611a64565b9250611b1160208501611a64565b9150604084013590509250925092565b60008060008060808587031215611b3757600080fd5b611b4085611a64565b9350611b4e60208601611a64565b925060408501359150606085013567ffffffffffffffff811115611b7157600080fd5b8501601f81018713611b8257600080fd5b611b91878235602084016119ee565b91505092959194509250565b60008060408385031215611bb057600080fd5b611bb983611a64565b9150611adc60208401611a80565b60008060408385031215611bda57600080fd5b611be383611a64565b946020939093013593505050565b600060208284031215611c0357600080fd5b611aab82611a80565b600060208284031215611c1e57600080fd5b8135611aab8161200e565b600060208284031215611c3b57600080fd5b8151611aab8161200e565b600060208284031215611c5857600080fd5b813567ffffffffffffffff811115611c6f57600080fd5b8201601f81018413611c8057600080fd5b6115f8848235602084016119ee565b600060208284031215611ca157600080fd5b5035919050565b60008151808452611cc0816020860160208601611f09565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611cee57607f831692505b6020808410821415611d1057634e487b7160e01b600052602260045260246000fd5b818015611d245760018114611d3557611d62565b60ff19861689528489019650611d62565b60008881526020902060005b86811015611d5a5781548b820152908501908301611d41565b505084890196505b50505050505092915050565b6000611d7a8286611cd4565b8451611d8a818360208901611f09565b611d9681830186611cd4565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dd490830184611ca8565b9695505050505050565b602081526000611aab6020830184611ca8565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611e9557611e95611fb6565b01949350505050565b60008219821115611eb157611eb1611fb6565b500190565b600082611ec557611ec5611fcc565b500490565b60006001600160801b0383811690831681811015611eea57611eea611fb6565b039392505050565b600082821015611f0457611f04611fb6565b500390565b60005b83811015611f24578181015183820152602001611f0c565b83811115610d395750506000910152565b600081611f4457611f44611fb6565b506000190190565b600181811c90821680611f6057607f821691505b60208210811415611f8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9b57611f9b611fb6565b5060010190565b600082611fb157611fb1611fcc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ac857600080fdfea2646970667358221220ea604358ef912327d9b7be9fb3a13deceae8f02b4a92173963ae200a1382551464736f6c63430008070033

Deployed Bytecode Sourcemap

39534:1609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;-1:-1:-1;24744:370:0;;;;;:::i;:::-;;:::i;:::-;;;6867:14:1;;6860:22;6842:41;;6830:2;6815:18;24744:370:0;;;;;;;;40322:79;;;;;;;;;;-1:-1:-1;40322:79:0;;;;;:::i;:::-;;:::i;:::-;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28004:204::-;;;;;;;;;;-1:-1:-1;28004:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6165:32:1;;;6147:51;;6135:2;6120:18;28004:204:0;6001:203:1;27567:379:0;;;;;;;;;;-1:-1:-1;27567:379:0;;;;;:::i;:::-;;:::i;23305:94::-;;;;;;;;;;-1:-1:-1;23358:7:0;23381:12;23305:94;;;15179:25:1;;;15167:2;15152:18;23305:94:0;15033:177:1;28854:142:0;;;;;;;;;;-1:-1:-1;28854:142:0;;;;;:::i;:::-;;:::i;23936:744::-;;;;;;;;;;-1:-1:-1;23936:744:0;;;;;:::i;:::-;;:::i;39623:32::-;;;;;;;;;;;;;;;;29059:157;;;;;;;;;;-1:-1:-1;29059:157:0;;;;;:::i;:::-;;:::i;23468:177::-;;;;;;;;;;-1:-1:-1;23468:177:0;;;;;:::i;:::-;;:::i;40409:102::-;;;;;;;;;;-1:-1:-1;40409:102:0;;;;;:::i;:::-;;:::i;39826:25::-;;;;;;;;;;-1:-1:-1;39826:25:0;;;;;;;;40196:116;;;;;;:::i;:::-;;:::i;26293:118::-;;;;;;;;;;-1:-1:-1;26293:118:0;;;;;:::i;:::-;;:::i;39582:34::-;;;;;;;;;;;;;;;;39699:80;;;;;;;;;;;;;:::i;25170:211::-;;;;;;;;;;-1:-1:-1;25170:211:0;;;;;:::i;:::-;;:::i;38651:103::-;;;;;;;;;;;;;:::i;38011:87::-;;;;;;;;;;-1:-1:-1;38084:6:0;;-1:-1:-1;;;;;38084:6:0;38011:87;;26625:98;;;;;;;;;;;;;:::i;28272:274::-;;;;;;;;;;-1:-1:-1;28272:274:0;;;;;:::i;:::-;;:::i;29279:311::-;;;;;;;;;;-1:-1:-1;29279:311:0;;;;;:::i;:::-;;:::i;39998:190::-;;;;;;:::i;:::-;;:::i;39786:32::-;;;;;;;;;;;;;:::i;40517:507::-;;;;;;;;;;-1:-1:-1;40517:507:0;;;;;:::i;:::-;;:::i;39662:30::-;;;;;;;;;;;;;;;;33620:43;;;;;;;;;;;;;;;;28609:186;;;;;;;;;;-1:-1:-1;28609:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28754:25:0;;;28731:4;28754:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28609:186;38909:238;;;;;;;;;;-1:-1:-1;38909:238:0;;;;;:::i;:::-;;:::i;24744:370::-;24871:4;-1:-1:-1;;;;;;24901:40:0;;-1:-1:-1;;;24901:40:0;;:99;;-1:-1:-1;;;;;;;24952:48:0;;-1:-1:-1;;;24952:48:0;24901:99;:160;;;-1:-1:-1;;;;;;;25011:50:0;;-1:-1:-1;;;25011:50:0;24901:160;:207;;;-1:-1:-1;;;;;;;;;;8475:40:0;;;25072:36;24887:221;24744:370;-1:-1:-1;;24744:370:0:o;40322:79::-;38084:6;;-1:-1:-1;;;;;38084:6:0;17795:10;38231:23;38223:57;;;;-1:-1:-1;;;38223:57:0;;;;;;;:::i;:::-;;;;;;;;;40378:6:::1;:15:::0;;-1:-1:-1;;40378:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40322:79::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;28004:204::-;28072:7;28096:16;28104:7;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;28096:16;28088:74;;;;-1:-1:-1;;;28088:74:0;;14821:2:1;28088:74:0;;;14803:21:1;14860:2;14840:18;;;14833:30;14899:34;14879:18;;;14872:62;-1:-1:-1;;;14950:18:1;;;14943:43;15003:19;;28088:74:0;14619:409:1;28088:74:0;-1:-1:-1;28178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28178:24:0;;28004:204::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;-1:-1:-1;;;;;27691:11:0;:2;-1:-1:-1;;;;;27691:11:0;;;27683:58;;;;-1:-1:-1;;;27683:58:0;;12407:2:1;27683:58:0;;;12389:21:1;12446:2;12426:18;;;12419:30;12485:34;12465:18;;;12458:62;-1:-1:-1;;;12536:18:1;;;12529:32;12578:19;;27683:58:0;12205:398:1;27683:58:0;17795:10;-1:-1:-1;;;;;27766:21:0;;;;:62;;-1:-1:-1;27791:37:0;27808:5;17795:10;28609:186;:::i;27791:37::-;27750:153;;;;-1:-1:-1;;;27750:153:0;;10035:2:1;27750:153:0;;;10017:21:1;10074:2;10054:18;;;10047:30;10113:34;10093:18;;;10086:62;10184:27;10164:18;;;10157:55;10229:19;;27750:153:0;9833:421:1;27750:153:0;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;-1:-1:-1;;;24064:71:0;;7320:2:1;24064:71:0;;;7302:21:1;7359:2;7339:18;;;7332:30;7398:34;7378:18;;;7371:62;-1:-1:-1;;;7449:18:1;;;7442:32;7491:19;;24064:71:0;7118:398:1;24064:71:0;24142:22;23381:12;;;24142:22;;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:14;;;:11;:14;;;;;;;;;24316:48;;;;;;;;;-1:-1:-1;;;;;24316:48:0;;;;;-1:-1:-1;;;24316:48:0;;;;;;;;;;;;24377:28;24373:89;;24438:14;;;-1:-1:-1;24373:89:0;24495:5;-1:-1:-1;;;;;24474:26:0;:17;-1:-1:-1;;;;;24474:26:0;;24470:135;;;24532:5;24517:11;:20;24513:59;;;-1:-1:-1;24559:1:0;-1:-1:-1;24552:8:0;;-1:-1:-1;;;24552:8:0;24513:59;24582:13;;;;:::i;:::-;;;;24470:135;-1:-1:-1;24302:3:0;;;;:::i;:::-;;;;24262:350;;;-1:-1:-1;24618:56:0;;-1:-1:-1;;;24618:56:0;;13990:2:1;24618:56:0;;;13972:21:1;14029:2;14009:18;;;14002:30;14068:34;14048:18;;;14041:62;-1:-1:-1;;;14119:18:1;;;14112:44;14173:19;;24618:56:0;13788:410:1;29059:157:0;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;23468:177::-;23535:7;23381:12;;23559:5;:21;23551:69;;;;-1:-1:-1;;;23551:69:0;;8875:2:1;23551:69:0;;;8857:21:1;8914:2;8894:18;;;8887:30;8953:34;8933:18;;;8926:62;-1:-1:-1;;;9004:18:1;;;8997:33;9047:19;;23551:69:0;8673:399:1;23551:69:0;-1:-1:-1;23634:5:0;23468:177::o;40409:102::-;38084:6;;-1:-1:-1;;;;;38084:6:0;17795:10;38231:23;38223:57;;;;-1:-1:-1;;;38223:57:0;;;;;;;:::i;:::-;40483:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40409:102:::0;:::o;40196:116::-;38084:6;;-1:-1:-1;;;;;38084:6:0;17795:10;38231:23;38223:57;;;;-1:-1:-1;;;38223:57:0;;;;;;;:::i;:::-;40272:32:::1;40282:10;40294:9;40272;:32::i;:::-;40196:116:::0;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;26293:118;-1:-1:-1;;26293:118:0:o;39699:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25170:211::-;25234:7;-1:-1:-1;;;;;25258:19:0;;25250:75;;;;-1:-1:-1;;;25250:75:0;;10461:2:1;25250:75:0;;;10443:21:1;10500:2;10480:18;;;10473:30;10539:34;10519:18;;;10512:62;-1:-1:-1;;;10590:18:1;;;10583:41;10641:19;;25250:75:0;10259:407:1;25250:75:0;-1:-1:-1;;;;;;25347:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25347:27:0;;25170:211::o;38651:103::-;38084:6;;-1:-1:-1;;;;;38084:6:0;17795:10;38231:23;38223:57;;;;-1:-1:-1;;;38223:57:0;;;;;;;:::i;:::-;38716:30:::1;38743:1;38716:18;:30::i;:::-;38651:103::o:0;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;28272:274::-;-1:-1:-1;;;;;28363:24:0;;17795:10;28363:24;;28355:63;;;;-1:-1:-1;;;28355:63:0;;11633:2:1;28355:63:0;;;11615:21:1;11672:2;11652:18;;;11645:30;11711:28;11691:18;;;11684:56;11757:18;;28355:63:0;11431:350:1;28355:63:0;17795:10;28427:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28427:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28427:53:0;;;;;;;;;;28492:48;;6842:41:1;;;28427:42:0;;17795:10;28492:48;;6815:18:1;28492:48:0;;;;;;;28272:274;;:::o;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;-1:-1:-1;;;29451:133:0;;;;;;;:::i;:::-;29279:311;;;;:::o;39998:190::-;40070:6;;;;40069:7;40061:26;;;;-1:-1:-1;;;40061:26:0;;7723:2:1;40061:26:0;;;7705:21:1;7762:1;7742:18;;;7735:29;-1:-1:-1;;;7780:18:1;;;7773:36;7826:18;;40061:26:0;7521:329:1;40061:26:0;40119:1;40106:9;:14;;:30;;;;;40135:1;40124:9;:12;40106:30;40098:39;;;;;39786:32;;;;;;;:::i;40517:507::-;40619:13;40658:17;40666:8;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;40658:17;40650:54;;;;-1:-1:-1;;;40650:54:0;;10873:2:1;40650:54:0;;;10855:21:1;10912:2;10892:18;;;10885:30;10951:26;10931:18;;;10924:54;10995:18;;40650:54:0;10671:348:1;40650:54:0;40759:1;40741:7;40735:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;40852:7;40886:26;40903:8;40886:16;:26::i;:::-;40939:13;40809:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40715:301;40517:507;-1:-1:-1;;40517:507:0:o;38909:238::-;38084:6;;-1:-1:-1;;;;;38084:6:0;17795:10;38231:23;38223:57;;;;-1:-1:-1;;;38223:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39012:22:0;::::1;38990:110;;;::::0;-1:-1:-1;;;38990:110:0;;8057:2:1;38990:110:0::1;::::0;::::1;8039:21:1::0;8096:2;8076:18;;;8069:30;8135:34;8115:18;;;8108:62;-1:-1:-1;;;8186:18:1;;;8179:36;8232:19;;38990:110:0::1;7855:402:1::0;38990:110:0::1;39111:28;39130:8;39111:18;:28::i;9294:387::-:0;9617:20;9665:8;;;9294:387::o;33442:172::-;33539:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33539:29:0;-1:-1:-1;;;;;33539:29:0;;;;;;;;;33580:28;;33539:24;;33580:28;;;;;;;33442:172;;;:::o;31807:1529::-;31904:35;31942:20;31954:7;31942:11;:20::i;:::-;32013:18;;31904:58;;-1:-1:-1;31971:22:0;;-1:-1:-1;;;;;31997:34:0;17795:10;-1:-1:-1;;;;;31997:34:0;;:81;;;-1:-1:-1;17795:10:0;32042:20;32054:7;32042:11;:20::i;:::-;-1:-1:-1;;;;;32042:36:0;;31997:81;:142;;;-1:-1:-1;32106:18:0;;32089:50;;17795:10;28609:186;:::i;32089:50::-;31971:169;;32165:17;32149:101;;;;-1:-1:-1;;;32149:101:0;;11988:2:1;32149:101:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:48;12175:19;;32149:101:0;11786:414:1;32149:101:0;32297:4;-1:-1:-1;;;;;32275:26:0;:13;:18;;;-1:-1:-1;;;;;32275:26:0;;32259:98;;;;-1:-1:-1;;;32259:98:0;;11226:2:1;32259:98:0;;;11208:21:1;11265:2;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;-1:-1:-1;;;11355:18:1;;;11348:36;11401:19;;32259:98:0;11024:402:1;32259:98:0;-1:-1:-1;;;;;32372:16:0;;32364:66;;;;-1:-1:-1;;;32364:66:0;;9279:2:1;32364:66:0;;;9261:21:1;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:35;9453:19;;32364:66:0;9077:401:1;32364:66:0;32539:49;32556:1;32560:7;32569:13;:18;;;32539:8;:49::i;:::-;-1:-1:-1;;;;;32597:18:0;;;;;;:12;:18;;;;;:31;;32627:1;;32597:18;:31;;32627:1;;-1:-1:-1;;;;;32597:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32597:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32635:16:0;;-1:-1:-1;32635:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32635:16:0;;:29;;-1:-1:-1;;32635:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32635:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32694:43:0;;;;;;;;-1:-1:-1;;;;;32694:43:0;;;;;;32720:15;32694:43;;;;;;;;;-1:-1:-1;32671:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32671:66:0;-1:-1:-1;;;;;;32671:66:0;;;;;;;;;;;32987:11;32683:7;-1:-1:-1;32987:11:0;:::i;:::-;33050:1;33009:24;;;:11;:24;;;;;:29;32965:33;;-1:-1:-1;;;;;;33009:29:0;33005:236;;33067:20;33075:11;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;33067:20;33063:171;;;33127:97;;;;;;;;33154:18;;-1:-1:-1;;;;;33127:97:0;;;;;;33185:28;;;;33127:97;;;;;;;;;;-1:-1:-1;33100:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33100:124:0;-1:-1:-1;;;;;;33100:124:0;;;;;;;;;;;;33063:171;33273:7;33269:2;-1:-1:-1;;;;;33254:27:0;33263:4;-1:-1:-1;;;;;33254:27:0;;;;;;;;;;;33288:42;31897:1439;;;31807:1529;;;:::o;29940:98::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;25633:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25750:16:0;25758:7;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;25750:16;25742:71;;;;-1:-1:-1;;;25742:71:0;;8464:2:1;25742:71:0;;;8446:21:1;8503:2;8483:18;;;8476:30;8542:34;8522:18;;;8515:62;-1:-1:-1;;;8593:18:1;;;8586:40;8643:19;;25742:71:0;8262:406:1;25742:71:0;25822:26;25870:12;25859:7;:23;25855:93;;25914:22;25924:12;25914:7;:22;:::i;:::-;:26;;25939:1;25914:26;:::i;:::-;25893:47;;25855:93;25976:7;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:17;;;:11;:17;;;;;;;;;26030:51;;;;;;;;;-1:-1:-1;;;;;26030:51:0;;;;;-1:-1:-1;;;26030:51:0;;;;;;;;;;;;26094:28;26090:71;;26142:9;25633:606;-1:-1:-1;;;;25633:606:0:o;26090:71::-;-1:-1:-1;26013:6:0;;;;:::i;:::-;;;;25956:212;;;-1:-1:-1;26176:57:0;;-1:-1:-1;;;26176:57:0;;14405:2:1;26176:57:0;;;14387:21:1;14444:2;14424:18;;;14417:30;14483:34;14463:18;;;14456:62;-1:-1:-1;;;14534:18:1;;;14527:45;14589:19;;26176:57:0;14203:411:1;39307:191:0;39400:6;;;-1:-1:-1;;;;;39417:17:0;;;-1:-1:-1;;;;;;39417:17:0;;;;;;;39450:40;;39400:6;;;39417:17;39400:6;;39450:40;;39381:16;;39450:40;39370:128;39307:191;:::o;35157:690::-;35294:4;-1:-1:-1;;;;;35311:13:0;;9617:20;9665:8;35307:535;;35350:72;;-1:-1:-1;;;35350:72:0;;-1:-1:-1;;;;;35350:36:0;;;;;:72;;17795:10;;35401:4;;35407:7;;35416:5;;35350:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35350:72:0;;;;;;;;-1:-1:-1;;35350:72:0;;;;;;;;;;;;:::i;:::-;;;35337:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35581:13:0;;35577:215;;35614:61;;-1:-1:-1;;;35614:61:0;;;;;;;:::i;35577:215::-;35760:6;35754:13;35745:6;35741:2;35737:15;35730:38;35337:464;-1:-1:-1;;;;;;35472:55:0;-1:-1:-1;;;35472:55:0;;-1:-1:-1;35465:62:0;;35307:535;-1:-1:-1;35830:4:0;35307:535;35157:690;;;;;;:::o;18238:723::-;18294:13;18515:10;18511:53;;-1:-1:-1;;18542:10:0;;;;;;;;;;;;-1:-1:-1;;;18542:10:0;;;;;18238:723::o;18511:53::-;18589:5;18574:12;18630:78;18637:9;;18630:78;;18663:8;;;;:::i;:::-;;-1:-1:-1;18686:10:0;;-1:-1:-1;18694:2:0;18686:10;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18740:17:0;;18718:39;;18768:154;18775:10;;18768:154;;18802:11;18812:1;18802:11;;:::i;:::-;;-1:-1:-1;18871:10:0;18879:2;18871:5;:10;:::i;:::-;18858:24;;:2;:24;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18828:56:0;;;;;;;;-1:-1:-1;18899:11:0;18908:2;18899:11;;:::i;:::-;;;18768:154;;30377:1198;30482:20;30505:12;-1:-1:-1;;;;;30532:16:0;;30524:62;;;;-1:-1:-1;;;30524:62:0;;13588:2:1;30524:62:0;;;13570:21:1;13627:2;13607:18;;;13600:30;13666:34;13646:18;;;13639:62;-1:-1:-1;;;13717:18:1;;;13710:31;13758:19;;30524:62:0;13386:397:1;30524:62:0;30723:21;30731:12;29886:4;29916:12;-1:-1:-1;29906:22:0;29829:105;30723:21;30722:22;30714:64;;;;-1:-1:-1;;;30714:64:0;;13230:2:1;30714:64:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:31;13288:18;;;13281:59;13357:18;;30714:64:0;13028:353:1;30714:64:0;-1:-1:-1;;;;;30894:16:0;;30861:30;30894:16;;;:12;:16;;;;;;;;;30861:49;;;;;;;;;-1:-1:-1;;;;;30861:49:0;;;;;-1:-1:-1;;;30861:49:0;;;;;;;;;;;30936:119;;;;;;;;30956:19;;30861:49;;30936:119;;;30956:39;;30986:8;;30956:39;:::i;:::-;-1:-1:-1;;;;;30936:119:0;;;;;31039:8;31004:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30936:119:0;;;;;;-1:-1:-1;;;;;30917:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30917:138:0;;;;;;;;;;;;31090:43;;;;;;;;;;;31116:15;31090:43;;;;;;;;31062:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31062:71:0;-1:-1:-1;;;;;;31062:71:0;;;;;;;;;;;;;;;;;;31074:12;;31186:281;31210:8;31206:1;:12;31186:281;;;31239:38;;31264:12;;-1:-1:-1;;;;;31239:38:0;;;31256:1;;31239:38;;31256:1;;31239:38;31304:59;31335:1;31339:2;31343:12;31357:5;31304:22;:59::i;:::-;31286:150;;;;-1:-1:-1;;;31286:150:0;;;;;;;:::i;:::-;31445:14;;;;:::i;:::-;;;;31220:3;;;;;:::i;:::-;;;;31186:281;;;-1:-1:-1;31475:12:0;:27;;;31509:60;29279:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:973::-;4647:12;;4612:3;;4702:1;4722:18;;;;4775;;;;4802:61;;4856:4;4848:6;4844:17;4834:27;;4802:61;4882:2;4930;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;5070:18;5097:104;;;;5215:1;5210:319;;;;5063:466;;5097:104;-1:-1:-1;;5130:24:1;;5118:37;;5175:16;;;;-1:-1:-1;5097:104:1;;5210:319;15288:1;15281:14;;;15325:4;15312:18;;5304:1;5318:165;5332:6;5329:1;5326:13;5318:165;;;5410:14;;5397:11;;;5390:35;5453:16;;;;5347:10;;5318:165;;;5322:3;;5512:6;5507:3;5503:16;5496:23;;5063:466;;;;;;;4562:973;;;;:::o;5540:456::-;5761:3;5789:38;5823:3;5815:6;5789:38;:::i;:::-;5856:6;5850:13;5872:52;5917:6;5913:2;5906:4;5898:6;5894:17;5872:52;:::i;:::-;5940:50;5982:6;5978:2;5974:15;5966:6;5940:50;:::i;:::-;5933:57;5540:456;-1:-1:-1;;;;;;;5540:456:1:o;6209:488::-;-1:-1:-1;;;;;6478:15:1;;;6460:34;;6530:15;;6525:2;6510:18;;6503:43;6577:2;6562:18;;6555:34;;;6625:3;6620:2;6605:18;;6598:31;;;6403:4;;6646:45;;6671:19;;6663:6;6646:45;:::i;:::-;6638:53;6209:488;-1:-1:-1;;;;;;6209:488:1:o;6894:219::-;7043:2;7032:9;7025:21;7006:4;7063:44;7103:2;7092:9;7088:18;7080:6;7063:44;:::i;9483:345::-;9685:2;9667:21;;;9724:2;9704:18;;;9697:30;-1:-1:-1;;;9758:2:1;9743:18;;9736:51;9819:2;9804:18;;9483:345::o;12608:415::-;12810:2;12792:21;;;12849:2;12829:18;;;12822:30;12888:34;12883:2;12868:18;;12861:62;-1:-1:-1;;;12954:2:1;12939:18;;12932:49;13013:3;12998:19;;12608:415::o;15341:253::-;15381:3;-1:-1:-1;;;;;15470:2:1;15467:1;15463:10;15500:2;15497:1;15493:10;15531:3;15527:2;15523:12;15518:3;15515:21;15512:47;;;15539:18;;:::i;:::-;15575:13;;15341:253;-1:-1:-1;;;;15341:253:1:o;15599:128::-;15639:3;15670:1;15666:6;15663:1;15660:13;15657:39;;;15676:18;;:::i;:::-;-1:-1:-1;15712:9:1;;15599:128::o;15732:120::-;15772:1;15798;15788:35;;15803:18;;:::i;:::-;-1:-1:-1;15837:9:1;;15732:120::o;15857:246::-;15897:4;-1:-1:-1;;;;;16010:10:1;;;;15980;;16032:12;;;16029:38;;;16047:18;;:::i;:::-;16084:13;;15857:246;-1:-1:-1;;;15857:246:1:o;16108:125::-;16148:4;16176:1;16173;16170:8;16167:34;;;16181:18;;:::i;:::-;-1:-1:-1;16218:9:1;;16108:125::o;16238:258::-;16310:1;16320:113;16334:6;16331:1;16328:13;16320:113;;;16410:11;;;16404:18;16391:11;;;16384:39;16356:2;16349:10;16320:113;;;16451:6;16448:1;16445:13;16442:48;;;-1:-1:-1;;16486:1:1;16468:16;;16461:27;16238:258::o;16501:136::-;16540:3;16568:5;16558:39;;16577:18;;:::i;:::-;-1:-1:-1;;;16613:18:1;;16501:136::o;16642:380::-;16721:1;16717:12;;;;16764;;;16785:61;;16839:4;16831:6;16827:17;16817:27;;16785:61;16892:2;16884:6;16881:14;16861:18;16858:38;16855:161;;;16938:10;16933:3;16929:20;16926:1;16919:31;16973:4;16970:1;16963:15;17001:4;16998:1;16991:15;16855:161;;16642:380;;;:::o;17027:135::-;17066:3;-1:-1:-1;;17087:17:1;;17084:43;;;17107:18;;:::i;:::-;-1:-1:-1;17154:1:1;17143:13;;17027:135::o;17167:112::-;17199:1;17225;17215:35;;17230:18;;:::i;:::-;-1:-1:-1;17264:9:1;;17167:112::o;17284:127::-;17345:10;17340:3;17336:20;17333:1;17326:31;17376:4;17373:1;17366:15;17400:4;17397:1;17390:15;17416:127;17477:10;17472:3;17468:20;17465:1;17458:31;17508:4;17505:1;17498:15;17532:4;17529:1;17522:15;17548:127;17609:10;17604:3;17600:20;17597:1;17590:31;17640:4;17637:1;17630:15;17664:4;17661:1;17654:15;17680:127;17741:10;17736:3;17732:20;17729:1;17722:31;17772:4;17769:1;17762:15;17796:4;17793:1;17786:15;17812:131;-1:-1:-1;;;;;;17886:32:1;;17876:43;;17866:71;;17933:1;17930;17923:12

Swarm Source

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