ETH Price: $2,480.38 (+1.68%)

Token

CoolAniGang (CAG)
 

Overview

Max Total Supply

20 CAG

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CAG
0x1a3ffeb1c4f4effd991ab746f811d3ccd60bf9bd
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:
CoolAniGang

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-17
*/

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: localhost/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

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..).
 *
 * 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 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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()))
        : "";
  }

  /**
   * @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:
   *
   * - `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");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _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 > currentIndex - 1) {
      endIndex = currentIndex - 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 {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// 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(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: localhost/CoolAniGang.sol




 
 /*

============================================== CoolAniGang.CLUB ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;


/**
 * @title CoolAniGang
 */
                                                                                                     
                                                                                            

 contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
 
contract CoolAniGang is ERC721A, Ownable {
            
    uint256 public Price = 0.01 ether;
    string private _baseURIextended = "https://coolanigang.s3.us-west-1.amazonaws.com/metadata/coolanigang-metadata-";	     
    address private proxyRegistryAddress;
    
	
    constructor() ERC721A("CoolAniGang", "CAG", 500) {
       
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }
    
    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function mint(uint256 numberOfTokens) external payable {        
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        _safeMint(msg.sender, numberOfTokens);       	                
    }

     function gift(address _to,uint256 numberOfTokens) external onlyOwner {                 
        _safeMint(_to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

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":[],"name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755662386f26fc10000600955610120604052604d60a081815290620023e660c03980516200003d91600a9160209091019062000189565b503480156200004b57600080fd5b506040518060400160405280600b81526020016a436f6f6c416e6947616e6760a81b8152506040518060400160405280600381526020016243414760e81b8152506101f460008111620000f45760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200010990600190602086019062000189565b5081516200011f90600290602085019062000189565b50608052506200013190503362000137565b6200026c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000197906200022f565b90600052602060002090601f016020900481019282620001bb576000855562000206565b82601f10620001d657805160ff191683800117855562000206565b8280016001018555821562000206579182015b8281111562000206578251825591602001919060010190620001e9565b506200021492915062000218565b5090565b5b8082111562000214576000815560010162000219565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b608051612150620002966000396000818161144d0152818161147701526118b801526121506000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d26ea6c011610064578063d26ea6c014610477578063d7224ba014610497578063e985e9c5146104ad578063f2fde38b146104cd57600080fd5b8063b88d4fde14610417578063c87b56dd14610437578063cbce4c971461045757600080fd5b806395d89b41116100c657806395d89b41146103b95780639dfde201146103ce578063a0712d68146103e4578063a22cb465146103f757600080fd5b8063715018a6146103665780638da5cb5b1461037b57806391b7f5ed1461039957600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce7146102e657806355f804b3146103065780636352211e1461032657806370a082311461034657600080fd5b80632f745c59146102915780633ccfd60b146102b157806342842e0e146102c657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d52565b6104ed565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61055a565b6040516101cd9190611ea3565b34801561020457600080fd5b50610218610213366004611df2565b6105ec565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611d26565b61067c565b005b34801561025e57600080fd5b506000545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611c32565b610794565b34801561029d57600080fd5b506102636102ac366004611d26565b61079f565b3480156102bd57600080fd5b5061025061090d565b3480156102d257600080fd5b506102506102e1366004611c32565b6109f8565b3480156102f257600080fd5b50610263610301366004611df2565b610a13565b34801561031257600080fd5b50610250610321366004611da9565b610a75565b34801561033257600080fd5b50610218610341366004611df2565b610ab6565b34801561035257600080fd5b50610263610361366004611bdc565b610ac8565b34801561037257600080fd5b50610250610b59565b34801561038757600080fd5b506008546001600160a01b0316610218565b3480156103a557600080fd5b506102506103b4366004611df2565b610b8f565b3480156103c557600080fd5b506101eb610bbe565b3480156103da57600080fd5b5061026360095481565b6102506103f2366004611df2565b610bcd565b34801561040357600080fd5b50610250610412366004611cf3565b610c34565b34801561042357600080fd5b50610250610432366004611c73565b610cf9565b34801561044357600080fd5b506101eb610452366004611df2565b610d32565b34801561046357600080fd5b50610250610472366004611d26565b610dff565b34801561048357600080fd5b50610250610492366004611bdc565b610e33565b3480156104a357600080fd5b5061026360075481565b3480156104b957600080fd5b506101c16104c8366004611bf9565b610e7f565b3480156104d957600080fd5b506102506104e8366004611bdc565b610f4f565b60006001600160e01b031982166380ac58cd60e01b148061051e57506001600160e01b03198216635b5e139f60e01b145b8061053957506001600160e01b0319821663780e9d6360e01b145b8061055457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105699061202d565b80601f01602080910402602001604051908101604052809291908181526020018280546105959061202d565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b60006105f9826000541190565b6106605760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061068782610ab6565b9050806001600160a01b0316836001600160a01b031614156106f65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610657565b336001600160a01b038216148061071257506107128133610e7f565b6107845760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610657565b61078f838383610fe7565b505050565b61078f838383611043565b60006107aa83610ac8565b82106108035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610657565b600080549080805b838110156108ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561085e57805192505b876001600160a01b0316836001600160a01b0316141561089a578684141561088c5750935061055492505050565b8361089681612068565b9450505b50806108a581612068565b91505061080b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610657565b6008546001600160a01b031633146109375760405162461bcd60e51b815260040161065790611eb6565b604051600090339047908381818185875af1925050503d8060008114610979576040519150601f19603f3d011682016040523d82523d6000602084013e61097e565b606091505b50509050806109f55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610657565b50565b61078f83838360405180602001604052806000815250610cf9565b600080548210610a715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610657565b5090565b6008546001600160a01b03163314610a9f5760405162461bcd60e51b815260040161065790611eb6565b8051610ab290600a906020840190611ad6565b5050565b6000610ac1826113cb565b5192915050565b60006001600160a01b038216610b345760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610657565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610b835760405162461bcd60e51b815260040161065790611eb6565b610b8d6000611575565b565b6008546001600160a01b03163314610bb95760405162461bcd60e51b815260040161065790611eb6565b600955565b6060600280546105699061202d565b3481600954610bdc9190611f8c565b1115610c2a5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e0000000000006044820152606401610657565b6109f533826115c7565b6001600160a01b038216331415610c8d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610657565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d04848484611043565b610d10848484846115e1565b610d2c5760405162461bcd60e51b815260040161065790611eeb565b50505050565b6060610d3f826000541190565b610da35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610657565b6000610dad6116ee565b90506000815111610dcd5760405180602001604052806000815250610df8565b80610dd7846116fd565b604051602001610de8929190611e37565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e295760405162461bcd60e51b815260040161065790611eb6565b610ab282826115c7565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161065790611eb6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610ecc57600080fd5b505afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190611d8c565b6001600160a01b03161415610f1d576001915050610554565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b03163314610f795760405162461bcd60e51b815260040161065790611eb6565b6001600160a01b038116610fde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b6109f581611575565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061104e826113cb565b80519091506000906001600160a01b0316336001600160a01b0316148061108557503361107a846105ec565b6001600160a01b0316145b80611097575081516110979033610e7f565b9050806111015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610657565b846001600160a01b031682600001516001600160a01b0316146111755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610657565b6001600160a01b0384166111d95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6111e96000848460000151610fe7565b6001600160a01b038516600090815260046020526040812080546001929061121b9084906001600160801b0316611fab565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261126791859116611f3e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112ef846001611f60565b6000818152600360205260409020549091506001600160a01b031661138157611319816000541190565b156113815760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526113ea826000541190565b6114495760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610657565b60007f000000000000000000000000000000000000000000000000000000000000000083106114aa5761149c7f000000000000000000000000000000000000000000000000000000000000000084611fd3565b6114a7906001611f60565b90505b825b818110611514576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561150157949350505050565b508061150c81612016565b9150506114ac565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610657565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab28282604051806020016040528060008152506117fb565b60006001600160a01b0384163b156116e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611625903390899088908890600401611e66565b602060405180830381600087803b15801561163f57600080fd5b505af192505050801561166f575060408051601f3d908101601f1916820190925261166c91810190611d6f565b60015b6116c9573d80801561169d576040519150601f19603f3d011682016040523d82523d6000602084013e6116a2565b606091505b5080516116c15760405162461bcd60e51b815260040161065790611eeb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f47565b506001949350505050565b6060600a80546105699061202d565b6060816117215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561174b578061173581612068565b91506117449050600a83611f78565b9150611725565b60008167ffffffffffffffff811115611766576117666120d9565b6040519080825280601f01601f191660200182016040528015611790576020820181803683370190505b5090505b8415610f47576117a5600183611fd3565b91506117b2600a86612083565b6117bd906030611f60565b60f81b8183815181106117d2576117d26120c3565b60200101906001600160f81b031916908160001a9053506117f4600a86611f78565b9450611794565b6000546001600160a01b03841661185e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610657565b611869816000541190565b156118b65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610657565b7f00000000000000000000000000000000000000000000000000000000000000008311156119315760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610657565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061198d908790611f3e565b6001600160801b031681526020018583602001516119ab9190611f3e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611acb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a8f60008884886115e1565b611aab5760405162461bcd60e51b815260040161065790611eeb565b81611ab581612068565b9250508080611ac390612068565b915050611a42565b5060008190556113c3565b828054611ae29061202d565b90600052602060002090601f016020900481019282611b045760008555611b4a565b82601f10611b1d57805160ff1916838001178555611b4a565b82800160010185558215611b4a579182015b82811115611b4a578251825591602001919060010190611b2f565b50610a719291505b80821115610a715760008155600101611b52565b600067ffffffffffffffff80841115611b8157611b816120d9565b604051601f8501601f19908116603f01168101908282118183101715611ba957611ba96120d9565b81604052809350858152868686011115611bc257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bee57600080fd5b8135610df8816120ef565b60008060408385031215611c0c57600080fd5b8235611c17816120ef565b91506020830135611c27816120ef565b809150509250929050565b600080600060608486031215611c4757600080fd5b8335611c52816120ef565b92506020840135611c62816120ef565b929592945050506040919091013590565b60008060008060808587031215611c8957600080fd5b8435611c94816120ef565b93506020850135611ca4816120ef565b925060408501359150606085013567ffffffffffffffff811115611cc757600080fd5b8501601f81018713611cd857600080fd5b611ce787823560208401611b66565b91505092959194509250565b60008060408385031215611d0657600080fd5b8235611d11816120ef565b915060208301358015158114611c2757600080fd5b60008060408385031215611d3957600080fd5b8235611d44816120ef565b946020939093013593505050565b600060208284031215611d6457600080fd5b8135610df881612104565b600060208284031215611d8157600080fd5b8151610df881612104565b600060208284031215611d9e57600080fd5b8151610df8816120ef565b600060208284031215611dbb57600080fd5b813567ffffffffffffffff811115611dd257600080fd5b8201601f81018413611de357600080fd5b610f4784823560208401611b66565b600060208284031215611e0457600080fd5b5035919050565b60008151808452611e23816020860160208601611fea565b601f01601f19169290920160200192915050565b60008351611e49818460208801611fea565b835190830190611e5d818360208801611fea565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9990830184611e0b565b9695505050505050565b602081526000610df86020830184611e0b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611e5d57611e5d612097565b60008219821115611f7357611f73612097565b500190565b600082611f8757611f876120ad565b500490565b6000816000190483118215151615611fa657611fa6612097565b500290565b60006001600160801b0383811690831681811015611fcb57611fcb612097565b039392505050565b600082821015611fe557611fe5612097565b500390565b60005b83811015612005578181015183820152602001611fed565b83811115610d2c5750506000910152565b60008161202557612025612097565b506000190190565b600181811c9082168061204157607f821691505b6020821081141561206257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561207c5761207c612097565b5060010190565b600082612092576120926120ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f557600080fd5b6001600160e01b0319811681146109f557600080fdfea26469706673582212202d779938c7a3da5b895fad2541610a3371b88d7b37002a304c00547fd039114964736f6c6343000807003368747470733a2f2f636f6f6c616e6967616e672e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f636f6f6c616e6967616e672d6d657461646174612d

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d26ea6c011610064578063d26ea6c014610477578063d7224ba014610497578063e985e9c5146104ad578063f2fde38b146104cd57600080fd5b8063b88d4fde14610417578063c87b56dd14610437578063cbce4c971461045757600080fd5b806395d89b41116100c657806395d89b41146103b95780639dfde201146103ce578063a0712d68146103e4578063a22cb465146103f757600080fd5b8063715018a6146103665780638da5cb5b1461037b57806391b7f5ed1461039957600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce7146102e657806355f804b3146103065780636352211e1461032657806370a082311461034657600080fd5b80632f745c59146102915780633ccfd60b146102b157806342842e0e146102c657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611d52565b6104ed565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61055a565b6040516101cd9190611ea3565b34801561020457600080fd5b50610218610213366004611df2565b6105ec565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611d26565b61067c565b005b34801561025e57600080fd5b506000545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611c32565b610794565b34801561029d57600080fd5b506102636102ac366004611d26565b61079f565b3480156102bd57600080fd5b5061025061090d565b3480156102d257600080fd5b506102506102e1366004611c32565b6109f8565b3480156102f257600080fd5b50610263610301366004611df2565b610a13565b34801561031257600080fd5b50610250610321366004611da9565b610a75565b34801561033257600080fd5b50610218610341366004611df2565b610ab6565b34801561035257600080fd5b50610263610361366004611bdc565b610ac8565b34801561037257600080fd5b50610250610b59565b34801561038757600080fd5b506008546001600160a01b0316610218565b3480156103a557600080fd5b506102506103b4366004611df2565b610b8f565b3480156103c557600080fd5b506101eb610bbe565b3480156103da57600080fd5b5061026360095481565b6102506103f2366004611df2565b610bcd565b34801561040357600080fd5b50610250610412366004611cf3565b610c34565b34801561042357600080fd5b50610250610432366004611c73565b610cf9565b34801561044357600080fd5b506101eb610452366004611df2565b610d32565b34801561046357600080fd5b50610250610472366004611d26565b610dff565b34801561048357600080fd5b50610250610492366004611bdc565b610e33565b3480156104a357600080fd5b5061026360075481565b3480156104b957600080fd5b506101c16104c8366004611bf9565b610e7f565b3480156104d957600080fd5b506102506104e8366004611bdc565b610f4f565b60006001600160e01b031982166380ac58cd60e01b148061051e57506001600160e01b03198216635b5e139f60e01b145b8061053957506001600160e01b0319821663780e9d6360e01b145b8061055457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105699061202d565b80601f01602080910402602001604051908101604052809291908181526020018280546105959061202d565b80156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b5050505050905090565b60006105f9826000541190565b6106605760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061068782610ab6565b9050806001600160a01b0316836001600160a01b031614156106f65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610657565b336001600160a01b038216148061071257506107128133610e7f565b6107845760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610657565b61078f838383610fe7565b505050565b61078f838383611043565b60006107aa83610ac8565b82106108035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610657565b600080549080805b838110156108ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561085e57805192505b876001600160a01b0316836001600160a01b0316141561089a578684141561088c5750935061055492505050565b8361089681612068565b9450505b50806108a581612068565b91505061080b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610657565b6008546001600160a01b031633146109375760405162461bcd60e51b815260040161065790611eb6565b604051600090339047908381818185875af1925050503d8060008114610979576040519150601f19603f3d011682016040523d82523d6000602084013e61097e565b606091505b50509050806109f55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610657565b50565b61078f83838360405180602001604052806000815250610cf9565b600080548210610a715760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610657565b5090565b6008546001600160a01b03163314610a9f5760405162461bcd60e51b815260040161065790611eb6565b8051610ab290600a906020840190611ad6565b5050565b6000610ac1826113cb565b5192915050565b60006001600160a01b038216610b345760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610657565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610b835760405162461bcd60e51b815260040161065790611eb6565b610b8d6000611575565b565b6008546001600160a01b03163314610bb95760405162461bcd60e51b815260040161065790611eb6565b600955565b6060600280546105699061202d565b3481600954610bdc9190611f8c565b1115610c2a5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e0000000000006044820152606401610657565b6109f533826115c7565b6001600160a01b038216331415610c8d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610657565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d04848484611043565b610d10848484846115e1565b610d2c5760405162461bcd60e51b815260040161065790611eeb565b50505050565b6060610d3f826000541190565b610da35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610657565b6000610dad6116ee565b90506000815111610dcd5760405180602001604052806000815250610df8565b80610dd7846116fd565b604051602001610de8929190611e37565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e295760405162461bcd60e51b815260040161065790611eb6565b610ab282826115c7565b6008546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161065790611eb6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610ecc57600080fd5b505afa158015610ee0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f049190611d8c565b6001600160a01b03161415610f1d576001915050610554565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b03163314610f795760405162461bcd60e51b815260040161065790611eb6565b6001600160a01b038116610fde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610657565b6109f581611575565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061104e826113cb565b80519091506000906001600160a01b0316336001600160a01b0316148061108557503361107a846105ec565b6001600160a01b0316145b80611097575081516110979033610e7f565b9050806111015760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610657565b846001600160a01b031682600001516001600160a01b0316146111755760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610657565b6001600160a01b0384166111d95760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610657565b6111e96000848460000151610fe7565b6001600160a01b038516600090815260046020526040812080546001929061121b9084906001600160801b0316611fab565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261126791859116611f3e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112ef846001611f60565b6000818152600360205260409020549091506001600160a01b031661138157611319816000541190565b156113815760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526113ea826000541190565b6114495760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610657565b60007f00000000000000000000000000000000000000000000000000000000000001f483106114aa5761149c7f00000000000000000000000000000000000000000000000000000000000001f484611fd3565b6114a7906001611f60565b90505b825b818110611514576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561150157949350505050565b508061150c81612016565b9150506114ac565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610657565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab28282604051806020016040528060008152506117fb565b60006001600160a01b0384163b156116e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611625903390899088908890600401611e66565b602060405180830381600087803b15801561163f57600080fd5b505af192505050801561166f575060408051601f3d908101601f1916820190925261166c91810190611d6f565b60015b6116c9573d80801561169d576040519150601f19603f3d011682016040523d82523d6000602084013e6116a2565b606091505b5080516116c15760405162461bcd60e51b815260040161065790611eeb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f47565b506001949350505050565b6060600a80546105699061202d565b6060816117215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561174b578061173581612068565b91506117449050600a83611f78565b9150611725565b60008167ffffffffffffffff811115611766576117666120d9565b6040519080825280601f01601f191660200182016040528015611790576020820181803683370190505b5090505b8415610f47576117a5600183611fd3565b91506117b2600a86612083565b6117bd906030611f60565b60f81b8183815181106117d2576117d26120c3565b60200101906001600160f81b031916908160001a9053506117f4600a86611f78565b9450611794565b6000546001600160a01b03841661185e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610657565b611869816000541190565b156118b65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610657565b7f00000000000000000000000000000000000000000000000000000000000001f48311156119315760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610657565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061198d908790611f3e565b6001600160801b031681526020018583602001516119ab9190611f3e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611acb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a8f60008884886115e1565b611aab5760405162461bcd60e51b815260040161065790611eeb565b81611ab581612068565b9250508080611ac390612068565b915050611a42565b5060008190556113c3565b828054611ae29061202d565b90600052602060002090601f016020900481019282611b045760008555611b4a565b82601f10611b1d57805160ff1916838001178555611b4a565b82800160010185558215611b4a579182015b82811115611b4a578251825591602001919060010190611b2f565b50610a719291505b80821115610a715760008155600101611b52565b600067ffffffffffffffff80841115611b8157611b816120d9565b604051601f8501601f19908116603f01168101908282118183101715611ba957611ba96120d9565b81604052809350858152868686011115611bc257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bee57600080fd5b8135610df8816120ef565b60008060408385031215611c0c57600080fd5b8235611c17816120ef565b91506020830135611c27816120ef565b809150509250929050565b600080600060608486031215611c4757600080fd5b8335611c52816120ef565b92506020840135611c62816120ef565b929592945050506040919091013590565b60008060008060808587031215611c8957600080fd5b8435611c94816120ef565b93506020850135611ca4816120ef565b925060408501359150606085013567ffffffffffffffff811115611cc757600080fd5b8501601f81018713611cd857600080fd5b611ce787823560208401611b66565b91505092959194509250565b60008060408385031215611d0657600080fd5b8235611d11816120ef565b915060208301358015158114611c2757600080fd5b60008060408385031215611d3957600080fd5b8235611d44816120ef565b946020939093013593505050565b600060208284031215611d6457600080fd5b8135610df881612104565b600060208284031215611d8157600080fd5b8151610df881612104565b600060208284031215611d9e57600080fd5b8151610df8816120ef565b600060208284031215611dbb57600080fd5b813567ffffffffffffffff811115611dd257600080fd5b8201601f81018413611de357600080fd5b610f4784823560208401611b66565b600060208284031215611e0457600080fd5b5035919050565b60008151808452611e23816020860160208601611fea565b601f01601f19169290920160200192915050565b60008351611e49818460208801611fea565b835190830190611e5d818360208801611fea565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9990830184611e0b565b9695505050505050565b602081526000610df86020830184611e0b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611e5d57611e5d612097565b60008219821115611f7357611f73612097565b500190565b600082611f8757611f876120ad565b500490565b6000816000190483118215151615611fa657611fa6612097565b500290565b60006001600160801b0383811690831681811015611fcb57611fcb612097565b039392505050565b600082821015611fe557611fe5612097565b500390565b60005b83811015612005578181015183820152602001611fed565b83811115610d2c5750506000910152565b60008161202557612025612097565b506000190190565b600181811c9082168061204157607f821691505b6020821081141561206257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561207c5761207c612097565b5060010190565b600082612092576120926120ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f557600080fd5b6001600160e01b0319811681146109f557600080fdfea26469706673582212202d779938c7a3da5b895fad2541610a3371b88d7b37002a304c00547fd039114964736f6c63430008070033

Deployed Bytecode Sourcemap

40073:1861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24656:370;;;;;;;;;;-1:-1:-1;24656:370:0;;;;;:::i;:::-;;:::i;:::-;;;6538:14:1;;6531:22;6513:41;;6501:2;6486:18;24656:370:0;;;;;;;;26382:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27907:204::-;;;;;;;;;;-1:-1:-1;27907:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5836:32:1;;;5818:51;;5806:2;5791:18;27907:204:0;5672:203:1;27470:379:0;;;;;;;;;;-1:-1:-1;27470:379:0;;;;;:::i;:::-;;:::i;:::-;;23220:94;;;;;;;;;;-1:-1:-1;23273:7:0;23296:12;23220:94;;;15775:25:1;;;15763:2;15748:18;23220:94:0;15629:177:1;28757:142:0;;;;;;;;;;-1:-1:-1;28757:142:0;;;;;:::i;:::-;;:::i;23848:744::-;;;;;;;;;;-1:-1:-1;23848:744:0;;;;;:::i;:::-;;:::i;41679:250::-;;;;;;;;;;;;;:::i;28962:157::-;;;;;;;;;;-1:-1:-1;28962:157:0;;;;;:::i;:::-;;:::i;23383:177::-;;;;;;;;;;-1:-1:-1;23383:177:0;;;;;:::i;:::-;;:::i;40427:111::-;;;;;;;;;;-1:-1:-1;40427:111:0;;;;;:::i;:::-;;:::i;26205:118::-;;;;;;;;;;-1:-1:-1;26205:118:0;;;;;:::i;:::-;;:::i;25082:211::-;;;;;;;;;;-1:-1:-1;25082:211:0;;;;;:::i;:::-;;:::i;38583:103::-;;;;;;;;;;;;;:::i;37932:87::-;;;;;;;;;;-1:-1:-1;38005:6:0;;-1:-1:-1;;;;;38005:6:0;37932:87;;40671:88;;;;;;;;;;-1:-1:-1;40671:88:0;;;;;:::i;:::-;;:::i;26537:98::-;;;;;;;;;;;;;:::i;40135:33::-;;;;;;;;;;;;;;;;41297:230;;;;;;:::i;:::-;;:::i;28175:274::-;;;;;;;;;;-1:-1:-1;28175:274:0;;;;;:::i;:::-;;:::i;29182:311::-;;;;;;;;;;-1:-1:-1;29182:311:0;;;;;:::i;:::-;;:::i;26698:394::-;;;;;;;;;;-1:-1:-1;26698:394:0;;;;;:::i;:::-;;:::i;41536:135::-;;;;;;;;;;-1:-1:-1;41536:135:0;;;;;:::i;:::-;;:::i;40771:128::-;;;;;;;;;;-1:-1:-1;40771:128:0;;;;;:::i;:::-;;:::i;33513:43::-;;;;;;;;;;;;;;;;40907:382;;;;;;;;;;-1:-1:-1;40907:382:0;;;;;:::i;:::-;;:::i;38841:201::-;;;;;;;;;;-1:-1:-1;38841:201:0;;;;;:::i;:::-;;:::i;24656:370::-;24783:4;-1:-1:-1;;;;;;24813:40:0;;-1:-1:-1;;;24813:40:0;;:99;;-1:-1:-1;;;;;;;24864:48:0;;-1:-1:-1;;;24864:48:0;24813:99;:160;;;-1:-1:-1;;;;;;;24923:50:0;;-1:-1:-1;;;24923:50:0;24813:160;:207;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;24984:36;24799:221;24656:370;-1:-1:-1;;24656:370:0:o;26382:94::-;26436:13;26465:5;26458:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26382:94;:::o;27907:204::-;27975:7;27999:16;28007:7;29789:4;29819:12;-1:-1:-1;29809:22:0;29732:105;27999:16;27991:74;;;;-1:-1:-1;;;27991:74:0;;15014:2:1;27991:74:0;;;14996:21:1;15053:2;15033:18;;;15026:30;15092:34;15072:18;;;15065:62;-1:-1:-1;;;15143:18:1;;;15136:43;15196:19;;27991:74:0;;;;;;;;;-1:-1:-1;28081:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28081:24:0;;27907:204::o;27470:379::-;27539:13;27555:24;27571:7;27555:15;:24::i;:::-;27539:40;;27600:5;-1:-1:-1;;;;;27594:11:0;:2;-1:-1:-1;;;;;27594:11:0;;;27586:58;;;;-1:-1:-1;;;27586:58:0;;12600:2:1;27586:58:0;;;12582:21:1;12639:2;12619:18;;;12612:30;12678:34;12658:18;;;12651:62;-1:-1:-1;;;12729:18:1;;;12722:32;12771:19;;27586:58:0;12398:398:1;27586:58:0;21118:10;-1:-1:-1;;;;;27669:21:0;;;;:62;;-1:-1:-1;27694:37:0;27711:5;21118:10;40907:382;:::i;27694:37::-;27653:153;;;;-1:-1:-1;;;27653:153:0;;9449:2:1;27653:153:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:34;9507:18;;;9500:62;9598:27;9578:18;;;9571:55;9643:19;;27653:153:0;9247:421:1;27653:153:0;27815:28;27824:2;27828:7;27837:5;27815:8;:28::i;:::-;27532:317;27470:379;;:::o;28757:142::-;28865:28;28875:4;28881:2;28885:7;28865:9;:28::i;23848:744::-;23957:7;23992:16;24002:5;23992:9;:16::i;:::-;23984:5;:24;23976:71;;;;-1:-1:-1;;;23976:71:0;;6991:2:1;23976:71:0;;;6973:21:1;7030:2;7010:18;;;7003:30;7069:34;7049:18;;;7042:62;-1:-1:-1;;;7120:18:1;;;7113:32;7162:19;;23976:71:0;6789:398:1;23976:71:0;24054:22;23296:12;;;24054:22;;24174:350;24198:14;24194:1;:18;24174:350;;;24228:31;24262:14;;;:11;:14;;;;;;;;;24228:48;;;;;;;;;-1:-1:-1;;;;;24228:48:0;;;;;-1:-1:-1;;;24228:48:0;;;;;;;;;;;;24289:28;24285:89;;24350:14;;;-1:-1:-1;24285:89:0;24407:5;-1:-1:-1;;;;;24386:26:0;:17;-1:-1:-1;;;;;24386:26:0;;24382:135;;;24444:5;24429:11;:20;24425:59;;;-1:-1:-1;24471:1:0;-1:-1:-1;24464:8:0;;-1:-1:-1;;;24464:8:0;24425:59;24494:13;;;;:::i;:::-;;;;24382:135;-1:-1:-1;24214:3:0;;;;:::i;:::-;;;;24174:350;;;-1:-1:-1;24530:56:0;;-1:-1:-1;;;24530:56:0;;14183:2:1;24530:56:0;;;14165:21:1;14222:2;14202:18;;;14195:30;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:18:1;;;14305:44;14366:19;;24530:56:0;13981:410:1;41679:250:0;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;41746:49:::1;::::0;41728:12:::1;::::0;41746:10:::1;::::0;41769:21:::1;::::0;41728:12;41746:49;41728:12;41746:49;41769:21;41746:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41727:68;;;41828:7;41806:115;;;::::0;-1:-1:-1;;;41806:115:0;;9022:2:1;41806:115:0::1;::::0;::::1;9004:21:1::0;9061:2;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9171:28;9151:18;;;9144:56;9217:19;;41806:115:0::1;8820:422:1::0;41806:115:0::1;41716:213;41679:250::o:0;28962:157::-;29074:39;29091:4;29097:2;29101:7;29074:39;;;;;;;;;;;;:16;:39::i;23383:177::-;23450:7;23296:12;;23474:5;:21;23466:69;;;;-1:-1:-1;;;23466:69:0;;8212:2:1;23466:69:0;;;8194:21:1;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;-1:-1:-1;;;8341:18:1;;;8334:33;8384:19;;23466:69:0;8010:399:1;23466:69:0;-1:-1:-1;23549:5:0;23383:177::o;40427:111::-;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;40503:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40427:111:::0;:::o;26205:118::-;26269:7;26292:20;26304:7;26292:11;:20::i;:::-;:25;;26205:118;-1:-1:-1;;26205:118:0:o;25082:211::-;25146:7;-1:-1:-1;;;;;25170:19:0;;25162:75;;;;-1:-1:-1;;;25162:75:0;;9875:2:1;25162:75:0;;;9857:21:1;9914:2;9894:18;;;9887:30;9953:34;9933:18;;;9926:62;-1:-1:-1;;;10004:18:1;;;9997:41;10055:19;;25162:75:0;9673:407:1;25162:75:0;-1:-1:-1;;;;;;25259:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25259:27:0;;25082:211::o;38583:103::-;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;38648:30:::1;38675:1;38648:18;:30::i;:::-;38583:103::o:0;40671:88::-;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;40735:5:::1;:16:::0;40671:88::o;26537:98::-;26593:13;26622:7;26615:14;;;;;:::i;41297:230::-;41407:9;41388:14;41380:5;;:22;;;;:::i;:::-;41379:37;;41371:76;;;;-1:-1:-1;;;41371:76:0;;10287:2:1;41371:76:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:28;10345:18;;;10338:56;10411:18;;41371:76:0;10085:350:1;41371:76:0;41458:37;41468:10;41480:14;41458:9;:37::i;28175:274::-;-1:-1:-1;;;;;28266:24:0;;21118:10;28266:24;;28258:63;;;;-1:-1:-1;;;28258:63:0;;11826:2:1;28258:63:0;;;11808:21:1;11865:2;11845:18;;;11838:30;11904:28;11884:18;;;11877:56;11950:18;;28258:63:0;11624:350:1;28258:63:0;21118:10;28330:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28330:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28330:53:0;;;;;;;;;;28395:48;;6513:41:1;;;28330:42:0;;21118:10;28395:48;;6486:18:1;28395:48:0;;;;;;;28175:274;;:::o;29182:311::-;29319:28;29329:4;29335:2;29339:7;29319:9;:28::i;:::-;29370:48;29393:4;29399:2;29403:7;29412:5;29370:22;:48::i;:::-;29354:133;;;;-1:-1:-1;;;29354:133:0;;;;;;;:::i;:::-;29182:311;;;;:::o;26698:394::-;26796:13;26837:16;26845:7;29789:4;29819:12;-1:-1:-1;29809:22:0;29732:105;26837:16;26821:97;;;;-1:-1:-1;;;26821:97:0;;11410:2:1;26821:97:0;;;11392:21:1;11449:2;11429:18;;;11422:30;11488:34;11468:18;;;11461:62;-1:-1:-1;;;11539:18:1;;;11532:45;11594:19;;26821:97:0;11208:411:1;26821:97:0;26927:21;26951:10;:8;:10::i;:::-;26927:34;;27006:1;26988:7;26982:21;:25;:104;;;;;;;;;;;;;;;;;27043:7;27052:18;:7;:16;:18::i;:::-;27026:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26982:104;26968:118;26698:394;-1:-1:-1;;;26698:394:0:o;41536:135::-;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;41633:30:::1;41643:3;41648:14;41633:9;:30::i;40771:128::-:0;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;40856:20:::1;:35:::0;;-1:-1:-1;;;;;;40856:35:0::1;-1:-1:-1::0;;;;;40856:35:0;;;::::1;::::0;;;::::1;::::0;;40771:128::o;40907:382::-;41098:20;;41142:28;;-1:-1:-1;;;41142:28:0;;-1:-1:-1;;;;;5836:32:1;;;41142:28:0;;;5818:51:1;41032:4:0;;41098:20;;;41134:49;;;;41098:20;;41142:21;;5791:18:1;;41142:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41134:49:0;;41130:93;;;41207:4;41200:11;;;;;41130:93;-1:-1:-1;;;;;28657:25:0;;;28634:4;28657:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41242:39;41235:46;40907:382;-1:-1:-1;;;;40907:382:0:o;38841:201::-;38005:6;;-1:-1:-1;;;;;38005:6:0;21118:10;38152:23;38144:68;;;;-1:-1:-1;;;38144:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38930:22:0;::::1;38922:73;;;::::0;-1:-1:-1;;;38922:73:0;;7394:2:1;38922:73:0::1;::::0;::::1;7376:21:1::0;7433:2;7413:18;;;7406:30;7472:34;7452:18;;;7445:62;-1:-1:-1;;;7523:18:1;;;7516:36;7569:19;;38922:73:0::1;7192:402:1::0;38922:73:0::1;39006:28;39025:8;39006:18;:28::i;33335:172::-:0;33432:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33432:29:0;-1:-1:-1;;;;;33432:29:0;;;;;;;;;33473:28;;33432:24;;33473:28;;;;;;;33335:172;;;:::o;31700:1529::-;31797:35;31835:20;31847:7;31835:11;:20::i;:::-;31906:18;;31797:58;;-1:-1:-1;31864:22:0;;-1:-1:-1;;;;;31890:34:0;21118:10;-1:-1:-1;;;;;31890:34:0;;:81;;;-1:-1:-1;21118:10:0;31935:20;31947:7;31935:11;:20::i;:::-;-1:-1:-1;;;;;31935:36:0;;31890:81;:142;;;-1:-1:-1;31999:18:0;;31982:50;;21118:10;40907:382;:::i;31982:50::-;31864:169;;32058:17;32042:101;;;;-1:-1:-1;;;32042:101:0;;12181:2:1;32042:101:0;;;12163:21:1;12220:2;12200:18;;;12193:30;12259:34;12239:18;;;12232:62;-1:-1:-1;;;12310:18:1;;;12303:48;12368:19;;32042:101:0;11979:414:1;32042:101:0;32190:4;-1:-1:-1;;;;;32168:26:0;:13;:18;;;-1:-1:-1;;;;;32168:26:0;;32152:98;;;;-1:-1:-1;;;32152:98:0;;10642:2:1;32152:98:0;;;10624:21:1;10681:2;10661:18;;;10654:30;10720:34;10700:18;;;10693:62;-1:-1:-1;;;10771:18:1;;;10764:36;10817:19;;32152:98:0;10440:402:1;32152:98:0;-1:-1:-1;;;;;32265:16:0;;32257:66;;;;-1:-1:-1;;;32257:66:0;;8616:2:1;32257:66:0;;;8598:21:1;8655:2;8635:18;;;8628:30;8694:34;8674:18;;;8667:62;-1:-1:-1;;;8745:18:1;;;8738:35;8790:19;;32257:66:0;8414:401:1;32257:66:0;32432:49;32449:1;32453:7;32462:13;:18;;;32432:8;:49::i;:::-;-1:-1:-1;;;;;32490:18:0;;;;;;:12;:18;;;;;:31;;32520:1;;32490:18;:31;;32520:1;;-1:-1:-1;;;;;32490:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32490:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32528:16:0;;-1:-1:-1;32528:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32528:16:0;;:29;;-1:-1:-1;;32528:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32528:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32587:43:0;;;;;;;;-1:-1:-1;;;;;32587:43:0;;;;;;32613:15;32587:43;;;;;;;;;-1:-1:-1;32564:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32564:66:0;-1:-1:-1;;;;;;32564:66:0;;;;;;;;;;;32880:11;32576:7;-1:-1:-1;32880:11:0;:::i;:::-;32943:1;32902:24;;;:11;:24;;;;;:29;32858:33;;-1:-1:-1;;;;;;32902:29:0;32898:236;;32960:20;32968:11;29789:4;29819:12;-1:-1:-1;29809:22:0;29732:105;32960:20;32956:171;;;33020:97;;;;;;;;33047:18;;-1:-1:-1;;;;;33020:97:0;;;;;;33078:28;;;;33020:97;;;;;;;;;;-1:-1:-1;32993:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32993:124:0;-1:-1:-1;;;;;;32993:124:0;;;;;;;;;;;;32956:171;33166:7;33162:2;-1:-1:-1;;;;;33147:27:0;33156:4;-1:-1:-1;;;;;33147:27:0;;;;;;;;;;;33181:42;31790:1439;;;31700:1529;;;:::o;25545:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25662:16:0;25670:7;29789:4;29819:12;-1:-1:-1;29809:22:0;29732:105;25662:16;25654:71;;;;-1:-1:-1;;;25654:71:0;;7801:2:1;25654:71:0;;;7783:21:1;7840:2;7820:18;;;7813:30;7879:34;7859:18;;;7852:62;-1:-1:-1;;;7930:18:1;;;7923:40;7980:19;;25654:71:0;7599:406:1;25654:71:0;25734:26;25782:12;25771:7;:23;25767:93;;25826:22;25836:12;25826:7;:22;:::i;:::-;:26;;25851:1;25826:26;:::i;:::-;25805:47;;25767:93;25888:7;25868:212;25905:18;25897:4;:26;25868:212;;25942:31;25976:17;;;:11;:17;;;;;;;;;25942:51;;;;;;;;;-1:-1:-1;;;;;25942:51:0;;;;;-1:-1:-1;;;25942:51:0;;;;;;;;;;;;26006:28;26002:71;;26054:9;25545:606;-1:-1:-1;;;;25545:606:0:o;26002:71::-;-1:-1:-1;25925:6:0;;;;:::i;:::-;;;;25868:212;;;-1:-1:-1;26088:57:0;;-1:-1:-1;;;26088:57:0;;14598:2:1;26088:57:0;;;14580:21:1;14637:2;14617:18;;;14610:30;14676:34;14656:18;;;14649:62;-1:-1:-1;;;14727:18:1;;;14720:45;14782:19;;26088:57:0;14396:411:1;39202:191:0;39295:6;;;-1:-1:-1;;;;;39312:17:0;;;-1:-1:-1;;;;;;39312:17:0;;;;;;;39345:40;;39295:6;;;39312:17;39295:6;;39345:40;;39276:16;;39345:40;39265:128;39202:191;:::o;29843:98::-;29908:27;29918:2;29922:8;29908:27;;;;;;;;;;;;:9;:27::i;35046:690::-;35183:4;-1:-1:-1;;;;;35200:13:0;;3652:19;:23;35196:535;;35239:72;;-1:-1:-1;;;35239:72:0;;-1:-1:-1;;;;;35239:36:0;;;;;:72;;21118:10;;35290:4;;35296:7;;35305:5;;35239:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35239:72:0;;;;;;;;-1:-1:-1;;35239:72:0;;;;;;;;;;;;:::i;:::-;;;35226:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35470:13:0;;35466:215;;35503:61;;-1:-1:-1;;;35503:61:0;;;;;;;:::i;35466:215::-;35649:6;35643:13;35634:6;35630:2;35626:15;35619:38;35226:464;-1:-1:-1;;;;;;35361:55:0;-1:-1:-1;;;35361:55:0;;-1:-1:-1;35354:62:0;;35196:535;-1:-1:-1;35719:4:0;35046:690;;;;;;:::o;40546:117::-;40606:13;40639:16;40632:23;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30196:1272;30301:20;30324:12;-1:-1:-1;;;;;30351:16:0;;30343:62;;;;-1:-1:-1;;;30343:62:0;;13781:2:1;30343:62:0;;;13763:21:1;13820:2;13800:18;;;13793:30;13859:34;13839:18;;;13832:62;-1:-1:-1;;;13910:18:1;;;13903:31;13951:19;;30343:62:0;13579:397:1;30343:62:0;30542:21;30550:12;29789:4;29819:12;-1:-1:-1;29809:22:0;29732:105;30542:21;30541:22;30533:64;;;;-1:-1:-1;;;30533:64:0;;13423:2:1;30533:64:0;;;13405:21:1;13462:2;13442:18;;;13435:30;13501:31;13481:18;;;13474:59;13550:18;;30533:64:0;13221:353:1;30533:64:0;30624:12;30612:8;:24;;30604:71;;;;-1:-1:-1;;;30604:71:0;;15428:2:1;30604:71:0;;;15410:21:1;15467:2;15447:18;;;15440:30;15506:34;15486:18;;;15479:62;-1:-1:-1;;;15557:18:1;;;15550:32;15599:19;;30604:71:0;15226:398:1;30604:71:0;-1:-1:-1;;;;;30787:16:0;;30754:30;30787:16;;;:12;:16;;;;;;;;;30754:49;;;;;;;;;-1:-1:-1;;;;;30754:49:0;;;;;-1:-1:-1;;;30754:49:0;;;;;;;;;;;30829:119;;;;;;;;30849:19;;30754:49;;30829:119;;;30849:39;;30879:8;;30849:39;:::i;:::-;-1:-1:-1;;;;;30829:119:0;;;;;30932:8;30897:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30829:119:0;;;;;;-1:-1:-1;;;;;30810:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30810:138:0;;;;;;;;;;;;30983:43;;;;;;;;;;;31009:15;30983:43;;;;;;;;30955:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30955:71:0;-1:-1:-1;;;;;;30955:71:0;;;;;;;;;;;;;;;;;;30967:12;;31079:281;31103:8;31099:1;:12;31079:281;;;31132:38;;31157:12;;-1:-1:-1;;;;;31132:38:0;;;31149:1;;31132:38;;31149:1;;31132:38;31197:59;31228:1;31232:2;31236:12;31250:5;31197:22;:59::i;:::-;31179:150;;;;-1:-1:-1;;;31179:150:0;;;;;;;:::i;:::-;31338:14;;;;:::i;:::-;;;;31113:3;;;;;:::i;:::-;;;;31079:281;;;-1:-1:-1;31368:12:0;:27;;;31402:60;29182: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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:180::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;-1:-1:-1;4691:23:1;;4540:180;-1:-1:-1;4540:180:1:o;4725:257::-;4766:3;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:1;4930:39;;;;4971:4;4926:50;;4725:257;-1:-1:-1;;4725:257:1:o;4987:470::-;5166:3;5204:6;5198:13;5220:53;5266:6;5261:3;5254:4;5246:6;5242:17;5220:53;:::i;:::-;5336:13;;5295:16;;;;5358:57;5336:13;5295:16;5392:4;5380:17;;5358:57;:::i;:::-;5431:20;;4987:470;-1:-1:-1;;;;4987:470:1:o;5880:488::-;-1:-1:-1;;;;;6149:15:1;;;6131:34;;6201:15;;6196:2;6181:18;;6174:43;6248:2;6233:18;;6226:34;;;6296:3;6291:2;6276:18;;6269:31;;;6074:4;;6317:45;;6342:19;;6334:6;6317:45;:::i;:::-;6309:53;5880:488;-1:-1:-1;;;;;;5880:488:1:o;6565:219::-;6714:2;6703:9;6696:21;6677:4;6734:44;6774:2;6763:9;6759:18;6751:6;6734:44;:::i;10847:356::-;11049:2;11031:21;;;11068:18;;;11061:30;11127:34;11122:2;11107:18;;11100:62;11194:2;11179:18;;10847:356::o;12801:415::-;13003:2;12985:21;;;13042:2;13022:18;;;13015:30;13081:34;13076:2;13061:18;;13054:62;-1:-1:-1;;;13147:2:1;13132:18;;13125:49;13206:3;13191:19;;12801:415::o;15811:253::-;15851:3;-1:-1:-1;;;;;15940:2:1;15937:1;15933:10;15970:2;15967:1;15963:10;16001:3;15997:2;15993:12;15988:3;15985:21;15982:47;;;16009:18;;:::i;16069:128::-;16109:3;16140:1;16136:6;16133:1;16130:13;16127:39;;;16146:18;;:::i;:::-;-1:-1:-1;16182:9:1;;16069:128::o;16202:120::-;16242:1;16268;16258:35;;16273:18;;:::i;:::-;-1:-1:-1;16307:9:1;;16202:120::o;16327:168::-;16367:7;16433:1;16429;16425:6;16421:14;16418:1;16415:21;16410:1;16403:9;16396:17;16392:45;16389:71;;;16440:18;;:::i;:::-;-1:-1:-1;16480:9:1;;16327:168::o;16500:246::-;16540:4;-1:-1:-1;;;;;16653:10:1;;;;16623;;16675:12;;;16672:38;;;16690:18;;:::i;:::-;16727:13;;16500:246;-1:-1:-1;;;16500:246:1:o;16751:125::-;16791:4;16819:1;16816;16813:8;16810:34;;;16824:18;;:::i;:::-;-1:-1:-1;16861:9:1;;16751:125::o;16881:258::-;16953:1;16963:113;16977:6;16974:1;16971:13;16963:113;;;17053:11;;;17047:18;17034:11;;;17027:39;16999:2;16992:10;16963:113;;;17094:6;17091:1;17088:13;17085:48;;;-1:-1:-1;;17129:1:1;17111:16;;17104:27;16881:258::o;17144:136::-;17183:3;17211:5;17201:39;;17220:18;;:::i;:::-;-1:-1:-1;;;17256:18:1;;17144:136::o;17285:380::-;17364:1;17360:12;;;;17407;;;17428:61;;17482:4;17474:6;17470:17;17460:27;;17428:61;17535:2;17527:6;17524:14;17504:18;17501:38;17498:161;;;17581:10;17576:3;17572:20;17569:1;17562:31;17616:4;17613:1;17606:15;17644:4;17641:1;17634:15;17498:161;;17285:380;;;:::o;17670:135::-;17709:3;-1:-1:-1;;17730:17:1;;17727:43;;;17750:18;;:::i;:::-;-1:-1:-1;17797:1:1;17786:13;;17670:135::o;17810:112::-;17842:1;17868;17858:35;;17873:18;;:::i;:::-;-1:-1:-1;17907:9:1;;17810:112::o;17927:127::-;17988:10;17983:3;17979:20;17976:1;17969:31;18019:4;18016:1;18009:15;18043:4;18040:1;18033:15;18059:127;18120:10;18115:3;18111:20;18108:1;18101:31;18151:4;18148:1;18141:15;18175:4;18172:1;18165:15;18191:127;18252:10;18247:3;18243:20;18240:1;18233:31;18283:4;18280:1;18273:15;18307:4;18304:1;18297:15;18323:127;18384:10;18379:3;18375:20;18372:1;18365:31;18415:4;18412:1;18405:15;18439:4;18436:1;18429:15;18455:131;-1:-1:-1;;;;;18530:31:1;;18520:42;;18510:70;;18576:1;18573;18566:12;18591:131;-1:-1:-1;;;;;;18665:32:1;;18655:43;;18645:71;;18712:1;18709;18702:12

Swarm Source

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