ETH Price: $3,271.62 (+4.75%)
Gas: 2 Gwei

Token

DegenDinos (DGNDNS)
 

Overview

Max Total Supply

4,695 DGNDNS

Holders

223

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wakenbayc.eth
Balance
20 DGNDNS
0x61ad944c6520116fff7d537a789d28391a7a6425
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:
Dinos

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// File: @openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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);
}

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

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

pragma solidity ^0.8.0;


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

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

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()))
        : "";
  }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: Avocados.sol

pragma solidity ^0.8.0;

contract Dinos is ERC721A, Ownable {  
    using Address for address;
    using Strings for uint256;

    uint256 public NFT_PRICE = 20000000000000000; // 0.02 ETH    
    uint256 public constant MAX_NFT_PURCHASE = 20;  
    uint256 public constant MINT_SUPPLY = 5900;
    uint256 public constant TEAM_SUPPLY = 100;
    uint256 public constant FREE_MINT_AMOUNT = 1000;    
    
    bool public publicSalePhase = false;
    string private _baseTokenURI;
    
    constructor() ERC721A("DegenDinos","DGNDNS", MAX_NFT_PURCHASE, MINT_SUPPLY + TEAM_SUPPLY){              
    }

    function togglePublicSalePhase() public onlyOwner {
        publicSalePhase = !publicSalePhase;
    }   

    function airdrop(uint256 quantity, address to) public onlyOwner {
        uint256 totalSupply = totalSupply(); 
        require(quantity <= MAX_NFT_PURCHASE, "Max 20 tokens per trx"); 
        require((totalSupply + quantity) <= (MINT_SUPPLY + TEAM_SUPPLY), "Purchase exceeding max supply");

        _safeMint(to, quantity);
    } 

    function mint(uint256 quantity) public payable {  
        uint256 totalSupply = totalSupply(); 

        require(publicSalePhase, "Can't mint");                
        require(quantity > 0, "Amount too small");
        require(quantity <= MAX_NFT_PURCHASE, "Max 20 tokens per trx"); 
        require((totalSupply + quantity) <= MINT_SUPPLY, "Purchase exceeding max supply");
        if(totalSupply >= FREE_MINT_AMOUNT) {    
            require(NFT_PRICE * quantity == msg.value, "Sent eth val is incorrect"); 
        }

        _safeMint(msg.sender, quantity);  
    }
    
    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }    

    function setPrice(uint256 price) public onlyOwner {       
        NFT_PRICE = price;
    }
    
    function getBalance() public view onlyOwner returns (uint256){
        return address(this).balance;
    } 
	
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseTokenURI = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {        
        return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), ".json"));
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePhase","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","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":[],"name":"togglePublicSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052600080805560075566470de4df820000600955600a805460ff191690553480156200002e57600080fd5b506040518060400160405280600a815260200169446567656e44696e6f7360b01b8152506040518060400160405280600681526020016544474e444e5360d01b8152506014606461170c62000084919062000294565b60008111620000f15760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001535760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e8565b835162000168906001906020870190620001ee565b5082516200017e906002906020860190620001ee565b5060a09190915260805250620001969050336200019c565b620002f8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001fc90620002bb565b90600052602060002090601f0160209004810192826200022057600085556200026b565b82601f106200023b57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026b5782518255916020019190600101906200024e565b50620002799291506200027d565b5090565b5b808211156200027957600081556001016200027e565b60008219821115620002b657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002d057607f821691505b60208210811415620002f257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161260462000333600039600081816117c5015281816117ef0152611cb10152600081816115ca01526115fc01526126046000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d33739601161006f578063d33739601461057a578063d7224ba014610590578063dc33e681146105a6578063e985e9c5146105c6578063f2fde38b1461060f57600080fd5b8063b88d4fde14610505578063b9c3a81814610525578063bc63f02e1461053a578063c87b56dd1461055a57600080fd5b806395d89b41116100e757806395d89b41146104925780639dfbcde8146104a7578063a0712d68146104bd578063a22cb465146104d0578063b62b3040146104f057600080fd5b806370a082311461041f578063715018a61461043f5780638da5cb5b1461045457806391b7f5ed1461047257600080fd5b80632d20fb601161019b57806342842e0e1161016a57806342842e0e146103895780634f6ccce7146103a957806355f804b3146103c95780636352211e146103e9578063676dd5631461040957600080fd5b80632d20fb60146103275780632f745c59146103475780633394dd06146103675780633ccfd60b1461038157600080fd5b8063095ea7b3116101d7578063095ea7b3146102bb57806312065fe0146102dd57806318160ddd146102f257806323b872dd1461030757600080fd5b806301ffc9a714610209578063020b39cc1461023e57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611f75565b61062f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253601481565b604051908152602001610235565b34801561026d57600080fd5b5061027661069c565b6040516102359190611ff1565b34801561028f57600080fd5b506102a361029e366004612004565b61072e565b6040516001600160a01b039091168152602001610235565b3480156102c757600080fd5b506102db6102d6366004612039565b6107be565b005b3480156102e957600080fd5b506102536108d6565b3480156102fe57600080fd5b50600054610253565b34801561031357600080fd5b506102db610322366004612063565b610908565b34801561033357600080fd5b506102db610342366004612004565b610913565b34801561035357600080fd5b50610253610362366004612039565b610949565b34801561037357600080fd5b50600a546102299060ff1681565b6102db610ab7565b34801561039557600080fd5b506102db6103a4366004612063565b610b14565b3480156103b557600080fd5b506102536103c4366004612004565b610b2f565b3480156103d557600080fd5b506102db6103e436600461212b565b610b91565b3480156103f557600080fd5b506102a3610404366004612004565b610bce565b34801561041557600080fd5b5061025360095481565b34801561042b57600080fd5b5061025361043a366004612174565b610be0565b34801561044b57600080fd5b506102db610c71565b34801561046057600080fd5b506008546001600160a01b03166102a3565b34801561047e57600080fd5b506102db61048d366004612004565b610ca7565b34801561049e57600080fd5b50610276610cd6565b3480156104b357600080fd5b5061025361170c81565b6102db6104cb366004612004565b610ce5565b3480156104dc57600080fd5b506102db6104eb36600461218f565b610e7d565b3480156104fc57600080fd5b506102db610f42565b34801561051157600080fd5b506102db6105203660046121cb565b610f80565b34801561053157600080fd5b50610253606481565b34801561054657600080fd5b506102db610555366004612247565b610fb9565b34801561056657600080fd5b50610276610575366004612004565b61109e565b34801561058657600080fd5b506102536103e881565b34801561059c57600080fd5b5061025360075481565b3480156105b257600080fd5b506102536105c1366004612174565b6110d2565b3480156105d257600080fd5b506102296105e1366004612273565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061b57600080fd5b506102db61062a366004612174565b6110dd565b60006001600160e01b031982166380ac58cd60e01b148061066057506001600160e01b03198216635b5e139f60e01b145b8061067b57506001600160e01b0319821663780e9d6360e01b145b8061069657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ab9061229d565b80601f01602080910402602001604051908101604052809291908181526020018280546106d79061229d565b80156107245780601f106106f957610100808354040283529160200191610724565b820191906000526020600020905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b600061073b826000541190565b6107a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107c982610bce565b9050806001600160a01b0316836001600160a01b031614156108385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610799565b336001600160a01b0382161480610854575061085481336105e1565b6108c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610799565b6108d1838383611175565b505050565b6008546000906001600160a01b031633146109035760405162461bcd60e51b8152600401610799906122d8565b504790565b6108d18383836111d1565b6008546001600160a01b0316331461093d5760405162461bcd60e51b8152600401610799906122d8565b61094681611559565b50565b600061095483610be0565b82106109ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610799565b600080549080805b83811015610a57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0857805192505b876001600160a01b0316836001600160a01b03161415610a445786841415610a365750935061069692505050565b83610a4081612323565b9450505b5080610a4f81612323565b9150506109b5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610799565b6008546001600160a01b03163314610ae15760405162461bcd60e51b8152600401610799906122d8565b6040514790339082156108fc029083906000818181858888f19350505050158015610b10573d6000803e3d6000fd5b5050565b6108d183838360405180602001604052806000815250610f80565b600080548210610b8d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610799565b5090565b6008546001600160a01b03163314610bbb5760405162461bcd60e51b8152600401610799906122d8565b8051610b1090600b906020840190611ecf565b6000610bd982611743565b5192915050565b60006001600160a01b038216610c4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610799565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b8152600401610799906122d8565b610ca560006118ed565b565b6008546001600160a01b03163314610cd15760405162461bcd60e51b8152600401610799906122d8565b600955565b6060600280546106ab9061229d565b600054600a5460ff16610d275760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b6044820152606401610799565b60008211610d6a5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b6044820152606401610799565b6014821115610db35760405162461bcd60e51b815260206004820152601560248201527409ac2f040646040e8ded6cadce640e0cae440e8e4f605b1b6044820152606401610799565b61170c610dc0838361233e565b1115610e0e5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c790000006044820152606401610799565b6103e88110610e73573482600954610e269190612356565b14610e735760405162461bcd60e51b815260206004820152601960248201527f53656e74206574682076616c20697320696e636f7272656374000000000000006044820152606401610799565b610b10338361193f565b6001600160a01b038216331415610ed65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610799565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b8152600401610799906122d8565b600a805460ff19811660ff90911615179055565b610f8b8484846111d1565b610f9784848484611959565b610fb35760405162461bcd60e51b815260040161079990612375565b50505050565b6008546001600160a01b03163314610fe35760405162461bcd60e51b8152600401610799906122d8565b600054601483111561102f5760405162461bcd60e51b815260206004820152601560248201527409ac2f040646040e8ded6cadce640e0cae440e8e4f605b1b6044820152606401610799565b61103c606461170c61233e565b611046848361233e565b11156110945760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c790000006044820152606401610799565b6108d1828461193f565b6060600b6110ab83611a58565b6040516020016110bc9291906123e4565b6040516020818303038152906040529050919050565b600061069682611b56565b6008546001600160a01b031633146111075760405162461bcd60e51b8152600401610799906122d8565b6001600160a01b03811661116c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610799565b610946816118ed565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111dc82611743565b80519091506000906001600160a01b0316336001600160a01b031614806112135750336112088461072e565b6001600160a01b0316145b806112255750815161122590336105e1565b90508061128f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610799565b846001600160a01b031682600001516001600160a01b0316146113035760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610799565b6001600160a01b0384166113675760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610799565b6113776000848460000151611175565b6001600160a01b03851660009081526004602052604081208054600192906113a99084906001600160801b031661249f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113f5918591166124c7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561147d84600161233e565b6000818152600360205260409020549091506001600160a01b031661150f576114a7816000541190565b1561150f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816115a95760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610799565b600060016115b7848461233e565b6115c191906124f2565b90506115ee60017f00000000000000000000000000000000000000000000000000000000000000006124f2565b8111156116235761162060017f00000000000000000000000000000000000000000000000000000000000000006124f2565b90505b61162e816000541190565b6116895760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610799565b815b81811161172f576000818152600360205260409020546001600160a01b031661171d5760006116b982611743565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061172781612323565b91505061168b565b5061173b81600161233e565b600755505050565b6040805180820190915260008082526020820152611762826000541190565b6117c15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610799565b60007f00000000000000000000000000000000000000000000000000000000000000008310611822576118147f0000000000000000000000000000000000000000000000000000000000000000846124f2565b61181f90600161233e565b90505b825b81811061188c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561187957949350505050565b508061188481612509565b915050611824565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610799565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b10828260405180602001604052806000815250611bf4565b60006001600160a01b0384163b15611a4c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061199d903390899088908890600401612520565b6020604051808303816000875af19250505080156119d8575060408051601f3d908101601f191682019092526119d59181019061255d565b60015b611a32573d808015611a06576040519150601f19603f3d011682016040523d82523d6000602084013e611a0b565b606091505b508051611a2a5760405162461bcd60e51b815260040161079990612375565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a50565b5060015b949350505050565b606081611a7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aa65780611a9081612323565b9150611a9f9050600a83612590565b9150611a80565b60008167ffffffffffffffff811115611ac157611ac161209f565b6040519080825280601f01601f191660200182016040528015611aeb576020820181803683370190505b5090505b8415611a5057611b006001836124f2565b9150611b0d600a866125a4565b611b1890603061233e565b60f81b818381518110611b2d57611b2d6125b8565b60200101906001600160f81b031916908160001a905350611b4f600a86612590565b9450611aef565b60006001600160a01b038216611bc85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610799565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611c575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610799565b611c62816000541190565b15611caf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610799565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610799565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d869087906124c7565b6001600160801b03168152602001858360200151611da491906124c7565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ec45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e886000888488611959565b611ea45760405162461bcd60e51b815260040161079990612375565b81611eae81612323565b9250508080611ebc90612323565b915050611e3b565b506000819055611551565b828054611edb9061229d565b90600052602060002090601f016020900481019282611efd5760008555611f43565b82601f10611f1657805160ff1916838001178555611f43565b82800160010185558215611f43579182015b82811115611f43578251825591602001919060010190611f28565b50610b8d9291505b80821115610b8d5760008155600101611f4b565b6001600160e01b03198116811461094657600080fd5b600060208284031215611f8757600080fd5b8135611f9281611f5f565b9392505050565b60005b83811015611fb4578181015183820152602001611f9c565b83811115610fb35750506000910152565b60008151808452611fdd816020860160208601611f99565b601f01601f19169290920160200192915050565b602081526000611f926020830184611fc5565b60006020828403121561201657600080fd5b5035919050565b80356001600160a01b038116811461203457600080fd5b919050565b6000806040838503121561204c57600080fd5b6120558361201d565b946020939093013593505050565b60008060006060848603121561207857600080fd5b6120818461201d565b925061208f6020850161201d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120d0576120d061209f565b604051601f8501601f19908116603f011681019082821181831017156120f8576120f861209f565b8160405280935085815286868601111561211157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561213d57600080fd5b813567ffffffffffffffff81111561215457600080fd5b8201601f8101841361216557600080fd5b611a50848235602084016120b5565b60006020828403121561218657600080fd5b611f928261201d565b600080604083850312156121a257600080fd5b6121ab8361201d565b9150602083013580151581146121c057600080fd5b809150509250929050565b600080600080608085870312156121e157600080fd5b6121ea8561201d565b93506121f86020860161201d565b925060408501359150606085013567ffffffffffffffff81111561221b57600080fd5b8501601f8101871361222c57600080fd5b61223b878235602084016120b5565b91505092959194509250565b6000806040838503121561225a57600080fd5b8235915061226a6020840161201d565b90509250929050565b6000806040838503121561228657600080fd5b61228f8361201d565b915061226a6020840161201d565b600181811c908216806122b157607f821691505b602082108114156122d257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156123375761233761230d565b5060010190565b600082198211156123515761235161230d565b500190565b60008160001904831182151516156123705761237061230d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516123da818560208601611f99565b9290920192915050565b600080845481600182811c91508083168061240057607f831692505b602080841082141561242057634e487b7160e01b86526022600452602486fd5b818015612434576001811461244557612472565b60ff19861689528489019650612472565b60008b81526020902060005b8681101561246a5781548b820152908501908301612451565b505084890196505b50505050505061249661248582866123c8565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160801b03838116908316818110156124bf576124bf61230d565b039392505050565b60006001600160801b038083168185168083038211156124e9576124e961230d565b01949350505050565b6000828210156125045761250461230d565b500390565b6000816125185761251861230d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255390830184611fc5565b9695505050505050565b60006020828403121561256f57600080fd5b8151611f9281611f5f565b634e487b7160e01b600052601260045260246000fd5b60008261259f5761259f61257a565b500490565b6000826125b3576125b361257a565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200b6128a9bba998375d75a1f080fe3bd67b0f47fa2d79db3ca1c2c843889b4a5b64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d33739601161006f578063d33739601461057a578063d7224ba014610590578063dc33e681146105a6578063e985e9c5146105c6578063f2fde38b1461060f57600080fd5b8063b88d4fde14610505578063b9c3a81814610525578063bc63f02e1461053a578063c87b56dd1461055a57600080fd5b806395d89b41116100e757806395d89b41146104925780639dfbcde8146104a7578063a0712d68146104bd578063a22cb465146104d0578063b62b3040146104f057600080fd5b806370a082311461041f578063715018a61461043f5780638da5cb5b1461045457806391b7f5ed1461047257600080fd5b80632d20fb601161019b57806342842e0e1161016a57806342842e0e146103895780634f6ccce7146103a957806355f804b3146103c95780636352211e146103e9578063676dd5631461040957600080fd5b80632d20fb60146103275780632f745c59146103475780633394dd06146103675780633ccfd60b1461038157600080fd5b8063095ea7b3116101d7578063095ea7b3146102bb57806312065fe0146102dd57806318160ddd146102f257806323b872dd1461030757600080fd5b806301ffc9a714610209578063020b39cc1461023e57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611f75565b61062f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253601481565b604051908152602001610235565b34801561026d57600080fd5b5061027661069c565b6040516102359190611ff1565b34801561028f57600080fd5b506102a361029e366004612004565b61072e565b6040516001600160a01b039091168152602001610235565b3480156102c757600080fd5b506102db6102d6366004612039565b6107be565b005b3480156102e957600080fd5b506102536108d6565b3480156102fe57600080fd5b50600054610253565b34801561031357600080fd5b506102db610322366004612063565b610908565b34801561033357600080fd5b506102db610342366004612004565b610913565b34801561035357600080fd5b50610253610362366004612039565b610949565b34801561037357600080fd5b50600a546102299060ff1681565b6102db610ab7565b34801561039557600080fd5b506102db6103a4366004612063565b610b14565b3480156103b557600080fd5b506102536103c4366004612004565b610b2f565b3480156103d557600080fd5b506102db6103e436600461212b565b610b91565b3480156103f557600080fd5b506102a3610404366004612004565b610bce565b34801561041557600080fd5b5061025360095481565b34801561042b57600080fd5b5061025361043a366004612174565b610be0565b34801561044b57600080fd5b506102db610c71565b34801561046057600080fd5b506008546001600160a01b03166102a3565b34801561047e57600080fd5b506102db61048d366004612004565b610ca7565b34801561049e57600080fd5b50610276610cd6565b3480156104b357600080fd5b5061025361170c81565b6102db6104cb366004612004565b610ce5565b3480156104dc57600080fd5b506102db6104eb36600461218f565b610e7d565b3480156104fc57600080fd5b506102db610f42565b34801561051157600080fd5b506102db6105203660046121cb565b610f80565b34801561053157600080fd5b50610253606481565b34801561054657600080fd5b506102db610555366004612247565b610fb9565b34801561056657600080fd5b50610276610575366004612004565b61109e565b34801561058657600080fd5b506102536103e881565b34801561059c57600080fd5b5061025360075481565b3480156105b257600080fd5b506102536105c1366004612174565b6110d2565b3480156105d257600080fd5b506102296105e1366004612273565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061b57600080fd5b506102db61062a366004612174565b6110dd565b60006001600160e01b031982166380ac58cd60e01b148061066057506001600160e01b03198216635b5e139f60e01b145b8061067b57506001600160e01b0319821663780e9d6360e01b145b8061069657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ab9061229d565b80601f01602080910402602001604051908101604052809291908181526020018280546106d79061229d565b80156107245780601f106106f957610100808354040283529160200191610724565b820191906000526020600020905b81548152906001019060200180831161070757829003601f168201915b5050505050905090565b600061073b826000541190565b6107a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107c982610bce565b9050806001600160a01b0316836001600160a01b031614156108385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610799565b336001600160a01b0382161480610854575061085481336105e1565b6108c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610799565b6108d1838383611175565b505050565b6008546000906001600160a01b031633146109035760405162461bcd60e51b8152600401610799906122d8565b504790565b6108d18383836111d1565b6008546001600160a01b0316331461093d5760405162461bcd60e51b8152600401610799906122d8565b61094681611559565b50565b600061095483610be0565b82106109ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610799565b600080549080805b83811015610a57576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a0857805192505b876001600160a01b0316836001600160a01b03161415610a445786841415610a365750935061069692505050565b83610a4081612323565b9450505b5080610a4f81612323565b9150506109b5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610799565b6008546001600160a01b03163314610ae15760405162461bcd60e51b8152600401610799906122d8565b6040514790339082156108fc029083906000818181858888f19350505050158015610b10573d6000803e3d6000fd5b5050565b6108d183838360405180602001604052806000815250610f80565b600080548210610b8d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610799565b5090565b6008546001600160a01b03163314610bbb5760405162461bcd60e51b8152600401610799906122d8565b8051610b1090600b906020840190611ecf565b6000610bd982611743565b5192915050565b60006001600160a01b038216610c4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610799565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b8152600401610799906122d8565b610ca560006118ed565b565b6008546001600160a01b03163314610cd15760405162461bcd60e51b8152600401610799906122d8565b600955565b6060600280546106ab9061229d565b600054600a5460ff16610d275760405162461bcd60e51b815260206004820152600a60248201526910d85b89dd081b5a5b9d60b21b6044820152606401610799565b60008211610d6a5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b6044820152606401610799565b6014821115610db35760405162461bcd60e51b815260206004820152601560248201527409ac2f040646040e8ded6cadce640e0cae440e8e4f605b1b6044820152606401610799565b61170c610dc0838361233e565b1115610e0e5760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c790000006044820152606401610799565b6103e88110610e73573482600954610e269190612356565b14610e735760405162461bcd60e51b815260206004820152601960248201527f53656e74206574682076616c20697320696e636f7272656374000000000000006044820152606401610799565b610b10338361193f565b6001600160a01b038216331415610ed65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610799565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b8152600401610799906122d8565b600a805460ff19811660ff90911615179055565b610f8b8484846111d1565b610f9784848484611959565b610fb35760405162461bcd60e51b815260040161079990612375565b50505050565b6008546001600160a01b03163314610fe35760405162461bcd60e51b8152600401610799906122d8565b600054601483111561102f5760405162461bcd60e51b815260206004820152601560248201527409ac2f040646040e8ded6cadce640e0cae440e8e4f605b1b6044820152606401610799565b61103c606461170c61233e565b611046848361233e565b11156110945760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520657863656564696e67206d617820737570706c790000006044820152606401610799565b6108d1828461193f565b6060600b6110ab83611a58565b6040516020016110bc9291906123e4565b6040516020818303038152906040529050919050565b600061069682611b56565b6008546001600160a01b031633146111075760405162461bcd60e51b8152600401610799906122d8565b6001600160a01b03811661116c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610799565b610946816118ed565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111dc82611743565b80519091506000906001600160a01b0316336001600160a01b031614806112135750336112088461072e565b6001600160a01b0316145b806112255750815161122590336105e1565b90508061128f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610799565b846001600160a01b031682600001516001600160a01b0316146113035760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610799565b6001600160a01b0384166113675760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610799565b6113776000848460000151611175565b6001600160a01b03851660009081526004602052604081208054600192906113a99084906001600160801b031661249f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113f5918591166124c7565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561147d84600161233e565b6000818152600360205260409020549091506001600160a01b031661150f576114a7816000541190565b1561150f5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816115a95760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610799565b600060016115b7848461233e565b6115c191906124f2565b90506115ee60017f00000000000000000000000000000000000000000000000000000000000017706124f2565b8111156116235761162060017f00000000000000000000000000000000000000000000000000000000000017706124f2565b90505b61162e816000541190565b6116895760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610799565b815b81811161172f576000818152600360205260409020546001600160a01b031661171d5760006116b982611743565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061172781612323565b91505061168b565b5061173b81600161233e565b600755505050565b6040805180820190915260008082526020820152611762826000541190565b6117c15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610799565b60007f00000000000000000000000000000000000000000000000000000000000000148310611822576118147f0000000000000000000000000000000000000000000000000000000000000014846124f2565b61181f90600161233e565b90505b825b81811061188c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561187957949350505050565b508061188481612509565b915050611824565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610799565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b10828260405180602001604052806000815250611bf4565b60006001600160a01b0384163b15611a4c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061199d903390899088908890600401612520565b6020604051808303816000875af19250505080156119d8575060408051601f3d908101601f191682019092526119d59181019061255d565b60015b611a32573d808015611a06576040519150601f19603f3d011682016040523d82523d6000602084013e611a0b565b606091505b508051611a2a5760405162461bcd60e51b815260040161079990612375565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a50565b5060015b949350505050565b606081611a7c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aa65780611a9081612323565b9150611a9f9050600a83612590565b9150611a80565b60008167ffffffffffffffff811115611ac157611ac161209f565b6040519080825280601f01601f191660200182016040528015611aeb576020820181803683370190505b5090505b8415611a5057611b006001836124f2565b9150611b0d600a866125a4565b611b1890603061233e565b60f81b818381518110611b2d57611b2d6125b8565b60200101906001600160f81b031916908160001a905350611b4f600a86612590565b9450611aef565b60006001600160a01b038216611bc85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610799565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611c575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610799565b611c62816000541190565b15611caf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610799565b7f0000000000000000000000000000000000000000000000000000000000000014831115611d2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610799565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d869087906124c7565b6001600160801b03168152602001858360200151611da491906124c7565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ec45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e886000888488611959565b611ea45760405162461bcd60e51b815260040161079990612375565b81611eae81612323565b9250508080611ebc90612323565b915050611e3b565b506000819055611551565b828054611edb9061229d565b90600052602060002090601f016020900481019282611efd5760008555611f43565b82601f10611f1657805160ff1916838001178555611f43565b82800160010185558215611f43579182015b82811115611f43578251825591602001919060010190611f28565b50610b8d9291505b80821115610b8d5760008155600101611f4b565b6001600160e01b03198116811461094657600080fd5b600060208284031215611f8757600080fd5b8135611f9281611f5f565b9392505050565b60005b83811015611fb4578181015183820152602001611f9c565b83811115610fb35750506000910152565b60008151808452611fdd816020860160208601611f99565b601f01601f19169290920160200192915050565b602081526000611f926020830184611fc5565b60006020828403121561201657600080fd5b5035919050565b80356001600160a01b038116811461203457600080fd5b919050565b6000806040838503121561204c57600080fd5b6120558361201d565b946020939093013593505050565b60008060006060848603121561207857600080fd5b6120818461201d565b925061208f6020850161201d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120d0576120d061209f565b604051601f8501601f19908116603f011681019082821181831017156120f8576120f861209f565b8160405280935085815286868601111561211157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561213d57600080fd5b813567ffffffffffffffff81111561215457600080fd5b8201601f8101841361216557600080fd5b611a50848235602084016120b5565b60006020828403121561218657600080fd5b611f928261201d565b600080604083850312156121a257600080fd5b6121ab8361201d565b9150602083013580151581146121c057600080fd5b809150509250929050565b600080600080608085870312156121e157600080fd5b6121ea8561201d565b93506121f86020860161201d565b925060408501359150606085013567ffffffffffffffff81111561221b57600080fd5b8501601f8101871361222c57600080fd5b61223b878235602084016120b5565b91505092959194509250565b6000806040838503121561225a57600080fd5b8235915061226a6020840161201d565b90509250929050565b6000806040838503121561228657600080fd5b61228f8361201d565b915061226a6020840161201d565b600181811c908216806122b157607f821691505b602082108114156122d257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156123375761233761230d565b5060010190565b600082198211156123515761235161230d565b500190565b60008160001904831182151516156123705761237061230d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516123da818560208601611f99565b9290920192915050565b600080845481600182811c91508083168061240057607f831692505b602080841082141561242057634e487b7160e01b86526022600452602486fd5b818015612434576001811461244557612472565b60ff19861689528489019650612472565b60008b81526020902060005b8681101561246a5781548b820152908501908301612451565b505084890196505b50505050505061249661248582866123c8565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160801b03838116908316818110156124bf576124bf61230d565b039392505050565b60006001600160801b038083168185168083038211156124e9576124e961230d565b01949350505050565b6000828210156125045761250461230d565b500390565b6000816125185761251861230d565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255390830184611fc5565b9695505050505050565b60006020828403121561256f57600080fd5b8151611f9281611f5f565b634e487b7160e01b600052601260045260246000fd5b60008261259f5761259f61257a565b500490565b6000826125b3576125b361257a565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200b6128a9bba998375d75a1f080fe3bd67b0f47fa2d79db3ca1c2c843889b4a5b64736f6c634300080b0033

Deployed Bytecode Sourcemap

38388:2581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12915:370;;;;;;;;;;-1:-1:-1;12915:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;12915:370:0;;;;;;;;38565:45;;;;;;;;;;;;38608:2;38565:45;;;;;738:25:1;;;726:2;711:18;38565:45:0;592:177:1;14641:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16166:204::-;;;;;;;;;;-1:-1:-1;16166:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;16166:204:0;1732:203:1;15729:379:0;;;;;;;;;;-1:-1:-1;15729:379:0;;;;;:::i;:::-;;:::i;:::-;;40306:108;;;;;;;;;;;;;:::i;11476:94::-;;;;;;;;;;-1:-1:-1;11529:7:0;11552:12;11476:94;;17016:142;;;;;;;;;;-1:-1:-1;17016:142:0;;;;;:::i;:::-;;:::i;40734:111::-;;;;;;;;;;-1:-1:-1;40734:111:0;;;;;:::i;:::-;;:::i;12107:744::-;;;;;;;;;;-1:-1:-1;12107:744:0;;;;;:::i;:::-;;:::i;38780:35::-;;;;;;;;;;-1:-1:-1;38780:35:0;;;;;;;;40038:151;;;:::i;17221:157::-;;;;;;;;;;-1:-1:-1;17221:157:0;;;;;:::i;:::-;;:::i;11639:177::-;;;;;;;;;;-1:-1:-1;11639:177:0;;;;;:::i;:::-;;:::i;40424:104::-;;;;;;;;;;-1:-1:-1;40424:104:0;;;;;:::i;:::-;;:::i;14464:118::-;;;;;;;;;;-1:-1:-1;14464:118:0;;;;;:::i;:::-;;:::i;38498:44::-;;;;;;;;;;;;;;;;13341:211;;;;;;;;;;-1:-1:-1;13341:211:0;;;;;:::i;:::-;;:::i;37707:94::-;;;;;;;;;;;;;:::i;37056:87::-;;;;;;;;;;-1:-1:-1;37129:6:0;;-1:-1:-1;;;;;37129:6:0;37056:87;;40201:93;;;;;;;;;;-1:-1:-1;40201:93:0;;;;;:::i;:::-;;:::i;14796:98::-;;;;;;;;;;;;;:::i;38619:42::-;;;;;;;;;;;;38657:4;38619:42;;39442:584;;;;;;:::i;:::-;;:::i;16434:274::-;;;;;;;;;;-1:-1:-1;16434:274:0;;;;;:::i;:::-;;:::i;38982:103::-;;;;;;;;;;;;;:::i;17441:311::-;;;;;;;;;;-1:-1:-1;17441:311:0;;;;;:::i;:::-;;:::i;38668:41::-;;;;;;;;;;;;38706:3;38668:41;;39096:337;;;;;;;;;;-1:-1:-1;39096:337:0;;;;;:::i;:::-;;:::i;40536:190::-;;;;;;;;;;-1:-1:-1;40536:190:0;;;;;:::i;:::-;;:::i;38716:47::-;;;;;;;;;;;;38759:4;38716:47;;21856:43;;;;;;;;;;;;;;;;40853:113;;;;;;;;;;-1:-1:-1;40853:113:0;;;;;:::i;:::-;;:::i;16771:186::-;;;;;;;;;;-1:-1:-1;16771:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;16916:25:0;;;16893:4;16916:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;16771:186;37956:192;;;;;;;;;;-1:-1:-1;37956:192:0;;;;;:::i;:::-;;:::i;12915:370::-;13042:4;-1:-1:-1;;;;;;13072:40:0;;-1:-1:-1;;;13072:40:0;;:99;;-1:-1:-1;;;;;;;13123:48:0;;-1:-1:-1;;;13123:48:0;13072:99;:160;;;-1:-1:-1;;;;;;;13182:50:0;;-1:-1:-1;;;13182:50:0;13072:160;:207;;;-1:-1:-1;;;;;;;;;;9099:40:0;;;13243:36;13058:221;12915:370;-1:-1:-1;;12915:370:0:o;14641:94::-;14695:13;14724:5;14717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14641:94;:::o;16166:204::-;16234:7;16258:16;16266:7;18048:4;18078:12;-1:-1:-1;18068:22:0;17991:105;16258:16;16250:74;;;;-1:-1:-1;;;16250:74:0;;6261:2:1;16250:74:0;;;6243:21:1;6300:2;6280:18;;;6273:30;6339:34;6319:18;;;6312:62;-1:-1:-1;;;6390:18:1;;;6383:43;6443:19;;16250:74:0;;;;;;;;;-1:-1:-1;16340:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16340:24:0;;16166:204::o;15729:379::-;15798:13;15814:24;15830:7;15814:15;:24::i;:::-;15798:40;;15859:5;-1:-1:-1;;;;;15853:11:0;:2;-1:-1:-1;;;;;15853:11:0;;;15845:58;;;;-1:-1:-1;;;15845:58:0;;6675:2:1;15845:58:0;;;6657:21:1;6714:2;6694:18;;;6687:30;6753:34;6733:18;;;6726:62;-1:-1:-1;;;6804:18:1;;;6797:32;6846:19;;15845:58:0;6473:398:1;15845:58:0;790:10;-1:-1:-1;;;;;15928:21:0;;;;:62;;-1:-1:-1;15953:37:0;15970:5;790:10;16771:186;:::i;15953:37::-;15912:153;;;;-1:-1:-1;;;15912:153:0;;7078:2:1;15912:153:0;;;7060:21:1;7117:2;7097:18;;;7090:30;7156:34;7136:18;;;7129:62;7227:27;7207:18;;;7200:55;7272:19;;15912:153:0;6876:421:1;15912:153:0;16074:28;16083:2;16087:7;16096:5;16074:8;:28::i;:::-;15791:317;15729:379;;:::o;40306:108::-;37129:6;;40359:7;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;-1:-1:-1;40385:21:0::1;40306:108:::0;:::o;17016:142::-;17124:28;17134:4;17140:2;17144:7;17124:9;:28::i;40734:111::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;40809:28:::1;40828:8;40809:18;:28::i;:::-;40734:111:::0;:::o;12107:744::-;12216:7;12251:16;12261:5;12251:9;:16::i;:::-;12243:5;:24;12235:71;;;;-1:-1:-1;;;12235:71:0;;7865:2:1;12235:71:0;;;7847:21:1;7904:2;7884:18;;;7877:30;7943:34;7923:18;;;7916:62;-1:-1:-1;;;7994:18:1;;;7987:32;8036:19;;12235:71:0;7663:398:1;12235:71:0;12313:22;11552:12;;;12313:22;;12433:350;12457:14;12453:1;:18;12433:350;;;12487:31;12521:14;;;:11;:14;;;;;;;;;12487:48;;;;;;;;;-1:-1:-1;;;;;12487:48:0;;;;;-1:-1:-1;;;12487:48:0;;;;;;;;;;;;12548:28;12544:89;;12609:14;;;-1:-1:-1;12544:89:0;12666:5;-1:-1:-1;;;;;12645:26:0;:17;-1:-1:-1;;;;;12645:26:0;;12641:135;;;12703:5;12688:11;:20;12684:59;;;-1:-1:-1;12730:1:0;-1:-1:-1;12723:8:0;;-1:-1:-1;;;12723:8:0;12684:59;12753:13;;;;:::i;:::-;;;;12641:135;-1:-1:-1;12473:3:0;;;;:::i;:::-;;;;12433:350;;;-1:-1:-1;12789:56:0;;-1:-1:-1;;;12789:56:0;;8540:2:1;12789:56:0;;;8522:21:1;8579:2;8559:18;;;8552:30;8618:34;8598:18;;;8591:62;-1:-1:-1;;;8669:18:1;;;8662:44;8723:19;;12789:56:0;8338:410:1;40038:151:0;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;40144:37:::1;::::0;40112:21:::1;::::0;40152:10:::1;::::0;40144:37;::::1;;;::::0;40112:21;;40094:15:::1;40144:37:::0;40094:15;40144:37;40112:21;40152:10;40144:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40083:106;40038:151::o:0;17221:157::-;17333:39;17350:4;17356:2;17360:7;17333:39;;;;;;;;;;;;:16;:39::i;11639:177::-;11706:7;11552:12;;11730:5;:21;11722:69;;;;-1:-1:-1;;;11722:69:0;;8955:2:1;11722:69:0;;;8937:21:1;8994:2;8974:18;;;8967:30;9033:34;9013:18;;;9006:62;-1:-1:-1;;;9084:18:1;;;9077:33;9127:19;;11722:69:0;8753:399:1;11722:69:0;-1:-1:-1;11805:5:0;11639:177::o;40424:104::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;40496:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;14464:118::-:0;14528:7;14551:20;14563:7;14551:11;:20::i;:::-;:25;;14464:118;-1:-1:-1;;14464:118:0:o;13341:211::-;13405:7;-1:-1:-1;;;;;13429:19:0;;13421:75;;;;-1:-1:-1;;;13421:75:0;;9359:2:1;13421:75:0;;;9341:21:1;9398:2;9378:18;;;9371:30;9437:34;9417:18;;;9410:62;-1:-1:-1;;;9488:18:1;;;9481:41;9539:19;;13421:75:0;9157:407:1;13421:75:0;-1:-1:-1;;;;;;13518:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;13518:27:0;;13341:211::o;37707:94::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;37772:21:::1;37790:1;37772:9;:21::i;:::-;37707:94::o:0;40201:93::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;40269:9:::1;:17:::0;40201:93::o;14796:98::-;14852:13;14881:7;14874:14;;;;;:::i;39442:584::-;39502:19;11552:12;39559:15;;;;39551:38;;;;-1:-1:-1;;;39551:38:0;;9771:2:1;39551:38:0;;;9753:21:1;9810:2;9790:18;;;9783:30;-1:-1:-1;;;9829:18:1;;;9822:40;9879:18;;39551:38:0;9569:334:1;39551:38:0;39635:1;39624:8;:12;39616:41;;;;-1:-1:-1;;;39616:41:0;;10110:2:1;39616:41:0;;;10092:21:1;10149:2;10129:18;;;10122:30;-1:-1:-1;;;10168:18:1;;;10161:46;10224:18;;39616:41:0;9908:340:1;39616:41:0;38608:2;39676:8;:28;;39668:62;;;;-1:-1:-1;;;39668:62:0;;10455:2:1;39668:62:0;;;10437:21:1;10494:2;10474:18;;;10467:30;-1:-1:-1;;;10513:18:1;;;10506:51;10574:18;;39668:62:0;10253:345:1;39668:62:0;38657:4;39751:22;39765:8;39751:11;:22;:::i;:::-;39750:39;;39742:81;;;;-1:-1:-1;;;39742:81:0;;10938:2:1;39742:81:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:31;10996:18;;;10989:59;11065:18;;39742:81:0;10736:353:1;39742:81:0;38759:4;39837:11;:31;39834:139;;39921:9;39909:8;39897:9;;:20;;;;:::i;:::-;:33;39889:71;;;;-1:-1:-1;;;39889:71:0;;11469:2:1;39889:71:0;;;11451:21:1;11508:2;11488:18;;;11481:30;11547:27;11527:18;;;11520:55;11592:18;;39889:71:0;11267:349:1;39889:71:0;39985:31;39995:10;40007:8;39985:9;:31::i;16434:274::-;-1:-1:-1;;;;;16525:24:0;;790:10;16525:24;;16517:63;;;;-1:-1:-1;;;16517:63:0;;11823:2:1;16517:63:0;;;11805:21:1;11862:2;11842:18;;;11835:30;11901:28;11881:18;;;11874:56;11947:18;;16517:63:0;11621:350:1;16517:63:0;790:10;16589:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;16589:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;16589:53:0;;;;;;;;;;16654:48;;540:41:1;;;16589:42:0;;790:10;16654:48;;513:18:1;16654:48:0;;;;;;;16434:274;;:::o;38982:103::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;39062:15:::1;::::0;;-1:-1:-1;;39043:34:0;::::1;39062:15;::::0;;::::1;39061:16;39043:34;::::0;;38982:103::o;17441:311::-;17578:28;17588:4;17594:2;17598:7;17578:9;:28::i;:::-;17629:48;17652:4;17658:2;17662:7;17671:5;17629:22;:48::i;:::-;17613:133;;;;-1:-1:-1;;;17613:133:0;;;;;;;:::i;:::-;17441:311;;;;:::o;39096:337::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;39171:19:::1;11552:12:::0;38608:2:::1;39226:28:::0;::::1;;39218:62;;;::::0;-1:-1:-1;;;39218:62:0;;10455:2:1;39218:62:0::1;::::0;::::1;10437:21:1::0;10494:2;10474:18;;;10467:30;-1:-1:-1;;;10513:18:1;;;10506:51;10574:18;;39218:62:0::1;10253:345:1::0;39218:62:0::1;39329:25;38706:3;38657:4;39329:25;:::i;:::-;39301:22;39315:8:::0;39301:11;:22:::1;:::i;:::-;39300:55;;39292:97;;;::::0;-1:-1:-1;;;39292:97:0;;10938:2:1;39292:97:0::1;::::0;::::1;10920:21:1::0;10977:2;10957:18;;;10950:30;11016:31;10996:18;;;10989:59;11065:18;;39292:97:0::1;10736:353:1::0;39292:97:0::1;39402:23;39412:2;39416:8;39402:9;:23::i;40536:190::-:0;40609:13;40674;40689:18;:7;:16;:18::i;:::-;40657:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40643:75;;40536:190;;;:::o;40853:113::-;40911:7;40938:20;40952:5;40938:13;:20::i;37956:192::-;37129:6;;-1:-1:-1;;;;;37129:6:0;790:10;37276:23;37268:68;;;;-1:-1:-1;;;37268:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38045:22:0;::::1;38037:73;;;::::0;-1:-1:-1;;;38037:73:0;;14338:2:1;38037:73:0::1;::::0;::::1;14320:21:1::0;14377:2;14357:18;;;14350:30;14416:34;14396:18;;;14389:62;-1:-1:-1;;;14467:18:1;;;14460:36;14513:19;;38037:73:0::1;14136:402:1::0;38037:73:0::1;38121:19;38131:8;38121:9;:19::i;21678:172::-:0;21775:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21775:29:0;-1:-1:-1;;;;;21775:29:0;;;;;;;;;21816:28;;21775:24;;21816:28;;;;;;;21678:172;;;:::o;20043:1529::-;20140:35;20178:20;20190:7;20178:11;:20::i;:::-;20249:18;;20140:58;;-1:-1:-1;20207:22:0;;-1:-1:-1;;;;;20233:34:0;790:10;-1:-1:-1;;;;;20233:34:0;;:81;;;-1:-1:-1;790:10:0;20278:20;20290:7;20278:11;:20::i;:::-;-1:-1:-1;;;;;20278:36:0;;20233:81;:142;;;-1:-1:-1;20342:18:0;;20325:50;;790:10;16771:186;:::i;20325:50::-;20207:169;;20401:17;20385:101;;;;-1:-1:-1;;;20385:101:0;;14745:2:1;20385:101:0;;;14727:21:1;14784:2;14764:18;;;14757:30;14823:34;14803:18;;;14796:62;-1:-1:-1;;;14874:18:1;;;14867:48;14932:19;;20385:101:0;14543:414:1;20385:101:0;20533:4;-1:-1:-1;;;;;20511:26:0;:13;:18;;;-1:-1:-1;;;;;20511:26:0;;20495:98;;;;-1:-1:-1;;;20495:98:0;;15164:2:1;20495:98:0;;;15146:21:1;15203:2;15183:18;;;15176:30;15242:34;15222:18;;;15215:62;-1:-1:-1;;;15293:18:1;;;15286:36;15339:19;;20495:98:0;14962:402:1;20495:98:0;-1:-1:-1;;;;;20608:16:0;;20600:66;;;;-1:-1:-1;;;20600:66:0;;15571:2:1;20600:66:0;;;15553:21:1;15610:2;15590:18;;;15583:30;15649:34;15629:18;;;15622:62;-1:-1:-1;;;15700:18:1;;;15693:35;15745:19;;20600:66:0;15369:401:1;20600:66:0;20775:49;20792:1;20796:7;20805:13;:18;;;20775:8;:49::i;:::-;-1:-1:-1;;;;;20833:18:0;;;;;;:12;:18;;;;;:31;;20863:1;;20833:18;:31;;20863:1;;-1:-1:-1;;;;;20833:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;20833:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20871:16:0;;-1:-1:-1;20871:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;20871:16:0;;:29;;-1:-1:-1;;20871:29:0;;:::i;:::-;;;-1:-1:-1;;;;;20871:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20930:43:0;;;;;;;;-1:-1:-1;;;;;20930:43:0;;;;;;20956:15;20930:43;;;;;;;;;-1:-1:-1;20907:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;20907:66:0;-1:-1:-1;;;;;;20907:66:0;;;;;;;;;;;21223:11;20919:7;-1:-1:-1;21223:11:0;:::i;:::-;21286:1;21245:24;;;:11;:24;;;;;:29;21201:33;;-1:-1:-1;;;;;;21245:29:0;21241:236;;21303:20;21311:11;18048:4;18078:12;-1:-1:-1;18068:22:0;17991:105;21303:20;21299:171;;;21363:97;;;;;;;;21390:18;;-1:-1:-1;;;;;21363:97:0;;;;;;21421:28;;;;21363:97;;;;;;;;;;-1:-1:-1;21336:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;21336:124:0;-1:-1:-1;;;;;;21336:124:0;;;;;;;;;;;;21299:171;21509:7;21505:2;-1:-1:-1;;;;;21490:27:0;21499:4;-1:-1:-1;;;;;21490:27:0;;;;;;;;;;;21524:42;20133:1439;;;20043:1529;;;:::o;22004:846::-;22094:24;;22133:12;22125:49;;;;-1:-1:-1;;;22125:49:0;;16486:2:1;22125:49:0;;;16468:21:1;16525:2;16505:18;;;16498:30;16564:26;16544:18;;;16537:54;16608:18;;22125:49:0;16284:348:1;22125:49:0;22181:16;22231:1;22200:28;22220:8;22200:17;:28;:::i;:::-;:32;;;;:::i;:::-;22181:51;-1:-1:-1;22254:18:0;22271:1;22254:14;:18;:::i;:::-;22243:8;:29;22239:81;;;22294:18;22311:1;22294:14;:18;:::i;:::-;22283:29;;22239:81;22435:17;22443:8;18048:4;18078:12;-1:-1:-1;18068:22:0;17991:105;22435:17;22427:68;;;;-1:-1:-1;;;22427:68:0;;16969:2:1;22427:68:0;;;16951:21:1;17008:2;16988:18;;;16981:30;17047:34;17027:18;;;17020:62;-1:-1:-1;;;17098:18:1;;;17091:36;17144:19;;22427:68:0;16767:402:1;22427:68:0;22519:17;22502:297;22543:8;22538:1;:13;22502:297;;22602:1;22571:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;22571:19:0;22567:225;;22617:31;22651:14;22663:1;22651:11;:14::i;:::-;22693:89;;;;;;;;22720:14;;-1:-1:-1;;;;;22693:89:0;;;;;;22747:24;;;;22693:89;;;;;;;;;;-1:-1:-1;22676:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;22676:106:0;-1:-1:-1;;;;;;22676:106:0;;;;;;;;;;;;-1:-1:-1;22567:225:0;22553:3;;;;:::i;:::-;;;;22502:297;;;-1:-1:-1;22832:12:0;:8;22843:1;22832:12;:::i;:::-;22805:24;:39;-1:-1:-1;;;22004:846:0:o;13804:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;13921:16:0;13929:7;18048:4;18078:12;-1:-1:-1;18068:22:0;17991:105;13921:16;13913:71;;;;-1:-1:-1;;;13913:71:0;;17376:2:1;13913:71:0;;;17358:21:1;17415:2;17395:18;;;17388:30;17454:34;17434:18;;;17427:62;-1:-1:-1;;;17505:18:1;;;17498:40;17555:19;;13913:71:0;17174:406:1;13913:71:0;13993:26;14041:12;14030:7;:23;14026:93;;14085:22;14095:12;14085:7;:22;:::i;:::-;:26;;14110:1;14085:26;:::i;:::-;14064:47;;14026:93;14147:7;14127:212;14164:18;14156:4;:26;14127:212;;14201:31;14235:17;;;:11;:17;;;;;;;;;14201:51;;;;;;;;;-1:-1:-1;;;;;14201:51:0;;;;;-1:-1:-1;;;14201:51:0;;;;;;;;;;;;14265:28;14261:71;;14313:9;13804:606;-1:-1:-1;;;;13804:606:0:o;14261:71::-;-1:-1:-1;14184:6:0;;;;:::i;:::-;;;;14127:212;;;-1:-1:-1;14347:57:0;;-1:-1:-1;;;14347:57:0;;17928:2:1;14347:57:0;;;17910:21:1;17967:2;17947:18;;;17940:30;18006:34;17986:18;;;17979:62;-1:-1:-1;;;18057:18:1;;;18050:45;18112:19;;14347:57:0;17726:411:1;38156:173:0;38231:6;;;-1:-1:-1;;;;;38248:17:0;;;-1:-1:-1;;;;;;38248:17:0;;;;;;;38281:40;;38231:6;;;38248:17;38231:6;;38281:40;;38212:16;;38281:40;38201:128;38156:173;:::o;18102:98::-;18167:27;18177:2;18181:8;18167:27;;;;;;;;;;;;:9;:27::i;23393:690::-;23530:4;-1:-1:-1;;;;;23547:13:0;;28370:20;28418:8;23543:535;;23586:72;;-1:-1:-1;;;23586:72:0;;-1:-1:-1;;;;;23586:36:0;;;;;:72;;790:10;;23637:4;;23643:7;;23652:5;;23586:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23586:72:0;;;;;;;;-1:-1:-1;;23586:72:0;;;;;;;;;;;;:::i;:::-;;;23573:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23817:13:0;;23813:215;;23850:61;;-1:-1:-1;;;23850:61:0;;;;;;;:::i;23813:215::-;23996:6;23990:13;23981:6;23977:2;23973:15;23966:38;23573:464;-1:-1:-1;;;;;;23708:55:0;-1:-1:-1;;;23708:55:0;;-1:-1:-1;23701:62:0;;23543:535;-1:-1:-1;24066:4:0;23543:535;23393:690;;;;;;:::o;25526:723::-;25582:13;25803:10;25799:53;;-1:-1:-1;;25830:10:0;;;;;;;;;;;;-1:-1:-1;;;25830:10:0;;;;;25526:723::o;25799:53::-;25877:5;25862:12;25918:78;25925:9;;25918:78;;25951:8;;;;:::i;:::-;;-1:-1:-1;25974:10:0;;-1:-1:-1;25982:2:0;25974:10;;:::i;:::-;;;25918:78;;;26006:19;26038:6;26028:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26028:17:0;;26006:39;;26056:154;26063:10;;26056:154;;26090:11;26100:1;26090:11;;:::i;:::-;;-1:-1:-1;26159:10:0;26167:2;26159:5;:10;:::i;:::-;26146:24;;:2;:24;:::i;:::-;26133:39;;26116:6;26123;26116:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;26116:56:0;;;;;;;;-1:-1:-1;26187:11:0;26196:2;26187:11;;:::i;:::-;;;26056:154;;13558:240;13619:7;-1:-1:-1;;;;;13651:19:0;;13635:102;;;;-1:-1:-1;;;13635:102:0;;19609:2:1;13635:102:0;;;19591:21:1;19648:2;19628:18;;;19621:30;19687:34;19667:18;;;19660:62;-1:-1:-1;;;19738:18:1;;;19731:47;19795:19;;13635:102:0;19407:413:1;13635:102:0;-1:-1:-1;;;;;;13759:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;13759:32:0;;-1:-1:-1;;;;;13759:32:0;;13558:240::o;18539:1272::-;18644:20;18667:12;-1:-1:-1;;;;;18694:16:0;;18686:62;;;;-1:-1:-1;;;18686:62:0;;20027:2:1;18686:62:0;;;20009:21:1;20066:2;20046:18;;;20039:30;20105:34;20085:18;;;20078:62;-1:-1:-1;;;20156:18:1;;;20149:31;20197:19;;18686:62:0;19825:397:1;18686:62:0;18885:21;18893:12;18048:4;18078:12;-1:-1:-1;18068:22:0;17991:105;18885:21;18884:22;18876:64;;;;-1:-1:-1;;;18876:64:0;;20429:2:1;18876:64:0;;;20411:21:1;20468:2;20448:18;;;20441:30;20507:31;20487:18;;;20480:59;20556:18;;18876:64:0;20227:353:1;18876:64:0;18967:12;18955:8;:24;;18947:71;;;;-1:-1:-1;;;18947:71:0;;20787:2:1;18947:71:0;;;20769:21:1;20826:2;20806:18;;;20799:30;20865:34;20845:18;;;20838:62;-1:-1:-1;;;20916:18:1;;;20909:32;20958:19;;18947:71:0;20585:398:1;18947:71:0;-1:-1:-1;;;;;19130:16:0;;19097:30;19130:16;;;:12;:16;;;;;;;;;19097:49;;;;;;;;;-1:-1:-1;;;;;19097:49:0;;;;;-1:-1:-1;;;19097:49:0;;;;;;;;;;;19172:119;;;;;;;;19192:19;;19097:49;;19172:119;;;19192:39;;19222:8;;19192:39;:::i;:::-;-1:-1:-1;;;;;19172:119:0;;;;;19275:8;19240:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;19172:119:0;;;;;;-1:-1:-1;;;;;19153:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;19153:138:0;;;;;;;;;;;;19326:43;;;;;;;;;;;19352:15;19326:43;;;;;;;;19298:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;19298:71:0;-1:-1:-1;;;;;;19298:71:0;;;;;;;;;;;;;;;;;;19310:12;;19422:281;19446:8;19442:1;:12;19422:281;;;19475:38;;19500:12;;-1:-1:-1;;;;;19475:38:0;;;19492:1;;19475:38;;19492:1;;19475:38;19540:59;19571:1;19575:2;19579:12;19593:5;19540:22;:59::i;:::-;19522:150;;;;-1:-1:-1;;;19522:150:0;;;;;;;:::i;:::-;19681:14;;;;:::i;:::-;;;;19456:3;;;;;:::i;:::-;;;;19422:281;;;-1:-1:-1;19711:12:0;:27;;;19745:60;17441:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:254::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5331:9;5318:23;5308:33;;5360:38;5394:2;5383:9;5379:18;5360:38;:::i;:::-;5350:48;;5150:254;;;;;:::o;5409:260::-;5477:6;5485;5538:2;5526:9;5517:7;5513:23;5509:32;5506:52;;;5554:1;5551;5544:12;5506:52;5577:29;5596:9;5577:29;:::i;:::-;5567:39;;5625:38;5659:2;5648:9;5644:18;5625:38;:::i;5674:380::-;5753:1;5749:12;;;;5796;;;5817:61;;5871:4;5863:6;5859:17;5849:27;;5817:61;5924:2;5916:6;5913:14;5893:18;5890:38;5887:161;;;5970:10;5965:3;5961:20;5958:1;5951:31;6005:4;6002:1;5995:15;6033:4;6030:1;6023:15;5887:161;;5674:380;;;:::o;7302:356::-;7504:2;7486:21;;;7523:18;;;7516:30;7582:34;7577:2;7562:18;;7555:62;7649:2;7634:18;;7302:356::o;8066:127::-;8127:10;8122:3;8118:20;8115:1;8108:31;8158:4;8155:1;8148:15;8182:4;8179:1;8172:15;8198:135;8237:3;-1:-1:-1;;8258:17:1;;8255:43;;;8278:18;;:::i;:::-;-1:-1:-1;8325:1:1;8314:13;;8198:135::o;10603:128::-;10643:3;10674:1;10670:6;10667:1;10664:13;10661:39;;;10680:18;;:::i;:::-;-1:-1:-1;10716:9:1;;10603:128::o;11094:168::-;11134:7;11200:1;11196;11192:6;11188:14;11185:1;11182:21;11177:1;11170:9;11163:17;11159:45;11156:71;;;11207:18;;:::i;:::-;-1:-1:-1;11247:9:1;;11094:168::o;11976:415::-;12178:2;12160:21;;;12217:2;12197:18;;;12190:30;12256:34;12251:2;12236:18;;12229:62;-1:-1:-1;;;12322:2:1;12307:18;;12300:49;12381:3;12366:19;;11976:415::o;12522:185::-;12564:3;12602:5;12596:12;12617:52;12662:6;12657:3;12650:4;12643:5;12639:16;12617:52;:::i;:::-;12685:16;;;;;12522:185;-1:-1:-1;;12522:185:1:o;12830:1301::-;13107:3;13136:1;13169:6;13163:13;13199:3;13221:1;13249:9;13245:2;13241:18;13231:28;;13309:2;13298:9;13294:18;13331;13321:61;;13375:4;13367:6;13363:17;13353:27;;13321:61;13401:2;13449;13441:6;13438:14;13418:18;13415:38;13412:165;;;-1:-1:-1;;;13476:33:1;;13532:4;13529:1;13522:15;13562:4;13483:3;13550:17;13412:165;13593:18;13620:104;;;;13738:1;13733:320;;;;13586:467;;13620:104;-1:-1:-1;;13653:24:1;;13641:37;;13698:16;;;;-1:-1:-1;13620:104:1;;13733:320;12469:1;12462:14;;;12506:4;12493:18;;13828:1;13842:165;13856:6;13853:1;13850:13;13842:165;;;13934:14;;13921:11;;;13914:35;13977:16;;;;13871:10;;13842:165;;;13846:3;;14036:6;14031:3;14027:16;14020:23;;13586:467;;;;;;;14069:56;14094:30;14120:3;14112:6;14094:30;:::i;:::-;-1:-1:-1;;;12772:20:1;;12817:1;12808:11;;12712:113;14069:56;14062:63;12830:1301;-1:-1:-1;;;;;12830:1301:1:o;15775:246::-;15815:4;-1:-1:-1;;;;;15928:10:1;;;;15898;;15950:12;;;15947:38;;;15965:18;;:::i;:::-;16002:13;;15775:246;-1:-1:-1;;;15775:246:1:o;16026:253::-;16066:3;-1:-1:-1;;;;;16155:2:1;16152:1;16148:10;16185:2;16182:1;16178:10;16216:3;16212:2;16208:12;16203:3;16200:21;16197:47;;;16224:18;;:::i;:::-;16260:13;;16026:253;-1:-1:-1;;;;16026:253:1:o;16637:125::-;16677:4;16705:1;16702;16699:8;16696:34;;;16710:18;;:::i;:::-;-1:-1:-1;16747:9:1;;16637:125::o;17585:136::-;17624:3;17652:5;17642:39;;17661:18;;:::i;:::-;-1:-1:-1;;;17697:18:1;;17585:136::o;18142:500::-;-1:-1:-1;;;;;18411:15:1;;;18393:34;;18463:15;;18458:2;18443:18;;18436:43;18510:2;18495:18;;18488:34;;;18558:3;18553:2;18538:18;;18531:31;;;18336:4;;18579:57;;18616:19;;18608:6;18579:57;:::i;:::-;18571:65;18142:500;-1:-1:-1;;;;;;18142:500:1:o;18647:249::-;18716:6;18769:2;18757:9;18748:7;18744:23;18740:32;18737:52;;;18785:1;18782;18775:12;18737:52;18817:9;18811:16;18836:30;18860:5;18836:30;:::i;18901:127::-;18962:10;18957:3;18953:20;18950:1;18943:31;18993:4;18990:1;18983:15;19017:4;19014:1;19007:15;19033:120;19073:1;19099;19089:35;;19104:18;;:::i;:::-;-1:-1:-1;19138:9:1;;19033:120::o;19158:112::-;19190:1;19216;19206:35;;19221:18;;:::i;:::-;-1:-1:-1;19255:9:1;;19158:112::o;19275:127::-;19336:10;19331:3;19327:20;19324:1;19317:31;19367:4;19364:1;19357:15;19391:4;19388:1;19381:15

Swarm Source

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