ETH Price: $3,460.56 (-1.73%)
Gas: 4 Gwei

Token

Diamond Hands DAO (DMND)
 

Overview

Max Total Supply

2,129 DMND

Holders

1,417

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DMND
0xd75bb0903549a600609260c50b78d343f4ef65dd
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:
DiamondHandsDao

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    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 > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

contract DiamondHandsDao is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0 ether;
    uint256 public MAX_SUPPLY = 3000;
    uint256 public MAX_MINTS = 250;
    string public baseURI = "ipfs://";
    string public baseExtension = ".json";
     bool public paused = true;   
    
    constructor() ERC721A("Diamond Hands DAO", "DMND", MAX_MINTS, MAX_SUPPLY) {  
    }
    

    function Mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens == 1);
        require(totalSupply() + numTokens <= MAX_SUPPLY);
        require(MAX_MINTS >= numTokens, "Excess max per paid tx");
        _safeMint(msg.sender, numTokens);
    }

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


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

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

    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

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

    function withdrawMoney() external onlyOwner {
      (bool success, ) = msg.sender.call{value: address(this).balance}("");
      require(success, "WITHDRAW FAILED!");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"DevsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007818155600991909155610bb8600a5560fa600b5561010060405260c090815266697066733a2f2f60c81b60e052600c90620000429082620002d8565b50604080518082019091526005815264173539b7b760d91b6020820152600d906200006e9082620002d8565b50600e805460ff191660011790553480156200008957600080fd5b50604051806040016040528060118152602001704469616d6f6e642048616e64732044414f60781b815250604051806040016040528060048152602001631113539160e21b815250600b54600a5460008111620001445760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001a65760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200013b565b6001620001b48582620002d8565b506002620001c38482620002d8565b5060a09190915260805250620001db905033620001e1565b620003a4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025e57607f821691505b6020821081036200027f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002d357600081815260208120601f850160051c81016020861015620002ae5750805b601f850160051c820191505b81811015620002cf57828155600101620002ba565b5050505b505050565b81516001600160401b03811115620002f457620002f462000233565b6200030c8162000305845462000249565b8462000285565b602080601f8311600181146200034457600084156200032b5750858301515b600019600386901b1c1916600185901b178555620002cf565b600085815260208120601f198616915b82811015620003755788860151825594840194600190910190840162000354565b5085821015620003945787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051612aaa620003d5600039600081816119e101528181611a0b0152611f60015260005050612aaa6000f3fe6080604052600436106101fe5760003560e01c8063676dd5631161011d578063a22cb465116100b0578063c87b56dd1161007f578063d7224ba011610064578063d7224ba01461057c578063e985e9c514610592578063f2fde38b146105db57600080fd5b8063c87b56dd14610546578063cce132d11461056657600080fd5b8063a22cb465146104dc578063ac446002146104fc578063b88d4fde14610511578063c66828621461053157600080fd5b806379c9cb7b116100ec57806379c9cb7b146104695780638da5cb5b1461048957806391b7f5ed146104a757806395d89b41146104c757600080fd5b8063676dd563146104095780636c0360eb1461041f57806370a0823114610434578063715018a61461045457600080fd5b80632f745c59116101955780634f6ccce7116101645780634f6ccce71461038f57806355f804b3146103af5780635c975abb146103cf5780636352211e146103e957600080fd5b80632f745c591461032657806332cb6b0c146103465780633fa6a9731461035c57806342842e0e1461036f57600080fd5b8063081812fc116101d1578063081812fc1461028f578063095ea7b3146102c757806318160ddd146102e757806323b872dd1461030657600080fd5b806301ffc9a71461020357806302329a291461023857806306fdde031461025a578063078837031461027c575b600080fd5b34801561020f57600080fd5b5061022361021e36600461227b565b6105fb565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b506102586102533660046122b4565b61072c565b005b34801561026657600080fd5b5061026f6107bc565b60405161022f9190612345565b61025861028a366004612358565b61084e565b34801561029b57600080fd5b506102af6102aa366004612358565b61092f565b6040516001600160a01b03909116815260200161022f565b3480156102d357600080fd5b506102586102e2366004612388565b6109ca565b3480156102f357600080fd5b506000545b60405190815260200161022f565b34801561031257600080fd5b506102586103213660046123b2565b610afc565b34801561033257600080fd5b506102f8610341366004612388565b610b07565b34801561035257600080fd5b506102f8600a5481565b61025861036a366004612358565b610cae565b34801561037b57600080fd5b5061025861038a3660046123b2565b610d08565b34801561039b57600080fd5b506102f86103aa366004612358565b610d23565b3480156103bb57600080fd5b506102586103ca3660046124b1565b610d9f565b3480156103db57600080fd5b50600e546102239060ff1681565b3480156103f557600080fd5b506102af610404366004612358565b610e09565b34801561041557600080fd5b506102f860095481565b34801561042b57600080fd5b5061026f610e1b565b34801561044057600080fd5b506102f861044f3660046124fa565b610ea9565b34801561046057600080fd5b50610258610f55565b34801561047557600080fd5b50610258610484366004612358565b610fbb565b34801561049557600080fd5b506008546001600160a01b03166102af565b3480156104b357600080fd5b506102586104c2366004612358565b61101a565b3480156104d357600080fd5b5061026f611079565b3480156104e857600080fd5b506102586104f7366004612515565b611088565b34801561050857600080fd5b5061025861116a565b34801561051d57600080fd5b5061025861052c366004612548565b61125c565b34801561053d57600080fd5b5061026f6112eb565b34801561055257600080fd5b5061026f610561366004612358565b6112f8565b34801561057257600080fd5b506102f8600b5481565b34801561058857600080fd5b506102f860075481565b34801561059e57600080fd5b506102236105ad3660046125c4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102586105f63660046124fa565b6113b0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061068e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106da57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061072657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6008546001600160a01b0316331461078b5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600180546107cb906125ee565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906125ee565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b600e5460ff16156108a15760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610782565b806001146108ae57600080fd5b600a54816108bb60005490565b6108c59190612670565b11156108d057600080fd5b80600b5410156109225760405162461bcd60e51b815260206004820152601660248201527f457863657373206d6178207065722070616964207478000000000000000000006044820152606401610782565b61092c338261148f565b50565b600061093c826000541190565b6109ae5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610782565b506000908152600560205260409020546001600160a01b031690565b60006109d582610e09565b9050806001600160a01b0316836001600160a01b031603610a5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610782565b336001600160a01b0382161480610a7a5750610a7a81336105ad565b610aec5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610782565b610af78383836114a9565b505050565b610af783838361151d565b6000610b1283610ea9565b8210610b865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610782565b600080549080805b83811015610c3f576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610bf257805192505b876001600160a01b0316836001600160a01b031603610c2c57868403610c1e5750935061072692505050565b83610c2881612688565b9450505b5080610c3781612688565b915050610b8e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610782565b6008546001600160a01b031633146109225760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b610af78383836040518060200160405280600081525061125c565b600080548210610d9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610782565b5090565b6008546001600160a01b03163314610df95760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600c610e058282612706565b5050565b6000610e148261194c565b5192915050565b600c8054610e28906125ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e54906125ee565b8015610ea15780601f10610e7657610100808354040283529160200191610ea1565b820191906000526020600020905b815481529060010190602001808311610e8457829003601f168201915b505050505081565b60006001600160a01b038216610f275760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610782565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6008546001600160a01b03163314610faf5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b610fb96000611b28565b565b6008546001600160a01b031633146110155760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600b55565b6008546001600160a01b031633146110745760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600955565b6060600280546107cb906125ee565b336001600160a01b038316036110e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610782565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111c45760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b604051600090339047908381818185875af1925050503d8060008114611206576040519150601f19603f3d011682016040523d82523d6000602084013e61120b565b606091505b505090508061092c5760405162461bcd60e51b815260206004820152601060248201527f5749544844524157204641494c454421000000000000000000000000000000006044820152606401610782565b61126784848461151d565b61127384848484611b92565b6112e55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b50505050565b600d8054610e28906125ee565b6060611305826000541190565b6113515760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610782565b6000600c8054611360906125ee565b90501161137c5760405180602001604052806000815250610726565b600c61138783611d52565b600d60405160200161139b939291906128b1565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461140a5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b6001600160a01b0381166114865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610782565b61092c81611b28565b610e05828260405180602001604052806000815250611e87565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115288261194c565b80519091506000906001600160a01b0316336001600160a01b0316148061155f5750336115548461092f565b6001600160a01b0316145b806115715750815161157190336105ad565b9050806115e65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610782565b846001600160a01b031682600001516001600160a01b0316146116715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610782565b6001600160a01b0384166116ed5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610782565b6116fd60008484600001516114a9565b6001600160a01b03851660009081526004602052604081208054600192906117389084906fffffffffffffffffffffffffffffffff166128e4565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261178d91859116612915565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055611847846001612670565b6000818152600360205260409020549091506001600160a01b031661190257611871816000541190565b156119025760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261196b826000541190565b6119dd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610782565b60007f00000000000000000000000000000000000000000000000000000000000000008310611a3e57611a307f000000000000000000000000000000000000000000000000000000000000000084612949565b611a3b906001612670565b90505b825b818110611ab9576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611aa657949350505050565b5080611ab181612960565b915050611a40565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610782565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d46576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611bef903390899088908890600401612995565b6020604051808303816000875af1925050508015611c48575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c45918101906129d1565b60015b611cfb573d808015611c76576040519150601f19603f3d011682016040523d82523d6000602084013e611c7b565b606091505b508051600003611cf35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d4a565b5060015b949350505050565b606081600003611d9557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dbf5780611da981612688565b9150611db89050600a83612a1d565b9150611d99565b60008167ffffffffffffffff811115611dda57611dda6123ee565b6040519080825280601f01601f191660200182016040528015611e04576020820181803683370190505b5090505b8415611d4a57611e19600183612949565b9150611e26600a86612a31565b611e31906030612670565b60f81b818381518110611e4657611e46612a45565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e80600a86612a1d565b9450611e08565b6000546001600160a01b038416611f065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610782565b611f11816000541190565b15611f5e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610782565b7f0000000000000000000000000000000000000000000000000000000000000000831115611ff45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610782565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612066908790612915565b6fffffffffffffffffffffffffffffffff16815260200185836020015161208d9190612915565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156122425760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121b06000888488611b92565b6122225760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b8161222c81612688565b925050808061223a90612688565b915050612163565b506000819055611944565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461092c57600080fd5b60006020828403121561228d57600080fd5b81356122988161224d565b9392505050565b803580151581146122af57600080fd5b919050565b6000602082840312156122c657600080fd5b6122988261229f565b60005b838110156122ea5781810151838201526020016122d2565b838111156112e55750506000910152565b600081518084526123138160208601602086016122cf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061229860208301846122fb565b60006020828403121561236a57600080fd5b5035919050565b80356001600160a01b03811681146122af57600080fd5b6000806040838503121561239b57600080fd5b6123a483612371565b946020939093013593505050565b6000806000606084860312156123c757600080fd5b6123d084612371565b92506123de60208501612371565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612438576124386123ee565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561247e5761247e6123ee565b8160405280935085815286868601111561249757600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124c357600080fd5b813567ffffffffffffffff8111156124da57600080fd5b8201601f810184136124eb57600080fd5b611d4a8482356020840161241d565b60006020828403121561250c57600080fd5b61229882612371565b6000806040838503121561252857600080fd5b61253183612371565b915061253f6020840161229f565b90509250929050565b6000806000806080858703121561255e57600080fd5b61256785612371565b935061257560208601612371565b925060408501359150606085013567ffffffffffffffff81111561259857600080fd5b8501601f810187136125a957600080fd5b6125b88782356020840161241d565b91505092959194509250565b600080604083850312156125d757600080fd5b6125e083612371565b915061253f60208401612371565b600181811c9082168061260257607f821691505b60208210810361263b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561268357612683612641565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126b9576126b9612641565b5060010190565b601f821115610af757600081815260208120601f850160051c810160208610156126e75750805b601f850160051c820191505b81811015611944578281556001016126f3565b815167ffffffffffffffff811115612720576127206123ee565b6127348161272e84546125ee565b846126c0565b602080601f83116001811461278757600084156127515750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611944565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156127d4578886015182559484019460019091019084016127b5565b508582101561281057878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b6000815461282d816125ee565b600182811680156128455760018114612878576128a7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506128a7565b8560005260208060002060005b8581101561289e5781548a820152908401908201612885565b50505082870194505b5050505092915050565b60006128bd8286612820565b84516128cd8183602089016122cf565b6128d981830186612820565b979650505050505050565b60006fffffffffffffffffffffffffffffffff8381169083168181101561290d5761290d612641565b039392505050565b60006fffffffffffffffffffffffffffffffff80831681851680830382111561294057612940612641565b01949350505050565b60008282101561295b5761295b612641565b500390565b60008161296f5761296f612641565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129c760808301846122fb565b9695505050505050565b6000602082840312156129e357600080fd5b81516122988161224d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a2c57612a2c6129ee565b500490565b600082612a4057612a406129ee565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209235f1578bdb67b0e9e26c390573c6b9b55bb19d41911b0404c77be74551ee0464736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101fe5760003560e01c8063676dd5631161011d578063a22cb465116100b0578063c87b56dd1161007f578063d7224ba011610064578063d7224ba01461057c578063e985e9c514610592578063f2fde38b146105db57600080fd5b8063c87b56dd14610546578063cce132d11461056657600080fd5b8063a22cb465146104dc578063ac446002146104fc578063b88d4fde14610511578063c66828621461053157600080fd5b806379c9cb7b116100ec57806379c9cb7b146104695780638da5cb5b1461048957806391b7f5ed146104a757806395d89b41146104c757600080fd5b8063676dd563146104095780636c0360eb1461041f57806370a0823114610434578063715018a61461045457600080fd5b80632f745c59116101955780634f6ccce7116101645780634f6ccce71461038f57806355f804b3146103af5780635c975abb146103cf5780636352211e146103e957600080fd5b80632f745c591461032657806332cb6b0c146103465780633fa6a9731461035c57806342842e0e1461036f57600080fd5b8063081812fc116101d1578063081812fc1461028f578063095ea7b3146102c757806318160ddd146102e757806323b872dd1461030657600080fd5b806301ffc9a71461020357806302329a291461023857806306fdde031461025a578063078837031461027c575b600080fd5b34801561020f57600080fd5b5061022361021e36600461227b565b6105fb565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b506102586102533660046122b4565b61072c565b005b34801561026657600080fd5b5061026f6107bc565b60405161022f9190612345565b61025861028a366004612358565b61084e565b34801561029b57600080fd5b506102af6102aa366004612358565b61092f565b6040516001600160a01b03909116815260200161022f565b3480156102d357600080fd5b506102586102e2366004612388565b6109ca565b3480156102f357600080fd5b506000545b60405190815260200161022f565b34801561031257600080fd5b506102586103213660046123b2565b610afc565b34801561033257600080fd5b506102f8610341366004612388565b610b07565b34801561035257600080fd5b506102f8600a5481565b61025861036a366004612358565b610cae565b34801561037b57600080fd5b5061025861038a3660046123b2565b610d08565b34801561039b57600080fd5b506102f86103aa366004612358565b610d23565b3480156103bb57600080fd5b506102586103ca3660046124b1565b610d9f565b3480156103db57600080fd5b50600e546102239060ff1681565b3480156103f557600080fd5b506102af610404366004612358565b610e09565b34801561041557600080fd5b506102f860095481565b34801561042b57600080fd5b5061026f610e1b565b34801561044057600080fd5b506102f861044f3660046124fa565b610ea9565b34801561046057600080fd5b50610258610f55565b34801561047557600080fd5b50610258610484366004612358565b610fbb565b34801561049557600080fd5b506008546001600160a01b03166102af565b3480156104b357600080fd5b506102586104c2366004612358565b61101a565b3480156104d357600080fd5b5061026f611079565b3480156104e857600080fd5b506102586104f7366004612515565b611088565b34801561050857600080fd5b5061025861116a565b34801561051d57600080fd5b5061025861052c366004612548565b61125c565b34801561053d57600080fd5b5061026f6112eb565b34801561055257600080fd5b5061026f610561366004612358565b6112f8565b34801561057257600080fd5b506102f8600b5481565b34801561058857600080fd5b506102f860075481565b34801561059e57600080fd5b506102236105ad3660046125c4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102586105f63660046124fa565b6113b0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061068e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106da57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061072657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6008546001600160a01b0316331461078b5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e6572000000000000000000000060448201526064015b60405180910390fd5b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060600180546107cb906125ee565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906125ee565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b600e5460ff16156108a15760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610782565b806001146108ae57600080fd5b600a54816108bb60005490565b6108c59190612670565b11156108d057600080fd5b80600b5410156109225760405162461bcd60e51b815260206004820152601660248201527f457863657373206d6178207065722070616964207478000000000000000000006044820152606401610782565b61092c338261148f565b50565b600061093c826000541190565b6109ae5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610782565b506000908152600560205260409020546001600160a01b031690565b60006109d582610e09565b9050806001600160a01b0316836001600160a01b031603610a5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610782565b336001600160a01b0382161480610a7a5750610a7a81336105ad565b610aec5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610782565b610af78383836114a9565b505050565b610af783838361151d565b6000610b1283610ea9565b8210610b865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610782565b600080549080805b83811015610c3f576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610bf257805192505b876001600160a01b0316836001600160a01b031603610c2c57868403610c1e5750935061072692505050565b83610c2881612688565b9450505b5080610c3781612688565b915050610b8e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610782565b6008546001600160a01b031633146109225760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b610af78383836040518060200160405280600081525061125c565b600080548210610d9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610782565b5090565b6008546001600160a01b03163314610df95760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600c610e058282612706565b5050565b6000610e148261194c565b5192915050565b600c8054610e28906125ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610e54906125ee565b8015610ea15780601f10610e7657610100808354040283529160200191610ea1565b820191906000526020600020905b815481529060010190602001808311610e8457829003601f168201915b505050505081565b60006001600160a01b038216610f275760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610782565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6008546001600160a01b03163314610faf5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b610fb96000611b28565b565b6008546001600160a01b031633146110155760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600b55565b6008546001600160a01b031633146110745760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b600955565b6060600280546107cb906125ee565b336001600160a01b038316036110e05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610782565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111c45760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b604051600090339047908381818185875af1925050503d8060008114611206576040519150601f19603f3d011682016040523d82523d6000602084013e61120b565b606091505b505090508061092c5760405162461bcd60e51b815260206004820152601060248201527f5749544844524157204641494c454421000000000000000000000000000000006044820152606401610782565b61126784848461151d565b61127384848484611b92565b6112e55760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b50505050565b600d8054610e28906125ee565b6060611305826000541190565b6113515760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610782565b6000600c8054611360906125ee565b90501161137c5760405180602001604052806000815250610726565b600c61138783611d52565b600d60405160200161139b939291906128b1565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461140a5760405162461bcd60e51b815260206004820152601560248201527f596f7520617265206e6f7420746865206f776e657200000000000000000000006044820152606401610782565b6001600160a01b0381166114865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610782565b61092c81611b28565b610e05828260405180602001604052806000815250611e87565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115288261194c565b80519091506000906001600160a01b0316336001600160a01b0316148061155f5750336115548461092f565b6001600160a01b0316145b806115715750815161157190336105ad565b9050806115e65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610782565b846001600160a01b031682600001516001600160a01b0316146116715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610782565b6001600160a01b0384166116ed5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610782565b6116fd60008484600001516114a9565b6001600160a01b03851660009081526004602052604081208054600192906117389084906fffffffffffffffffffffffffffffffff166128e4565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261178d91859116612915565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055611847846001612670565b6000818152600360205260409020549091506001600160a01b031661190257611871816000541190565b156119025760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff908116828501908152600087815260039093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261196b826000541190565b6119dd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610782565b60007f00000000000000000000000000000000000000000000000000000000000000fa8310611a3e57611a307f00000000000000000000000000000000000000000000000000000000000000fa84612949565b611a3b906001612670565b90505b825b818110611ab9576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611aa657949350505050565b5080611ab181612960565b915050611a40565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610782565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611d46576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611bef903390899088908890600401612995565b6020604051808303816000875af1925050508015611c48575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c45918101906129d1565b60015b611cfb573d808015611c76576040519150601f19603f3d011682016040523d82523d6000602084013e611c7b565b606091505b508051600003611cf35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611d4a565b5060015b949350505050565b606081600003611d9557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dbf5780611da981612688565b9150611db89050600a83612a1d565b9150611d99565b60008167ffffffffffffffff811115611dda57611dda6123ee565b6040519080825280601f01601f191660200182016040528015611e04576020820181803683370190505b5090505b8415611d4a57611e19600183612949565b9150611e26600a86612a31565b611e31906030612670565b60f81b818381518110611e4657611e46612a45565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e80600a86612a1d565b9450611e08565b6000546001600160a01b038416611f065760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610782565b611f11816000541190565b15611f5e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610782565b7f00000000000000000000000000000000000000000000000000000000000000fa831115611ff45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610782565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612066908790612915565b6fffffffffffffffffffffffffffffffff16815260200185836020015161208d9190612915565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260046020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156122425760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121b06000888488611b92565b6122225760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610782565b8161222c81612688565b925050808061223a90612688565b915050612163565b506000819055611944565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461092c57600080fd5b60006020828403121561228d57600080fd5b81356122988161224d565b9392505050565b803580151581146122af57600080fd5b919050565b6000602082840312156122c657600080fd5b6122988261229f565b60005b838110156122ea5781810151838201526020016122d2565b838111156112e55750506000910152565b600081518084526123138160208601602086016122cf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061229860208301846122fb565b60006020828403121561236a57600080fd5b5035919050565b80356001600160a01b03811681146122af57600080fd5b6000806040838503121561239b57600080fd5b6123a483612371565b946020939093013593505050565b6000806000606084860312156123c757600080fd5b6123d084612371565b92506123de60208501612371565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612438576124386123ee565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561247e5761247e6123ee565b8160405280935085815286868601111561249757600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124c357600080fd5b813567ffffffffffffffff8111156124da57600080fd5b8201601f810184136124eb57600080fd5b611d4a8482356020840161241d565b60006020828403121561250c57600080fd5b61229882612371565b6000806040838503121561252857600080fd5b61253183612371565b915061253f6020840161229f565b90509250929050565b6000806000806080858703121561255e57600080fd5b61256785612371565b935061257560208601612371565b925060408501359150606085013567ffffffffffffffff81111561259857600080fd5b8501601f810187136125a957600080fd5b6125b88782356020840161241d565b91505092959194509250565b600080604083850312156125d757600080fd5b6125e083612371565b915061253f60208401612371565b600181811c9082168061260257607f821691505b60208210810361263b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561268357612683612641565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126b9576126b9612641565b5060010190565b601f821115610af757600081815260208120601f850160051c810160208610156126e75750805b601f850160051c820191505b81811015611944578281556001016126f3565b815167ffffffffffffffff811115612720576127206123ee565b6127348161272e84546125ee565b846126c0565b602080601f83116001811461278757600084156127515750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555611944565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156127d4578886015182559484019460019091019084016127b5565b508582101561281057878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b6000815461282d816125ee565b600182811680156128455760018114612878576128a7565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506128a7565b8560005260208060002060005b8581101561289e5781548a820152908401908201612885565b50505082870194505b5050505092915050565b60006128bd8286612820565b84516128cd8183602089016122cf565b6128d981830186612820565b979650505050505050565b60006fffffffffffffffffffffffffffffffff8381169083168181101561290d5761290d612641565b039392505050565b60006fffffffffffffffffffffffffffffffff80831681851680830382111561294057612940612641565b01949350505050565b60008282101561295b5761295b612641565b500390565b60008161296f5761296f612641565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129c760808301846122fb565b9695505050505050565b6000602082840312156129e357600080fd5b81516122988161224d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a2c57612a2c6129ee565b500490565b600082612a4057612a406129ee565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209235f1578bdb67b0e9e26c390573c6b9b55bb19d41911b0404c77be74551ee0464736f6c634300080f0033

Deployed Bytecode Sourcemap

39750:2023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24886:370;;;;;;;;;;-1:-1:-1;24886:370:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;24886:370:0;;;;;;;;40571:79;;;;;;;;;;-1:-1:-1;40571:79:0;;;;;:::i;:::-;;:::i;:::-;;26612:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40143:297::-;;;;;;:::i;:::-;;:::i;28146:204::-;;;;;;;;;;-1:-1:-1;28146:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2147:55:1;;;2129:74;;2117:2;2102:18;28146:204:0;1983:226:1;27709:379:0;;;;;;;;;;-1:-1:-1;27709:379:0;;;;;:::i;:::-;;:::i;23447:94::-;;;;;;;;;;-1:-1:-1;23500:7:0;23523:12;23447:94;;;2820:25:1;;;2808:2;2793:18;23447:94:0;2674:177:1;28996:142:0;;;;;;;;;;-1:-1:-1;28996:142:0;;;;;:::i;:::-;;:::i;24078:744::-;;;;;;;;;;-1:-1:-1;24078:744:0;;;;;:::i;:::-;;:::i;39843:32::-;;;;;;;;;;;;;;;;40448:113;;;;;;:::i;:::-;;:::i;29201:157::-;;;;;;;;;;-1:-1:-1;29201:157:0;;;;;:::i;:::-;;:::i;23610:177::-;;;;;;;;;;-1:-1:-1;23610:177:0;;;;;:::i;:::-;;:::i;40658:102::-;;;;;;;;;;-1:-1:-1;40658:102:0;;;;;:::i;:::-;;:::i;40004:25::-;;;;;;;;;;-1:-1:-1;40004:25:0;;;;;;;;26435:118;;;;;;;;;;-1:-1:-1;26435:118:0;;;;;:::i;:::-;;:::i;39802:34::-;;;;;;;;;;;;;;;;39919:33;;;;;;;;;;;;;:::i;25312:211::-;;;;;;;;;;-1:-1:-1;25312:211:0;;;;;:::i;:::-;;:::i;38867:103::-;;;;;;;;;;;;;:::i;41381:91::-;;;;;;;;;;-1:-1:-1;41381:91:0;;;;;:::i;:::-;;:::i;38227:87::-;;;;;;;;;;-1:-1:-1;38300:6:0;;-1:-1:-1;;;;;38300:6:0;38227:87;;41281:92;;;;;;;;;;-1:-1:-1;41281:92:0;;;;;:::i;:::-;;:::i;26767:98::-;;;;;;;;;;;;;:::i;28414:274::-;;;;;;;;;;-1:-1:-1;28414:274:0;;;;;:::i;:::-;;:::i;41596:174::-;;;;;;;;;;;;;:::i;29421:311::-;;;;;;;;;;-1:-1:-1;29421:311:0;;;;;:::i;:::-;;:::i;39959:37::-;;;;;;;;;;;;;:::i;40766:507::-;;;;;;;;;;-1:-1:-1;40766:507:0;;;;;:::i;:::-;;:::i;39882:30::-;;;;;;;;;;;;;;;;33836:43;;;;;;;;;;;;;;;;28751:186;;;;;;;;;;-1:-1:-1;28751:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28896:25:0;;;28873:4;28896:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28751:186;39125:238;;;;;;;;;;-1:-1:-1;39125:238:0;;;;;:::i;:::-;;:::i;24886:370::-;25013:4;25043:40;;;25058:25;25043:40;;:99;;-1:-1:-1;25094:48:0;;;25109:33;25094:48;25043:99;:160;;;-1:-1:-1;25153:50:0;;;25168:35;25153:50;25043:160;:207;;;-1:-1:-1;8632:25:0;8617:40;;;;25214:36;25029:221;24886:370;-1:-1:-1;;24886:370:0:o;40571:79::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;;;;;;;;;40627:6:::1;:15:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;40571:79::o;26612:94::-;26666:13;26695:5;26688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:94;:::o;40143:297::-;40211:6;;;;40210:7;40202:26;;;;-1:-1:-1;;;40202:26:0;;6911:2:1;40202:26:0;;;6893:21:1;6950:1;6930:18;;;6923:29;6988:8;6968:18;;;6961:36;7014:18;;40202:26:0;6709:329:1;40202:26:0;40247:9;40260:1;40247:14;40239:23;;;;;;40310:10;;40297:9;40281:13;23500:7;23523:12;;23447:94;40281:13;:25;;;;:::i;:::-;:39;;40273:48;;;;;;40353:9;40340;;:22;;40332:57;;;;-1:-1:-1;;;40332:57:0;;7567:2:1;40332:57:0;;;7549:21:1;7606:2;7586:18;;;7579:30;7645:24;7625:18;;;7618:52;7687:18;;40332:57:0;7365:346:1;40332:57:0;40400:32;40410:10;40422:9;40400;:32::i;:::-;40143:297;:::o;28146:204::-;28214:7;28238:16;28246:7;30028:4;30058:12;-1:-1:-1;30048:22:0;29971:105;28238:16;28230:74;;;;-1:-1:-1;;;28230:74:0;;7918:2:1;28230:74:0;;;7900:21:1;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;8067:15;8047:18;;;8040:43;8100:19;;28230:74:0;7716:409:1;28230:74:0;-1:-1:-1;28320:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28320:24:0;;28146:204::o;27709:379::-;27778:13;27794:24;27810:7;27794:15;:24::i;:::-;27778:40;;27839:5;-1:-1:-1;;;;;27833:11:0;:2;-1:-1:-1;;;;;27833:11:0;;27825:58;;;;-1:-1:-1;;;27825:58:0;;8332:2:1;27825:58:0;;;8314:21:1;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;8481:4;8461:18;;;8454:32;8503:19;;27825:58:0;8130:398:1;27825:58:0;17937:10;-1:-1:-1;;;;;27908:21:0;;;;:62;;-1:-1:-1;27933:37:0;27950:5;17937:10;28751:186;:::i;27933:37::-;27892:153;;;;-1:-1:-1;;;27892:153:0;;8735:2:1;27892:153:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;8884:27;8864:18;;;8857:55;8929:19;;27892:153:0;8533:421:1;27892:153:0;28054:28;28063:2;28067:7;28076:5;28054:8;:28::i;:::-;27771:317;27709:379;;:::o;28996:142::-;29104:28;29114:4;29120:2;29124:7;29104:9;:28::i;24078:744::-;24187:7;24222:16;24232:5;24222:9;:16::i;:::-;24214:5;:24;24206:71;;;;-1:-1:-1;;;24206:71:0;;9161:2:1;24206:71:0;;;9143:21:1;9200:2;9180:18;;;9173:30;9239:34;9219:18;;;9212:62;9310:4;9290:18;;;9283:32;9332:19;;24206:71:0;8959:398:1;24206:71:0;24284:22;23523:12;;;24284:22;;24404:350;24428:14;24424:1;:18;24404:350;;;24458:31;24492:14;;;:11;:14;;;;;;;;;24458:48;;;;;;;;;-1:-1:-1;;;;;24458:48:0;;;;;;;;;;;;;;;;;;24519:28;24515:89;;24580:14;;;-1:-1:-1;24515:89:0;24637:5;-1:-1:-1;;;;;24616:26:0;:17;-1:-1:-1;;;;;24616:26:0;;24612:135;;24674:5;24659:11;:20;24655:59;;-1:-1:-1;24701:1:0;-1:-1:-1;24694:8:0;;-1:-1:-1;;;24694:8:0;24655:59;24724:13;;;;:::i;:::-;;;;24612:135;-1:-1:-1;24444:3:0;;;;:::i;:::-;;;;24404:350;;;-1:-1:-1;24760:56:0;;-1:-1:-1;;;24760:56:0;;9764:2:1;24760:56:0;;;9746:21:1;9803:2;9783:18;;;9776:30;9842:34;9822:18;;;9815:62;9913:16;9893:18;;;9886:44;9947:19;;24760:56:0;9562:410:1;40448:113:0;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;29201:157:0;29313:39;29330:4;29336:2;29340:7;29313:39;;;;;;;;;;;;:16;:39::i;23610:177::-;23677:7;23523:12;;23701:5;:21;23693:69;;;;-1:-1:-1;;;23693:69:0;;10179:2:1;23693:69:0;;;10161:21:1;10218:2;10198:18;;;10191:30;10257:34;10237:18;;;10230:62;10328:5;10308:18;;;10301:33;10351:19;;23693:69:0;9977:399:1;23693:69:0;-1:-1:-1;23776:5:0;23610:177::o;40658:102::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;40732:7:::1;:20;40742:10:::0;40732:7;:20:::1;:::i;:::-;;40658:102:::0;:::o;26435:118::-;26499:7;26522:20;26534:7;26522:11;:20::i;:::-;:25;;26435:118;-1:-1:-1;;26435:118:0:o;39919:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25312:211::-;25376:7;-1:-1:-1;;;;;25400:19:0;;25392:75;;;;-1:-1:-1;;;25392:75:0;;12966:2:1;25392:75:0;;;12948:21:1;13005:2;12985:18;;;12978:30;13044:34;13024:18;;;13017:62;13115:13;13095:18;;;13088:41;13146:19;;25392:75:0;12764:407:1;25392:75:0;-1:-1:-1;;;;;;25489:19:0;;;;;:12;:19;;;;;:27;;;;25312:211::o;38867:103::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;38932:30:::1;38959:1;38932:18;:30::i;:::-;38867:103::o:0;41381:91::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;41446:9:::1;:18:::0;41381:91::o;41281:92::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;41345:9:::1;:20:::0;41281:92::o;26767:98::-;26823:13;26852:7;26845:14;;;;;:::i;28414:274::-;17937:10;-1:-1:-1;;;;;28505:24:0;;;28497:63;;;;-1:-1:-1;;;28497:63:0;;13378:2:1;28497:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:28;13436:18;;;13429:56;13502:18;;28497:63:0;13176:350:1;28497:63:0;17937:10;28569:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28569:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;28634:48;;586:41:1;;;28569:42:0;;17937:10;28634:48;;559:18:1;28634:48:0;;;;;;;28414:274;;:::o;41596:174::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;41668:49:::1;::::0;41650:12:::1;::::0;41668:10:::1;::::0;41691:21:::1;::::0;41650:12;41668:49;41650:12;41668:49;41691:21;41668:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41649:68;;;41734:7;41726:36;;;::::0;-1:-1:-1;;;41726:36:0;;13943:2:1;41726:36:0::1;::::0;::::1;13925:21:1::0;13982:2;13962:18;;;13955:30;14021:18;14001;;;13994:46;14057:18;;41726:36:0::1;13741:340:1::0;29421:311:0;29558:28;29568:4;29574:2;29578:7;29558:9;:28::i;:::-;29609:48;29632:4;29638:2;29642:7;29651:5;29609:22;:48::i;:::-;29593:133;;;;-1:-1:-1;;;29593:133:0;;14288:2:1;29593:133:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;14437:21;14417:18;;;14410:49;14476:19;;29593:133:0;14086:415:1;29593:133:0;29421:311;;;;:::o;39959:37::-;;;;;;;:::i;40766:507::-;40868:13;40907:17;40915:8;30028:4;30058:12;-1:-1:-1;30048:22:0;29971:105;40907:17;40899:54;;;;-1:-1:-1;;;40899:54:0;;14708:2:1;40899:54:0;;;14690:21:1;14747:2;14727:18;;;14720:30;14786:26;14766:18;;;14759:54;14830:18;;40899:54:0;14506:348:1;40899:54:0;41008:1;40990:7;40984:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;41101:7;41135:26;41152:8;41135:16;:26::i;:::-;41188:13;41058:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40964:301;40766:507;-1:-1:-1;;40766:507:0:o;39125:238::-;38300:6;;-1:-1:-1;;;;;38300:6:0;17937:10;38447:23;38439:57;;;;-1:-1:-1;;;38439:57:0;;6119:2:1;38439:57:0;;;6101:21:1;6158:2;6138:18;;;6131:30;6197:23;6177:18;;;6170:51;6238:18;;38439:57:0;5917:345:1;38439:57:0;-1:-1:-1;;;;;39228:22:0;::::1;39206:110;;;::::0;-1:-1:-1;;;39206:110:0;;16307:2:1;39206:110:0::1;::::0;::::1;16289:21:1::0;16346:2;16326:18;;;16319:30;16385:34;16365:18;;;16358:62;16456:8;16436:18;;;16429:36;16482:19;;39206:110:0::1;16105:402:1::0;39206:110:0::1;39327:28;39346:8;39327:18;:28::i;30082:98::-:0;30147:27;30157:2;30161:8;30147:27;;;;;;;;;;;;:9;:27::i;33658:172::-;33755:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;33755:29:0;;;;;;;;;33796:28;;33755:24;;33796:28;;;;;;;33658:172;;;:::o;32023:1529::-;32120:35;32158:20;32170:7;32158:11;:20::i;:::-;32229:18;;32120:58;;-1:-1:-1;32187:22:0;;-1:-1:-1;;;;;32213:34:0;17937:10;-1:-1:-1;;;;;32213:34:0;;:81;;;-1:-1:-1;17937:10:0;32258:20;32270:7;32258:11;:20::i;:::-;-1:-1:-1;;;;;32258:36:0;;32213:81;:142;;;-1:-1:-1;32322:18:0;;32305:50;;17937:10;28751:186;:::i;32305:50::-;32187:169;;32381:17;32365:101;;;;-1:-1:-1;;;32365:101:0;;16714:2:1;32365:101:0;;;16696:21:1;16753:2;16733:18;;;16726:30;16792:34;16772:18;;;16765:62;16863:20;16843:18;;;16836:48;16901:19;;32365:101:0;16512:414:1;32365:101:0;32513:4;-1:-1:-1;;;;;32491:26:0;:13;:18;;;-1:-1:-1;;;;;32491:26:0;;32475:98;;;;-1:-1:-1;;;32475:98:0;;17133:2:1;32475:98:0;;;17115:21:1;17172:2;17152:18;;;17145:30;17211:34;17191:18;;;17184:62;17282:8;17262:18;;;17255:36;17308:19;;32475:98:0;16931:402:1;32475:98:0;-1:-1:-1;;;;;32588:16:0;;32580:66;;;;-1:-1:-1;;;32580:66:0;;17540:2:1;32580:66:0;;;17522:21:1;17579:2;17559:18;;;17552:30;17618:34;17598:18;;;17591:62;17689:7;17669:18;;;17662:35;17714:19;;32580:66:0;17338:401:1;32580:66:0;32755:49;32772:1;32776:7;32785:13;:18;;;32755:8;:49::i;:::-;-1:-1:-1;;;;;32813:18:0;;;;;;:12;:18;;;;;:31;;32843:1;;32813:18;:31;;32843:1;;32813:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32851:16:0;;-1:-1:-1;32851:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32851:16:0;;:29;;-1:-1:-1;;32851:29:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32910:43:0;;;;;;;;-1:-1:-1;;;;;32910:43:0;;;;;;32936:15;32910:43;;;;;;;;;-1:-1:-1;32887:20:0;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;33203:11;32899:7;-1:-1:-1;33203:11:0;:::i;:::-;33266:1;33225:24;;;:11;:24;;;;;:29;33181:33;;-1:-1:-1;;;;;;33225:29:0;33221:236;;33283:20;33291:11;30028:4;30058:12;-1:-1:-1;30048:22:0;29971:105;33283:20;33279:171;;;33343:97;;;;;;;;33370:18;;-1:-1:-1;;;;;33343:97:0;;;;;;33401:28;;;;33343:97;;;;;;;;;;-1:-1:-1;33316:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;33279:171;33489:7;33485:2;-1:-1:-1;;;;;33470:27:0;33479:4;-1:-1:-1;;;;;33470:27:0;;;;;;;;;;;33504:42;32113:1439;;;32023:1529;;;:::o;25775:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25892:16:0;25900:7;30028:4;30058:12;-1:-1:-1;30048:22:0;29971:105;25892:16;25884:71;;;;-1:-1:-1;;;25884:71:0;;18455:2:1;25884:71:0;;;18437:21:1;18494:2;18474:18;;;18467:30;18533:34;18513:18;;;18506:62;18604:12;18584:18;;;18577:40;18634:19;;25884:71:0;18253:406:1;25884:71:0;25964:26;26012:12;26001:7;:23;25997:93;;26056:22;26066:12;26056:7;:22;:::i;:::-;:26;;26081:1;26056:26;:::i;:::-;26035:47;;25997:93;26118:7;26098:212;26135:18;26127:4;:26;26098:212;;26172:31;26206:17;;;:11;:17;;;;;;;;;26172:51;;;;;;;;;-1:-1:-1;;;;;26172:51:0;;;;;;;;;;;;;;;;;;26236:28;26232:71;;26284:9;25775:606;-1:-1:-1;;;;25775:606:0:o;26232:71::-;-1:-1:-1;26155:6:0;;;;:::i;:::-;;;;26098:212;;;-1:-1:-1;26318:57:0;;-1:-1:-1;;;26318:57:0;;19197:2:1;26318:57:0;;;19179:21:1;19236:2;19216:18;;;19209:30;19275:34;19255:18;;;19248:62;19346:17;19326:18;;;19319:45;19381:19;;26318:57:0;18995:411:1;39523:191:0;39616:6;;;-1:-1:-1;;;;;39633:17:0;;;;;;;;;;;39666:40;;39616:6;;;39633:17;39616:6;;39666:40;;39597:16;;39666:40;39586:128;39523:191;:::o;35373:690::-;35510:4;-1:-1:-1;;;;;35527:13:0;;9759:20;9807:8;35523:535;;35566:72;;;;;-1:-1:-1;;;;;35566:36:0;;;;;:72;;17937:10;;35617:4;;35623:7;;35632:5;;35566:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35566:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35553:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35797:6;:13;35814:1;35797:18;35793:215;;35830:61;;-1:-1:-1;;;35830:61:0;;14288:2:1;35830:61:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;14437:21;14417:18;;;14410:49;14476:19;;35830:61:0;14086:415:1;35793:215:0;35976:6;35970:13;35961:6;35957:2;35953:15;35946:38;35553:464;35688:55;;35698:45;35688:55;;-1:-1:-1;35681:62:0;;35523:535;-1:-1:-1;36046:4:0;35523:535;35373:690;;;;;;:::o;18380:723::-;18436:13;18657:5;18666:1;18657:10;18653:53;;-1:-1:-1;;18684:10:0;;;;;;;;;;;;;;;;;;18380:723::o;18653:53::-;18731:5;18716:12;18772:78;18779:9;;18772:78;;18805:8;;;;:::i;:::-;;-1:-1:-1;18828:10:0;;-1:-1:-1;18836:2:0;18828:10;;:::i;:::-;;;18772:78;;;18860:19;18892:6;18882:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18882:17:0;;18860:39;;18910:154;18917:10;;18910:154;;18944:11;18954:1;18944:11;;:::i;:::-;;-1:-1:-1;19013:10:0;19021:2;19013:5;:10;:::i;:::-;19000:24;;:2;:24;:::i;:::-;18987:39;;18970:6;18977;18970:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;19041:11:0;19050:2;19041:11;;:::i;:::-;;;18910:154;;30519:1272;30624:20;30647:12;-1:-1:-1;;;;;30674:16:0;;30666:62;;;;-1:-1:-1;;;30666:62:0;;21004:2:1;30666:62:0;;;20986:21:1;21043:2;21023:18;;;21016:30;21082:34;21062:18;;;21055:62;21153:3;21133:18;;;21126:31;21174:19;;30666:62:0;20802:397:1;30666:62:0;30865:21;30873:12;30028:4;30058:12;-1:-1:-1;30048:22:0;29971:105;30865:21;30864:22;30856:64;;;;-1:-1:-1;;;30856:64:0;;21406:2:1;30856:64:0;;;21388:21:1;21445:2;21425:18;;;21418:30;21484:31;21464:18;;;21457:59;21533:18;;30856:64:0;21204:353:1;30856:64:0;30947:12;30935:8;:24;;30927:71;;;;-1:-1:-1;;;30927:71:0;;21764:2:1;30927:71:0;;;21746:21:1;21803:2;21783:18;;;21776:30;21842:34;21822:18;;;21815:62;21913:4;21893:18;;;21886:32;21935:19;;30927:71:0;21562:398:1;30927:71:0;-1:-1:-1;;;;;31110:16:0;;31077:30;31110:16;;;:12;:16;;;;;;;;;31077:49;;;;;;;;;;;;;;;;;;;;;;;;;;;31152:119;;;;;;;;31172:19;;31077:49;;31152:119;;;31172:39;;31202:8;;31172:39;:::i;:::-;31152:119;;;;;;31255:8;31220:11;:24;;;:44;;;;:::i;:::-;31152:119;;;;;;;-1:-1:-1;;;;;31133:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;31306:43;;;;;;;;;;;31332:15;31306:43;;;;;;;;31278:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31290:12;;31402:281;31426:8;31422:1;:12;31402:281;;;31455:38;;31480:12;;-1:-1:-1;;;;;31455:38:0;;;31472:1;;31455:38;;31472:1;;31455:38;31520:59;31551:1;31555:2;31559:12;31573:5;31520:22;:59::i;:::-;31502:150;;;;-1:-1:-1;;;31502:150:0;;14288:2:1;31502:150:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;14437:21;14417:18;;;14410:49;14476:19;;31502:150:0;14086:415:1;31502:150:0;31661:14;;;;:::i;:::-;;;;31436:3;;;;;:::i;:::-;;;;31402:281;;;-1:-1:-1;31691:12:0;:27;;;31725:60;29421:311;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;988:258::-;1060:1;1070:113;1084:6;1081:1;1078:13;1070:113;;;1160:11;;;1154:18;1141:11;;;1134:39;1106:2;1099:10;1070:113;;;1201:6;1198:1;1195:13;1192:48;;;-1:-1:-1;;1236:1:1;1218:16;;1211:27;988:258::o;1251:317::-;1293:3;1331:5;1325:12;1358:6;1353:3;1346:19;1374:63;1430:6;1423:4;1418:3;1414:14;1407:4;1400:5;1396:16;1374:63;:::i;:::-;1482:2;1470:15;1487:66;1466:88;1457:98;;;;1557:4;1453:109;;1251:317;-1:-1:-1;;1251:317:1:o;1573:220::-;1722:2;1711:9;1704:21;1685:4;1742:45;1783:2;1772:9;1768:18;1760:6;1742:45;:::i;1798:180::-;1857:6;1910:2;1898:9;1889:7;1885:23;1881:32;1878:52;;;1926:1;1923;1916:12;1878:52;-1:-1:-1;1949:23:1;;1798:180;-1:-1:-1;1798:180:1:o;2214:196::-;2282:20;;-1:-1:-1;;;;;2331:54:1;;2321:65;;2311:93;;2400:1;2397;2390:12;2415:254;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2856:328::-;2933:6;2941;2949;3002:2;2990:9;2981:7;2977:23;2973:32;2970:52;;;3018:1;3015;3008:12;2970:52;3041:29;3060:9;3041:29;:::i;:::-;3031:39;;3089:38;3123:2;3112:9;3108:18;3089:38;:::i;:::-;3079:48;;3174:2;3163:9;3159:18;3146:32;3136:42;;2856:328;;;;;:::o;3189:184::-;3241:77;3238:1;3231:88;3338:4;3335:1;3328:15;3362:4;3359:1;3352:15;3378:691;3443:5;3473:18;3514:2;3506:6;3503:14;3500:40;;;3520:18;;:::i;:::-;3654:2;3648:9;3720:2;3708:15;;3559:66;3704:24;;;3730:2;3700:33;3696:42;3684:55;;;3754:18;;;3774:22;;;3751:46;3748:72;;;3800:18;;:::i;:::-;3840:10;3836:2;3829:22;3869:6;3860:15;;3899:6;3891;3884:22;3939:3;3930:6;3925:3;3921:16;3918:25;3915:45;;;3956:1;3953;3946:12;3915:45;4006:6;4001:3;3994:4;3986:6;3982:17;3969:44;4061:1;4054:4;4045:6;4037;4033:19;4029:30;4022:41;;;;3378:691;;;;;:::o;4074:451::-;4143:6;4196:2;4184:9;4175:7;4171:23;4167:32;4164:52;;;4212:1;4209;4202:12;4164:52;4252:9;4239:23;4285:18;4277:6;4274:30;4271:50;;;4317:1;4314;4307:12;4271:50;4340:22;;4393:4;4385:13;;4381:27;-1:-1:-1;4371:55:1;;4422:1;4419;4412:12;4371:55;4445:74;4511:7;4506:2;4493:16;4488:2;4484;4480:11;4445:74;:::i;4530:186::-;4589:6;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4681:29;4700:9;4681:29;:::i;4721:254::-;4786:6;4794;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;4886:29;4905:9;4886:29;:::i;:::-;4876:39;;4934:35;4965:2;4954:9;4950:18;4934:35;:::i;:::-;4924:45;;4721:254;;;;;:::o;4980:667::-;5075:6;5083;5091;5099;5152:3;5140:9;5131:7;5127:23;5123:33;5120:53;;;5169:1;5166;5159:12;5120:53;5192:29;5211:9;5192:29;:::i;:::-;5182:39;;5240:38;5274:2;5263:9;5259:18;5240:38;:::i;:::-;5230:48;;5325:2;5314:9;5310:18;5297:32;5287:42;;5380:2;5369:9;5365:18;5352:32;5407:18;5399:6;5396:30;5393:50;;;5439:1;5436;5429:12;5393:50;5462:22;;5515:4;5507:13;;5503:27;-1:-1:-1;5493:55:1;;5544:1;5541;5534:12;5493:55;5567:74;5633:7;5628:2;5615:16;5610:2;5606;5602:11;5567:74;:::i;:::-;5557:84;;;4980:667;;;;;;;:::o;5652:260::-;5720:6;5728;5781:2;5769:9;5760:7;5756:23;5752:32;5749:52;;;5797:1;5794;5787:12;5749:52;5820:29;5839:9;5820:29;:::i;:::-;5810:39;;5868:38;5902:2;5891:9;5887:18;5868:38;:::i;6267:437::-;6346:1;6342:12;;;;6389;;;6410:61;;6464:4;6456:6;6452:17;6442:27;;6410:61;6517:2;6509:6;6506:14;6486:18;6483:38;6480:218;;6554:77;6551:1;6544:88;6655:4;6652:1;6645:15;6683:4;6680:1;6673:15;6480:218;;6267:437;;;:::o;7043:184::-;7095:77;7092:1;7085:88;7192:4;7189:1;7182:15;7216:4;7213:1;7206:15;7232:128;7272:3;7303:1;7299:6;7296:1;7293:13;7290:39;;;7309:18;;:::i;:::-;-1:-1:-1;7345:9:1;;7232:128::o;9362:195::-;9401:3;9432:66;9425:5;9422:77;9419:103;;9502:18;;:::i;:::-;-1:-1:-1;9549:1:1;9538:13;;9362:195::o;10507:545::-;10609:2;10604:3;10601:11;10598:448;;;10645:1;10670:5;10666:2;10659:17;10715:4;10711:2;10701:19;10785:2;10773:10;10769:19;10766:1;10762:27;10756:4;10752:38;10821:4;10809:10;10806:20;10803:47;;;-1:-1:-1;10844:4:1;10803:47;10899:2;10894:3;10890:12;10887:1;10883:20;10877:4;10873:31;10863:41;;10954:82;10972:2;10965:5;10962:13;10954:82;;;11017:17;;;10998:1;10987:13;10954:82;;11288:1471;11414:3;11408:10;11441:18;11433:6;11430:30;11427:56;;;11463:18;;:::i;:::-;11492:97;11582:6;11542:38;11574:4;11568:11;11542:38;:::i;:::-;11536:4;11492:97;:::i;:::-;11644:4;;11708:2;11697:14;;11725:1;11720:782;;;;12546:1;12563:6;12560:89;;;-1:-1:-1;12615:19:1;;;12609:26;12560:89;11194:66;11185:1;11181:11;;;11177:84;11173:89;11163:100;11269:1;11265:11;;;11160:117;12662:81;;11690:1063;;11720:782;10454:1;10447:14;;;10491:4;10478:18;;11768:66;11756:79;;;11933:236;11947:7;11944:1;11941:14;11933:236;;;12036:19;;;12030:26;12015:42;;12128:27;;;;12096:1;12084:14;;;;11963:19;;11933:236;;;11937:3;12197:6;12188:7;12185:19;12182:261;;;12258:19;;;12252:26;12359:66;12341:1;12337:14;;;12353:3;12333:24;12329:97;12325:102;12310:118;12295:134;;12182:261;-1:-1:-1;;;;;12489:1:1;12473:14;;;12469:22;12456:36;;-1:-1:-1;11288:1471:1:o;14859:780::-;14909:3;14950:5;14944:12;14979:36;15005:9;14979:36;:::i;:::-;15034:1;15051:18;;;15078:191;;;;15283:1;15278:355;;;;15044:589;;15078:191;15126:66;15115:9;15111:82;15106:3;15099:95;15249:6;15242:14;15235:22;15227:6;15223:35;15218:3;15214:45;15207:52;;15078:191;;15278:355;15309:5;15306:1;15299:16;15338:4;15383:2;15380:1;15370:16;15408:1;15422:165;15436:6;15433:1;15430:13;15422:165;;;15514:14;;15501:11;;;15494:35;15557:16;;;;15451:10;;15422:165;;;15426:3;;;15616:6;15611:3;15607:16;15600:23;;15044:589;;;;;14859:780;;;;:::o;15644:456::-;15865:3;15893:38;15927:3;15919:6;15893:38;:::i;:::-;15960:6;15954:13;15976:52;16021:6;16017:2;16010:4;16002:6;15998:17;15976:52;:::i;:::-;16044:50;16086:6;16082:2;16078:15;16070:6;16044:50;:::i;:::-;16037:57;15644:456;-1:-1:-1;;;;;;;15644:456:1:o;17744:246::-;17784:4;17813:34;17897:10;;;;17867;;17919:12;;;17916:38;;;17934:18;;:::i;:::-;17971:13;;17744:246;-1:-1:-1;;;17744:246:1:o;17995:253::-;18035:3;18063:34;18124:2;18121:1;18117:10;18154:2;18151:1;18147:10;18185:3;18181:2;18177:12;18172:3;18169:21;18166:47;;;18193:18;;:::i;:::-;18229:13;;17995:253;-1:-1:-1;;;;17995:253:1:o;18664:125::-;18704:4;18732:1;18729;18726:8;18723:34;;;18737:18;;:::i;:::-;-1:-1:-1;18774:9:1;;18664:125::o;18794:196::-;18833:3;18861:5;18851:39;;18870:18;;:::i;:::-;-1:-1:-1;18917:66:1;18906:78;;18794:196::o;19411:512::-;19605:4;-1:-1:-1;;;;;19715:2:1;19707:6;19703:15;19692:9;19685:34;19767:2;19759:6;19755:15;19750:2;19739:9;19735:18;19728:43;;19807:6;19802:2;19791:9;19787:18;19780:34;19850:3;19845:2;19834:9;19830:18;19823:31;19871:46;19912:3;19901:9;19897:19;19889:6;19871:46;:::i;:::-;19863:54;19411:512;-1:-1:-1;;;;;;19411:512:1:o;19928:249::-;19997:6;20050:2;20038:9;20029:7;20025:23;20021:32;20018:52;;;20066:1;20063;20056:12;20018:52;20098:9;20092:16;20117:30;20141:5;20117:30;:::i;20182:184::-;20234:77;20231:1;20224:88;20331:4;20328:1;20321:15;20355:4;20352:1;20345:15;20371:120;20411:1;20437;20427:35;;20442:18;;:::i;:::-;-1:-1:-1;20476:9:1;;20371:120::o;20496:112::-;20528:1;20554;20544:35;;20559:18;;:::i;:::-;-1:-1:-1;20593:9:1;;20496:112::o;20613:184::-;20665:77;20662:1;20655:88;20762:4;20759:1;20752:15;20786:4;20783:1;20776:15

Swarm Source

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