ETH Price: $2,511.83 (-0.51%)

Token

DownbadDAO (DBDao)
 

Overview

Max Total Supply

352 DBDao

Holders

210

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
malakititi.eth
Balance
1 DBDao
0x8e26bddc7f96146bf3c719aeca22e2cfb98ec760
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:
DownBadDao

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-29
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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



pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

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

    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: NFT/Context.sol



pragma solidity ^0.8.0;



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: NFT/Ownable.sol



pragma solidity ^0.8.0;


abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: NFT/Address.sol



pragma solidity ^0.8.1;

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

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

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

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

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

    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

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

    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    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
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: NFT/IERC721Receiver.sol



pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: NFT/IERC165.sol



pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: NFT/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: NFT/IERC721.sol



pragma solidity ^0.8.0;


interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: NFT/IERC721Metadata.sol



pragma solidity ^0.8.0;


interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: NFT/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: NFT/ERC721A.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: NFT/primary.sol
pragma solidity ^0.8.0;

contract DownBadDao is Ownable, ERC721A, ReentrancyGuard {
    uint256 public constant wlStart = 0;
    uint256 public constant publicStart = 0;
    uint256 private constant MAX_BATCH_SIZE = 20;
    uint256 public paused;
    mapping(address => uint256) public presaleAddressMintCount;

    string private _baseTokenURI = "https://dbdao.io/metadata/";
    uint256 private constant _PUBLIC_PRICE = 0.02 ether;
    uint256 private _MAX_MINT = 3000;
    address private _TEAM = 0x4d2f0A616719Af8d37b24dCd33Fb91089cA6F808;

    constructor() ERC721A("DownbadDAO", "DBDao", MAX_BATCH_SIZE, _MAX_MINT) {
        
    }

    modifier mintGuard(uint256 tokenCount) {
        // easy checks
        require(paused == 0, "Sale is not available");
        require(tokenCount > 0 && tokenCount <= MAX_BATCH_SIZE, "You must purchase between 1 and 20 tkens");
        require(msg.sender == tx.origin, "No buying on behalf of others");
        // only use public sale price after the public sale start time
        if (block.timestamp > publicStart) {
            require(_PUBLIC_PRICE * tokenCount <= msg.value, "Not enough funds");
        }
        require(totalSupply() + tokenCount <= _MAX_MINT+1, "Not enough supply remaining");
        _;
    }

    function mint(uint256 amount) external payable mintGuard(amount) {
        require(block.timestamp > publicStart, "Sale not live");
        _safeMint(msg.sender, amount);
    }

    function mintForOpenSea() external onlyOwner {
        require(totalSupply() == 0);
        _safeMint(msg.sender, 1);
    }

    function pause() external onlyOwner {
        paused = 1;
    }

    function unpause() external onlyOwner {
        paused = 0;
    }

    function setMaxMint(uint256 maxMint) external onlyOwner {
        require(maxMint <= 9999);
        _MAX_MINT = maxMint;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function cashout() external onlyOwner {
        payable(_TEAM).transfer(address(this).balance);
    }

    function setCashout(address addr) external onlyOwner returns(address) {
        _TEAM = addr;
        return addr;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintForOpenSea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"addr","type":"address"}],"name":"setCashout","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60006001819055600855610100604052601a60c08190527f68747470733a2f2f646264616f2e696f2f6d657461646174612f00000000000060e09081526200004b91600c91906200024b565b50610bb8600d55600e80546001600160a01b031916734d2f0a616719af8d37b24dcd33fb91089ca6f8081790553480156200008557600080fd5b506040518060400160405280600a815260200169446f776e62616444414f60b01b81525060405180604001604052806005815260200164444244616f60d81b8152506014600d54620000e6620000e0620001f760201b60201c565b620001fb565b60008111620001535760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001b55760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200014a565b8351620001ca9060029060208701906200024b565b508251620001e09060039060208601906200024b565b5060a091909152608052505060016009556200032e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025990620002f1565b90600052602060002090601f0160209004810192826200027d5760008555620002c8565b82601f106200029857805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c8578251825591602001919060010190620002ab565b50620002d6929150620002da565b5090565b5b80821115620002d65760008155600101620002db565b600181811c908216806200030657607f821691505b602082108114156200032857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516122fd6200035f60003960008181611627015281816116510152611a770152600050506122fd6000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610523578063d7224ba014610543578063e985e9c514610559578063f2fde38b146105a257600080fd5b8063a22cb465146104c3578063a5f4c6ff1461021d578063b88d4fde146104e3578063c75a20b31461050357600080fd5b80638456cb59116100d15780638456cb59146104685780638da5cb5b1461047d57806395d89b411461049b578063a0712d68146104b057600080fd5b806370a08231146103f1578063715018a6146104115780637db5a6361461042657806384054d3d1461045357600080fd5b80633f4ba83a1161017a578063547520fe11610149578063547520fe1461037b57806355f804b31461039b5780635c975abb146103bb5780636352211e146103d157600080fd5b80633f4ba83a1461031157806342842e0e146103265780634f6ccce714610346578063529b7c5a1461036657600080fd5b8063095ea7b3116101b6578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d15780632f745c59146102f157600080fd5b806301ffc9a7146101e85780630489cf6e1461021d57806306fdde0314610240578063081812fc14610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611f08565b6105c2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232600081565b604051908152602001610214565b34801561024c57600080fd5b5061025561062f565b6040516102149190612065565b34801561026e57600080fd5b5061028261027d366004611fb4565b6106c1565b6040516001600160a01b039091168152602001610214565b3480156102a657600080fd5b506102ba6102b5366004611ede565b610751565b005b3480156102c857600080fd5b50600154610232565b3480156102dd57600080fd5b506102ba6102ec366004611d8a565b610869565b3480156102fd57600080fd5b5061023261030c366004611ede565b610874565b34801561031d57600080fd5b506102ba6109ed565b34801561033257600080fd5b506102ba610341366004611d8a565b610a1e565b34801561035257600080fd5b50610232610361366004611fb4565b610a39565b34801561037257600080fd5b506102ba610aa2565b34801561038757600080fd5b506102ba610396366004611fb4565b610ae6565b3480156103a757600080fd5b506102ba6103b6366004611f42565b610b24565b3480156103c757600080fd5b50610232600a5481565b3480156103dd57600080fd5b506102826103ec366004611fb4565b610b5a565b3480156103fd57600080fd5b5061023261040c366004611d3c565b610b6c565b34801561041d57600080fd5b506102ba610bfd565b34801561043257600080fd5b50610232610441366004611d3c565b600b6020526000908152604090205481565b34801561045f57600080fd5b506102ba610c31565b34801561047457600080fd5b506102ba610c97565b34801561048957600080fd5b506000546001600160a01b0316610282565b3480156104a757600080fd5b50610255610cc8565b6102ba6104be366004611fb4565b610cd7565b3480156104cf57600080fd5b506102ba6104de366004611ea2565b610ef6565b3480156104ef57600080fd5b506102ba6104fe366004611dc6565b610fbb565b34801561050f57600080fd5b5061028261051e366004611d3c565b610ff4565b34801561052f57600080fd5b5061025561053e366004611fb4565b611042565b34801561054f57600080fd5b5061023260085481565b34801561056557600080fd5b50610208610574366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ae57600080fd5b506102ba6105bd366004611d3c565b61110f565b60006001600160e01b031982166380ac58cd60e01b14806105f357506001600160e01b03198216635b5e139f60e01b145b8061060e57506001600160e01b0319821663780e9d6360e01b145b8061062957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461063e906121ef565b80601f016020809104026020016040519081016040528092919081815260200182805461066a906121ef565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106ce826001541190565b6107355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075c82610b5a565b9050806001600160a01b0316836001600160a01b031614156107cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161072c565b336001600160a01b03821614806107e757506107e78133610574565b6108595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072c565b6108648383836111a7565b505050565b610864838383611203565b600061087f83610b6c565b82106108d85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161072c565b60006108e360015490565b905060008060005b8381101561098d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093e57805192505b876001600160a01b0316836001600160a01b0316141561097a578684141561096c5750935061062992505050565b836109768161222a565b9450505b50806109858161222a565b9150506108eb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161072c565b6000546001600160a01b03163314610a175760405162461bcd60e51b815260040161072c90612078565b6000600a55565b61086483838360405180602001604052806000815250610fbb565b6000610a4460015490565b8210610a9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161072c565b5090565b6000546001600160a01b03163314610acc5760405162461bcd60e51b815260040161072c90612078565b60015415610ad957600080fd5b610ae433600161158b565b565b6000546001600160a01b03163314610b105760405162461bcd60e51b815260040161072c90612078565b61270f811115610b1f57600080fd5b600d55565b6000546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161072c90612078565b610864600c8383611c95565b6000610b65826115a5565b5192915050565b60006001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161072c565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c275760405162461bcd60e51b815260040161072c90612078565b610ae4600061174f565b6000546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161072c90612078565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260040161072c90612078565b6001600a55565b60606003805461063e906121ef565b80600a54600014610d225760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b604482015260640161072c565b600081118015610d33575060148111155b610d905760405162461bcd60e51b815260206004820152602860248201527f596f75206d757374207075726368617365206265747765656e203120616e6420604482015267323020746b656e7360c01b606482015260840161072c565b333214610ddf5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f7468657273000000604482015260640161072c565b4215610e385734610df78266470de4df82000061214e565b1115610e385760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161072c565b600d54610e46906001612122565b81610e5060015490565b610e5a9190612122565b1115610ea85760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e670000000000604482015260640161072c565b60004211610ee85760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161072c565b610ef2338361158b565b5050565b6001600160a01b038216331415610f4f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc6848484611203565b610fd28484848461179f565b610fee5760405162461bcd60e51b815260040161072c906120ad565b50505050565b600080546001600160a01b0316331461101f5760405162461bcd60e51b815260040161072c90612078565b50600e80546001600160a01b0319166001600160a01b038316179055805b919050565b606061104f826001541190565b6110b35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072c565b60006110bd6118ad565b905060008151116110dd5760405180602001604052806000815250611108565b806110e7846118bc565b6040516020016110f8929190611ff9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111395760405162461bcd60e51b815260040161072c90612078565b6001600160a01b03811661119e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072c565b610c948161174f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061120e826115a5565b80519091506000906001600160a01b0316336001600160a01b0316148061124557503361123a846106c1565b6001600160a01b0316145b80611257575081516112579033610574565b9050806112c15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161072c565b846001600160a01b031682600001516001600160a01b0316146113355760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161072c565b6001600160a01b0384166113995760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161072c565b6113a960008484600001516111a7565b6001600160a01b03851660009081526005602052604081208054600192906113db9084906001600160801b031661216d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142791859116612100565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114af846001612122565b6000818152600460205260409020549091506001600160a01b0316611541576114d9816001541190565b156115415760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ef28282604051806020016040528060008152506119ba565b60408051808201909152600080825260208201526115c4826001541190565b6116235760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161072c565b60007f00000000000000000000000000000000000000000000000000000000000000008310611684576116767f000000000000000000000000000000000000000000000000000000000000000084612195565b611681906001612122565b90505b825b8181106116ee576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116db57949350505050565b50806116e6816121d8565b915050611686565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161072c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156118a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e3903390899088908890600401612028565b602060405180830381600087803b1580156117fd57600080fd5b505af192505050801561182d575060408051601f3d908101601f1916820190925261182a91810190611f25565b60015b611887573d80801561185b576040519150601f19603f3d011682016040523d82523d6000602084013e611860565b606091505b50805161187f5760405162461bcd60e51b815260040161072c906120ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118a5565b5060015b949350505050565b6060600c805461063e906121ef565b6060816118e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190a57806118f48161222a565b91506119039050600a8361213a565b91506118e4565b60008167ffffffffffffffff8111156119255761192561229b565b6040519080825280601f01601f19166020018201604052801561194f576020820181803683370190505b5090505b84156118a557611964600183612195565b9150611971600a86612245565b61197c906030612122565b60f81b81838151811061199157611991612285565b60200101906001600160f81b031916908160001a9053506119b3600a8661213a565b9450611953565b6001546001600160a01b038416611a1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161072c565b611a28816001541190565b15611a755760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161072c565b7f0000000000000000000000000000000000000000000000000000000000000000831115611af05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161072c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b4c908790612100565b6001600160801b03168152602001858360200151611b6a9190612100565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c8a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c4e600088848861179f565b611c6a5760405162461bcd60e51b815260040161072c906120ad565b81611c748161222a565b9250508080611c829061222a565b915050611c01565b506001819055611583565b828054611ca1906121ef565b90600052602060002090601f016020900481019282611cc35760008555611d09565b82601f10611cdc5782800160ff19823516178555611d09565b82800160010185558215611d09579182015b82811115611d09578235825591602001919060010190611cee565b50610a9e9291505b80821115610a9e5760008155600101611d11565b80356001600160a01b038116811461103d57600080fd5b600060208284031215611d4e57600080fd5b61110882611d25565b60008060408385031215611d6a57600080fd5b611d7383611d25565b9150611d8160208401611d25565b90509250929050565b600080600060608486031215611d9f57600080fd5b611da884611d25565b9250611db660208501611d25565b9150604084013590509250925092565b60008060008060808587031215611ddc57600080fd5b611de585611d25565b9350611df360208601611d25565b925060408501359150606085013567ffffffffffffffff80821115611e1757600080fd5b818701915087601f830112611e2b57600080fd5b813581811115611e3d57611e3d61229b565b604051601f8201601f19908116603f01168101908382118183101715611e6557611e6561229b565b816040528281528a6020848701011115611e7e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611eb557600080fd5b611ebe83611d25565b915060208301358015158114611ed357600080fd5b809150509250929050565b60008060408385031215611ef157600080fd5b611efa83611d25565b946020939093013593505050565b600060208284031215611f1a57600080fd5b8135611108816122b1565b600060208284031215611f3757600080fd5b8151611108816122b1565b60008060208385031215611f5557600080fd5b823567ffffffffffffffff80821115611f6d57600080fd5b818501915085601f830112611f8157600080fd5b813581811115611f9057600080fd5b866020828501011115611fa257600080fd5b60209290920196919550909350505050565b600060208284031215611fc657600080fd5b5035919050565b60008151808452611fe58160208601602086016121ac565b601f01601f19169290920160200192915050565b6000835161200b8184602088016121ac565b83519083019061201f8183602088016121ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205b90830184611fcd565b9695505050505050565b6020815260006111086020830184611fcd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561201f5761201f612259565b6000821982111561213557612135612259565b500190565b6000826121495761214961226f565b500490565b600081600019048311821515161561216857612168612259565b500290565b60006001600160801b038381169083168181101561218d5761218d612259565b039392505050565b6000828210156121a7576121a7612259565b500390565b60005b838110156121c75781810151838201526020016121af565b83811115610fee5750506000910152565b6000816121e7576121e7612259565b506000190190565b600181811c9082168061220357607f821691505b6020821081141561222457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223e5761223e612259565b5060010190565b6000826122545761225461226f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea26469706673582212207d9375b21444b7199c27cddd52aa902e81e0a5a61200fd433e18ab8c8265d43064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610523578063d7224ba014610543578063e985e9c514610559578063f2fde38b146105a257600080fd5b8063a22cb465146104c3578063a5f4c6ff1461021d578063b88d4fde146104e3578063c75a20b31461050357600080fd5b80638456cb59116100d15780638456cb59146104685780638da5cb5b1461047d57806395d89b411461049b578063a0712d68146104b057600080fd5b806370a08231146103f1578063715018a6146104115780637db5a6361461042657806384054d3d1461045357600080fd5b80633f4ba83a1161017a578063547520fe11610149578063547520fe1461037b57806355f804b31461039b5780635c975abb146103bb5780636352211e146103d157600080fd5b80633f4ba83a1461031157806342842e0e146103265780634f6ccce714610346578063529b7c5a1461036657600080fd5b8063095ea7b3116101b6578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d15780632f745c59146102f157600080fd5b806301ffc9a7146101e85780630489cf6e1461021d57806306fdde0314610240578063081812fc14610262575b600080fd5b3480156101f457600080fd5b50610208610203366004611f08565b6105c2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232600081565b604051908152602001610214565b34801561024c57600080fd5b5061025561062f565b6040516102149190612065565b34801561026e57600080fd5b5061028261027d366004611fb4565b6106c1565b6040516001600160a01b039091168152602001610214565b3480156102a657600080fd5b506102ba6102b5366004611ede565b610751565b005b3480156102c857600080fd5b50600154610232565b3480156102dd57600080fd5b506102ba6102ec366004611d8a565b610869565b3480156102fd57600080fd5b5061023261030c366004611ede565b610874565b34801561031d57600080fd5b506102ba6109ed565b34801561033257600080fd5b506102ba610341366004611d8a565b610a1e565b34801561035257600080fd5b50610232610361366004611fb4565b610a39565b34801561037257600080fd5b506102ba610aa2565b34801561038757600080fd5b506102ba610396366004611fb4565b610ae6565b3480156103a757600080fd5b506102ba6103b6366004611f42565b610b24565b3480156103c757600080fd5b50610232600a5481565b3480156103dd57600080fd5b506102826103ec366004611fb4565b610b5a565b3480156103fd57600080fd5b5061023261040c366004611d3c565b610b6c565b34801561041d57600080fd5b506102ba610bfd565b34801561043257600080fd5b50610232610441366004611d3c565b600b6020526000908152604090205481565b34801561045f57600080fd5b506102ba610c31565b34801561047457600080fd5b506102ba610c97565b34801561048957600080fd5b506000546001600160a01b0316610282565b3480156104a757600080fd5b50610255610cc8565b6102ba6104be366004611fb4565b610cd7565b3480156104cf57600080fd5b506102ba6104de366004611ea2565b610ef6565b3480156104ef57600080fd5b506102ba6104fe366004611dc6565b610fbb565b34801561050f57600080fd5b5061028261051e366004611d3c565b610ff4565b34801561052f57600080fd5b5061025561053e366004611fb4565b611042565b34801561054f57600080fd5b5061023260085481565b34801561056557600080fd5b50610208610574366004611d57565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ae57600080fd5b506102ba6105bd366004611d3c565b61110f565b60006001600160e01b031982166380ac58cd60e01b14806105f357506001600160e01b03198216635b5e139f60e01b145b8061060e57506001600160e01b0319821663780e9d6360e01b145b8061062957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461063e906121ef565b80601f016020809104026020016040519081016040528092919081815260200182805461066a906121ef565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106ce826001541190565b6107355760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075c82610b5a565b9050806001600160a01b0316836001600160a01b031614156107cb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161072c565b336001600160a01b03821614806107e757506107e78133610574565b6108595760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072c565b6108648383836111a7565b505050565b610864838383611203565b600061087f83610b6c565b82106108d85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161072c565b60006108e360015490565b905060008060005b8381101561098d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093e57805192505b876001600160a01b0316836001600160a01b0316141561097a578684141561096c5750935061062992505050565b836109768161222a565b9450505b50806109858161222a565b9150506108eb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161072c565b6000546001600160a01b03163314610a175760405162461bcd60e51b815260040161072c90612078565b6000600a55565b61086483838360405180602001604052806000815250610fbb565b6000610a4460015490565b8210610a9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161072c565b5090565b6000546001600160a01b03163314610acc5760405162461bcd60e51b815260040161072c90612078565b60015415610ad957600080fd5b610ae433600161158b565b565b6000546001600160a01b03163314610b105760405162461bcd60e51b815260040161072c90612078565b61270f811115610b1f57600080fd5b600d55565b6000546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161072c90612078565b610864600c8383611c95565b6000610b65826115a5565b5192915050565b60006001600160a01b038216610bd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161072c565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c275760405162461bcd60e51b815260040161072c90612078565b610ae4600061174f565b6000546001600160a01b03163314610c5b5760405162461bcd60e51b815260040161072c90612078565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260040161072c90612078565b6001600a55565b60606003805461063e906121ef565b80600a54600014610d225760405162461bcd60e51b815260206004820152601560248201527453616c65206973206e6f7420617661696c61626c6560581b604482015260640161072c565b600081118015610d33575060148111155b610d905760405162461bcd60e51b815260206004820152602860248201527f596f75206d757374207075726368617365206265747765656e203120616e6420604482015267323020746b656e7360c01b606482015260840161072c565b333214610ddf5760405162461bcd60e51b815260206004820152601d60248201527f4e6f20627579696e67206f6e20626568616c66206f66206f7468657273000000604482015260640161072c565b4215610e385734610df78266470de4df82000061214e565b1115610e385760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161072c565b600d54610e46906001612122565b81610e5060015490565b610e5a9190612122565b1115610ea85760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820737570706c792072656d61696e696e670000000000604482015260640161072c565b60004211610ee85760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161072c565b610ef2338361158b565b5050565b6001600160a01b038216331415610f4f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fc6848484611203565b610fd28484848461179f565b610fee5760405162461bcd60e51b815260040161072c906120ad565b50505050565b600080546001600160a01b0316331461101f5760405162461bcd60e51b815260040161072c90612078565b50600e80546001600160a01b0319166001600160a01b038316179055805b919050565b606061104f826001541190565b6110b35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161072c565b60006110bd6118ad565b905060008151116110dd5760405180602001604052806000815250611108565b806110e7846118bc565b6040516020016110f8929190611ff9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146111395760405162461bcd60e51b815260040161072c90612078565b6001600160a01b03811661119e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072c565b610c948161174f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061120e826115a5565b80519091506000906001600160a01b0316336001600160a01b0316148061124557503361123a846106c1565b6001600160a01b0316145b80611257575081516112579033610574565b9050806112c15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161072c565b846001600160a01b031682600001516001600160a01b0316146113355760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161072c565b6001600160a01b0384166113995760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161072c565b6113a960008484600001516111a7565b6001600160a01b03851660009081526005602052604081208054600192906113db9084906001600160801b031661216d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142791859116612100565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114af846001612122565b6000818152600460205260409020549091506001600160a01b0316611541576114d9816001541190565b156115415760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ef28282604051806020016040528060008152506119ba565b60408051808201909152600080825260208201526115c4826001541190565b6116235760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161072c565b60007f00000000000000000000000000000000000000000000000000000000000000148310611684576116767f000000000000000000000000000000000000000000000000000000000000001484612195565b611681906001612122565b90505b825b8181106116ee576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116db57949350505050565b50806116e6816121d8565b915050611686565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161072c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156118a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e3903390899088908890600401612028565b602060405180830381600087803b1580156117fd57600080fd5b505af192505050801561182d575060408051601f3d908101601f1916820190925261182a91810190611f25565b60015b611887573d80801561185b576040519150601f19603f3d011682016040523d82523d6000602084013e611860565b606091505b50805161187f5760405162461bcd60e51b815260040161072c906120ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118a5565b5060015b949350505050565b6060600c805461063e906121ef565b6060816118e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190a57806118f48161222a565b91506119039050600a8361213a565b91506118e4565b60008167ffffffffffffffff8111156119255761192561229b565b6040519080825280601f01601f19166020018201604052801561194f576020820181803683370190505b5090505b84156118a557611964600183612195565b9150611971600a86612245565b61197c906030612122565b60f81b81838151811061199157611991612285565b60200101906001600160f81b031916908160001a9053506119b3600a8661213a565b9450611953565b6001546001600160a01b038416611a1d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161072c565b611a28816001541190565b15611a755760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161072c565b7f0000000000000000000000000000000000000000000000000000000000000014831115611af05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161072c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b4c908790612100565b6001600160801b03168152602001858360200151611b6a9190612100565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c8a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c4e600088848861179f565b611c6a5760405162461bcd60e51b815260040161072c906120ad565b81611c748161222a565b9250508080611c829061222a565b915050611c01565b506001819055611583565b828054611ca1906121ef565b90600052602060002090601f016020900481019282611cc35760008555611d09565b82601f10611cdc5782800160ff19823516178555611d09565b82800160010185558215611d09579182015b82811115611d09578235825591602001919060010190611cee565b50610a9e9291505b80821115610a9e5760008155600101611d11565b80356001600160a01b038116811461103d57600080fd5b600060208284031215611d4e57600080fd5b61110882611d25565b60008060408385031215611d6a57600080fd5b611d7383611d25565b9150611d8160208401611d25565b90509250929050565b600080600060608486031215611d9f57600080fd5b611da884611d25565b9250611db660208501611d25565b9150604084013590509250925092565b60008060008060808587031215611ddc57600080fd5b611de585611d25565b9350611df360208601611d25565b925060408501359150606085013567ffffffffffffffff80821115611e1757600080fd5b818701915087601f830112611e2b57600080fd5b813581811115611e3d57611e3d61229b565b604051601f8201601f19908116603f01168101908382118183101715611e6557611e6561229b565b816040528281528a6020848701011115611e7e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611eb557600080fd5b611ebe83611d25565b915060208301358015158114611ed357600080fd5b809150509250929050565b60008060408385031215611ef157600080fd5b611efa83611d25565b946020939093013593505050565b600060208284031215611f1a57600080fd5b8135611108816122b1565b600060208284031215611f3757600080fd5b8151611108816122b1565b60008060208385031215611f5557600080fd5b823567ffffffffffffffff80821115611f6d57600080fd5b818501915085601f830112611f8157600080fd5b813581811115611f9057600080fd5b866020828501011115611fa257600080fd5b60209290920196919550909350505050565b600060208284031215611fc657600080fd5b5035919050565b60008151808452611fe58160208601602086016121ac565b601f01601f19169290920160200192915050565b6000835161200b8184602088016121ac565b83519083019061201f8183602088016121ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205b90830184611fcd565b9695505050505050565b6020815260006111086020830184611fcd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561201f5761201f612259565b6000821982111561213557612135612259565b500190565b6000826121495761214961226f565b500490565b600081600019048311821515161561216857612168612259565b500290565b60006001600160801b038381169083168181101561218d5761218d612259565b039392505050565b6000828210156121a7576121a7612259565b500390565b60005b838110156121c75781810151838201526020016121af565b83811115610fee5750506000910152565b6000816121e7576121e7612259565b506000190190565b600181811c9082168061220357607f821691505b6020821081141561222457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223e5761223e612259565b5060010190565b6000826122545761225461226f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea26469706673582212207d9375b21444b7199c27cddd52aa902e81e0a5a61200fd433e18ab8c8265d43064736f6c63430008070033

Deployed Bytecode Sourcemap

28079:2352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15724:370;;;;;;;;;;-1:-1:-1;15724:370:0;;;;;:::i;:::-;;:::i;:::-;;;5624:14:1;;5617:22;5599:41;;5587:2;5572:18;15724:370:0;;;;;;;;28143:35;;;;;;;;;;;;28177:1;28143:35;;;;;16239:25:1;;;16227:2;16212:18;28143:35:0;16093:177:1;17450:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18975:204::-;;;;;;;;;;-1:-1:-1;18975:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4922:32:1;;;4904:51;;4892:2;4877:18;18975:204:0;4758:203:1;18538:379:0;;;;;;;;;;-1:-1:-1;18538:379:0;;;;;:::i;:::-;;:::i;:::-;;14285:94;;;;;;;;;;-1:-1:-1;14361:12:0;;14285:94;;19825:142;;;;;;;;;;-1:-1:-1;19825:142:0;;;;;:::i;:::-;;:::i;14916:744::-;;;;;;;;;;-1:-1:-1;14916:744:0;;;;;:::i;:::-;;:::i;29744:67::-;;;;;;;;;;;;;:::i;20030:157::-;;;;;;;;;;-1:-1:-1;20030:157:0;;;;;:::i;:::-;;:::i;14448:177::-;;;;;;;;;;-1:-1:-1;14448:177:0;;;;;:::i;:::-;;:::i;29537:126::-;;;;;;;;;;;;;:::i;29819:129::-;;;;;;;;;;-1:-1:-1;29819:129:0;;;;;:::i;:::-;;:::i;29956:106::-;;;;;;;;;;-1:-1:-1;29956:106:0;;;;;:::i;:::-;;:::i;28282:21::-;;;;;;;;;;;;;;;;17273:118;;;;;;;;;;-1:-1:-1;17273:118:0;;;;;:::i;:::-;;:::i;16150:211::-;;;;;;;;;;-1:-1:-1;16150:211:0;;;;;:::i;:::-;;:::i;3840:103::-;;;;;;;;;;;;;:::i;28310:58::-;;;;;;;;;;-1:-1:-1;28310:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;30192:103;;;;;;;;;;;;;:::i;29671:65::-;;;;;;;;;;;;;:::i;3617:87::-;;;;;;;;;;-1:-1:-1;3663:7:0;3690:6;-1:-1:-1;;;;;3690:6:0;3617:87;;17605:98;;;;;;;;;;;;;:::i;29350:179::-;;;;;;:::i;:::-;;:::i;19243:274::-;;;;;;;;;;-1:-1:-1;19243:274:0;;;;;:::i;:::-;;:::i;20250:311::-;;;;;;;;;;-1:-1:-1;20250:311:0;;;;;:::i;:::-;;:::i;30303:123::-;;;;;;;;;;-1:-1:-1;30303:123:0;;;;;:::i;:::-;;:::i;17766:394::-;;;;;;;;;;-1:-1:-1;17766:394:0;;;;;:::i;:::-;;:::i;24665:43::-;;;;;;;;;;;;;;;;19580:186;;;;;;;;;;-1:-1:-1;19580:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;19725:25:0;;;19702:4;19725:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19580:186;3951:201;;;;;;;;;;-1:-1:-1;3951:201:0;;;;;:::i;:::-;;:::i;15724:370::-;15851:4;-1:-1:-1;;;;;;15881:40:0;;-1:-1:-1;;;15881:40:0;;:99;;-1:-1:-1;;;;;;;15932:48:0;;-1:-1:-1;;;15932:48:0;15881:99;:160;;;-1:-1:-1;;;;;;;15991:50:0;;-1:-1:-1;;;15991:50:0;15881:160;:207;;;-1:-1:-1;;;;;;;;;;9408:40:0;;;16052:36;15867:221;15724:370;-1:-1:-1;;15724:370:0:o;17450:94::-;17504:13;17533:5;17526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17450:94;:::o;18975:204::-;19043:7;19067:16;19075:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;19067:16;19059:74;;;;-1:-1:-1;;;19059:74:0;;15478:2:1;19059:74:0;;;15460:21:1;15517:2;15497:18;;;15490:30;15556:34;15536:18;;;15529:62;-1:-1:-1;;;15607:18:1;;;15600:43;15660:19;;19059:74:0;;;;;;;;;-1:-1:-1;19149:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19149:24:0;;18975:204::o;18538:379::-;18607:13;18623:24;18639:7;18623:15;:24::i;:::-;18607:40;;18668:5;-1:-1:-1;;;;;18662:11:0;:2;-1:-1:-1;;;;;18662:11:0;;;18654:58;;;;-1:-1:-1;;;18654:58:0;;12358:2:1;18654:58:0;;;12340:21:1;12397:2;12377:18;;;12370:30;12436:34;12416:18;;;12409:62;-1:-1:-1;;;12487:18:1;;;12480:32;12529:19;;18654:58:0;12156:398:1;18654:58:0;3184:10;-1:-1:-1;;;;;18737:21:0;;;;:62;;-1:-1:-1;18762:37:0;18779:5;3184:10;19580:186;:::i;18762:37::-;18721:153;;;;-1:-1:-1;;;18721:153:0;;8453:2:1;18721:153:0;;;8435:21:1;8492:2;8472:18;;;8465:30;8531:34;8511:18;;;8504:62;8602:27;8582:18;;;8575:55;8647:19;;18721:153:0;8251:421:1;18721:153:0;18883:28;18892:2;18896:7;18905:5;18883:8;:28::i;:::-;18600:317;18538:379;;:::o;19825:142::-;19933:28;19943:4;19949:2;19953:7;19933:9;:28::i;14916:744::-;15025:7;15060:16;15070:5;15060:9;:16::i;:::-;15052:5;:24;15044:71;;;;-1:-1:-1;;;15044:71:0;;6077:2:1;15044:71:0;;;6059:21:1;6116:2;6096:18;;;6089:30;6155:34;6135:18;;;6128:62;-1:-1:-1;;;6206:18:1;;;6199:32;6248:19;;15044:71:0;5875:398:1;15044:71:0;15122:22;15147:13;14361:12;;;14285:94;15147:13;15122:38;;15167:19;15197:25;15247:9;15242:350;15266:14;15262:1;:18;15242:350;;;15296:31;15330:14;;;:11;:14;;;;;;;;;15296:48;;;;;;;;;-1:-1:-1;;;;;15296:48:0;;;;;-1:-1:-1;;;15296:48:0;;;;;;;;;;;;15357:28;15353:89;;15418:14;;;-1:-1:-1;15353:89:0;15475:5;-1:-1:-1;;;;;15454:26:0;:17;-1:-1:-1;;;;;15454:26:0;;15450:135;;;15512:5;15497:11;:20;15493:59;;;-1:-1:-1;15539:1:0;-1:-1:-1;15532:8:0;;-1:-1:-1;;;15532:8:0;15493:59;15562:13;;;;:::i;:::-;;;;15450:135;-1:-1:-1;15282:3:0;;;;:::i;:::-;;;;15242:350;;;-1:-1:-1;15598:56:0;;-1:-1:-1;;;15598:56:0;;14297:2:1;15598:56:0;;;14279:21:1;14336:2;14316:18;;;14309:30;14375:34;14355:18;;;14348:62;-1:-1:-1;;;14426:18:1;;;14419:44;14480:19;;15598:56:0;14095:410:1;29744:67:0;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;29802:1:::1;29793:6;:10:::0;29744:67::o;20030:157::-;20142:39;20159:4;20165:2;20169:7;20142:39;;;;;;;;;;;;:16;:39::i;14448:177::-;14515:7;14547:13;14361:12;;;14285:94;14547:13;14539:5;:21;14531:69;;;;-1:-1:-1;;;14531:69:0;;7643:2:1;14531:69:0;;;7625:21:1;7682:2;7662:18;;;7655:30;7721:34;7701:18;;;7694:62;-1:-1:-1;;;7772:18:1;;;7765:33;7815:19;;14531:69:0;7441:399:1;14531:69:0;-1:-1:-1;14614:5:0;14448:177::o;29537:126::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;14361:12;;29601:18;29593:27:::1;;;::::0;::::1;;29631:24;29641:10;29653:1;29631:9;:24::i;:::-;29537:126::o:0;29819:129::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;29905:4:::1;29894:7;:15;;29886:24;;;::::0;::::1;;29921:9;:19:::0;29819:129::o;29956:106::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;30031:23:::1;:13;30047:7:::0;;30031:23:::1;:::i;17273:118::-:0;17337:7;17360:20;17372:7;17360:11;:20::i;:::-;:25;;17273:118;-1:-1:-1;;17273:118:0:o;16150:211::-;16214:7;-1:-1:-1;;;;;16238:19:0;;16230:75;;;;-1:-1:-1;;;16230:75:0;;8879:2:1;16230:75:0;;;8861:21:1;8918:2;8898:18;;;8891:30;8957:34;8937:18;;;8930:62;-1:-1:-1;;;9008:18:1;;;9001:41;9059:19;;16230:75:0;8677:407:1;16230:75:0;-1:-1:-1;;;;;;16327:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;16327:27:0;;16150:211::o;3840:103::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;3905:30:::1;3932:1;3905:18;:30::i;30192:103::-:0;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;30249:5:::1;::::0;30241:46:::1;::::0;-1:-1:-1;;;;;30249:5:0;;::::1;::::0;30265:21:::1;30241:46:::0;::::1;;;::::0;30249:5:::1;30241:46:::0;30249:5;30241:46;30265:21;30249:5;30241:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;30192:103::o:0;29671:65::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;29727:1:::1;29718:6;:10:::0;29671:65::o;17605:98::-;17661:13;17690:7;17683:14;;;;;:::i;29350:179::-;29407:6;28795;;28805:1;28795:11;28787:45;;;;-1:-1:-1;;;28787:45:0;;15128:2:1;28787:45:0;;;15110:21:1;15167:2;15147:18;;;15140:30;-1:-1:-1;;;15186:18:1;;;15179:51;15247:18;;28787:45:0;14926:345:1;28787:45:0;28864:1;28851:10;:14;:46;;;;;28273:2;28869:10;:28;;28851:46;28843:99;;;;-1:-1:-1;;;28843:99:0;;10759:2:1;28843:99:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;-1:-1:-1;;;10888:18:1;;;10881:38;10936:19;;28843:99:0;10557:404:1;28843:99:0;28961:10;28975:9;28961:23;28953:65;;;;-1:-1:-1;;;28953:65:0;;10401:2:1;28953:65:0;;;10383:21:1;10440:2;10420:18;;;10413:30;10479:31;10459:18;;;10452:59;10528:18;;28953:65:0;10199:353:1;28953:65:0;29105:15;:29;29101:130;;29189:9;29159:26;29175:10;28484;29159:26;:::i;:::-;:39;;29151:68;;;;-1:-1:-1;;;29151:68:0;;7298:2:1;29151:68:0;;;7280:21:1;7337:2;7317:18;;;7310:30;-1:-1:-1;;;7356:18:1;;;7349:46;7412:18;;29151:68:0;7096:340:1;29151:68:0;29279:9;;:11;;29289:1;29279:11;:::i;:::-;29265:10;29249:13;14361:12;;;14285:94;29249:13;:26;;;;:::i;:::-;:41;;29241:81;;;;-1:-1:-1;;;29241:81:0;;13539:2:1;29241:81:0;;;13521:21:1;13578:2;13558:18;;;13551:30;13617:29;13597:18;;;13590:57;13664:18;;29241:81:0;13337:351:1;29241:81:0;28223:1:::1;29434:15;:29;29426:55;;;::::0;-1:-1:-1;;;29426:55:0;;9291:2:1;29426:55:0::1;::::0;::::1;9273:21:1::0;9330:2;9310:18;;;9303:30;-1:-1:-1;;;9349:18:1;;;9342:43;9402:18;;29426:55:0::1;9089:337:1::0;29426:55:0::1;29492:29;29502:10;29514:6;29492:9;:29::i;:::-;29350:179:::0;;:::o;19243:274::-;-1:-1:-1;;;;;19334:24:0;;3184:10;19334:24;;19326:63;;;;-1:-1:-1;;;19326:63:0;;11584:2:1;19326:63:0;;;11566:21:1;11623:2;11603:18;;;11596:30;11662:28;11642:18;;;11635:56;11708:18;;19326:63:0;11382:350:1;19326:63:0;3184:10;19398:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19398:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19398:53:0;;;;;;;;;;19463:48;;5599:41:1;;;19398:42:0;;3184:10;19463:48;;5572:18:1;19463:48:0;;;;;;;19243:274;;:::o;20250:311::-;20387:28;20397:4;20403:2;20407:7;20387:9;:28::i;:::-;20438:48;20461:4;20467:2;20471:7;20480:5;20438:22;:48::i;:::-;20422:133;;;;-1:-1:-1;;;20422:133:0;;;;;;;:::i;:::-;20250:311;;;;:::o;30303:123::-;30364:7;3690:6;;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;-1:-1:-1;30384:5:0::1;:12:::0;;-1:-1:-1;;;;;;30384:12:0::1;-1:-1:-1::0;;;;;30384:12:0;::::1;;::::0;;;3823:1:::1;30303:123:::0;;;:::o;17766:394::-;17864:13;17905:16;17913:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;17905:16;17889:97;;;;-1:-1:-1;;;17889:97:0;;11168:2:1;17889:97:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:34;11226:18;;;11219:62;-1:-1:-1;;;11297:18:1;;;11290:45;11352:19;;17889:97:0;10966:411:1;17889:97:0;17995:21;18019:10;:8;:10::i;:::-;17995:34;;18074:1;18056:7;18050:21;:25;:104;;;;;;;;;;;;;;;;;18111:7;18120:18;:7;:16;:18::i;:::-;18094:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18050:104;18036:118;17766:394;-1:-1:-1;;;17766:394:0:o;3951:201::-;3663:7;3690:6;-1:-1:-1;;;;;3690:6:0;3184:10;3752:23;3744:68;;;;-1:-1:-1;;;3744:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4040:22:0;::::1;4032:73;;;::::0;-1:-1:-1;;;4032:73:0;;6480:2:1;4032:73:0::1;::::0;::::1;6462:21:1::0;6519:2;6499:18;;;6492:30;6558:34;6538:18;;;6531:62;-1:-1:-1;;;6609:18:1;;;6602:36;6655:19;;4032:73:0::1;6278:402:1::0;4032:73:0::1;4116:28;4135:8;4116:18;:28::i;24487:172::-:0;24584:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24584:29:0;-1:-1:-1;;;;;24584:29:0;;;;;;;;;24625:28;;24584:24;;24625:28;;;;;;;24487:172;;;:::o;22852:1529::-;22949:35;22987:20;22999:7;22987:11;:20::i;:::-;23058:18;;22949:58;;-1:-1:-1;23016:22:0;;-1:-1:-1;;;;;23042:34:0;3184:10;-1:-1:-1;;;;;23042:34:0;;:81;;;-1:-1:-1;3184:10:0;23087:20;23099:7;23087:11;:20::i;:::-;-1:-1:-1;;;;;23087:36:0;;23042:81;:142;;;-1:-1:-1;23151:18:0;;23134:50;;3184:10;19580:186;:::i;23134:50::-;23016:169;;23210:17;23194:101;;;;-1:-1:-1;;;23194:101:0;;11939:2:1;23194:101:0;;;11921:21:1;11978:2;11958:18;;;11951:30;12017:34;11997:18;;;11990:62;-1:-1:-1;;;12068:18:1;;;12061:48;12126:19;;23194:101:0;11737:414:1;23194:101:0;23342:4;-1:-1:-1;;;;;23320:26:0;:13;:18;;;-1:-1:-1;;;;;23320:26:0;;23304:98;;;;-1:-1:-1;;;23304:98:0;;9633:2:1;23304:98:0;;;9615:21:1;9672:2;9652:18;;;9645:30;9711:34;9691:18;;;9684:62;-1:-1:-1;;;9762:18:1;;;9755:36;9808:19;;23304:98:0;9431:402:1;23304:98:0;-1:-1:-1;;;;;23417:16:0;;23409:66;;;;-1:-1:-1;;;23409:66:0;;8047:2:1;23409:66:0;;;8029:21:1;8086:2;8066:18;;;8059:30;8125:34;8105:18;;;8098:62;-1:-1:-1;;;8176:18:1;;;8169:35;8221:19;;23409:66:0;7845:401:1;23409:66:0;23584:49;23601:1;23605:7;23614:13;:18;;;23584:8;:49::i;:::-;-1:-1:-1;;;;;23642:18:0;;;;;;:12;:18;;;;;:31;;23672:1;;23642:18;:31;;23672:1;;-1:-1:-1;;;;;23642:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;23642:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23680:16:0;;-1:-1:-1;23680:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;23680:16:0;;:29;;-1:-1:-1;;23680:29:0;;:::i;:::-;;;-1:-1:-1;;;;;23680:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23739:43:0;;;;;;;;-1:-1:-1;;;;;23739:43:0;;;;;;23765:15;23739:43;;;;;;;;;-1:-1:-1;23716:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;23716:66:0;-1:-1:-1;;;;;;23716:66:0;;;;;;;;;;;24032:11;23728:7;-1:-1:-1;24032:11:0;:::i;:::-;24095:1;24054:24;;;:11;:24;;;;;:29;24010:33;;-1:-1:-1;;;;;;24054:29:0;24050:236;;24112:20;24120:11;20887:12;;-1:-1:-1;20877:22:0;20800:105;24112:20;24108:171;;;24172:97;;;;;;;;24199:18;;-1:-1:-1;;;;;24172:97:0;;;;;;24230:28;;;;24172:97;;;;;;;;;;-1:-1:-1;24145:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;24145:124:0;-1:-1:-1;;;;;;24145:124:0;;;;;;;;;;;;24108:171;24318:7;24314:2;-1:-1:-1;;;;;24299:27:0;24308:4;-1:-1:-1;;;;;24299:27:0;;;;;;;;;;;24333:42;22942:1439;;;22852:1529;;;:::o;20911:98::-;20976:27;20986:2;20990:8;20976:27;;;;;;;;;;;;:9;:27::i;16613:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;16730:16:0;16738:7;20887:12;;-1:-1:-1;20877:22:0;20800:105;16730:16;16722:71;;;;-1:-1:-1;;;16722:71:0;;6887:2:1;16722:71:0;;;6869:21:1;6926:2;6906:18;;;6899:30;6965:34;6945:18;;;6938:62;-1:-1:-1;;;7016:18:1;;;7009:40;7066:19;;16722:71:0;6685:406:1;16722:71:0;16802:26;16850:12;16839:7;:23;16835:93;;16894:22;16904:12;16894:7;:22;:::i;:::-;:26;;16919:1;16894:26;:::i;:::-;16873:47;;16835:93;16956:7;16936:212;16973:18;16965:4;:26;16936:212;;17010:31;17044:17;;;:11;:17;;;;;;;;;17010:51;;;;;;;;;-1:-1:-1;;;;;17010:51:0;;;;;-1:-1:-1;;;17010:51:0;;;;;;;;;;;;17074:28;17070:71;;17122:9;16613:606;-1:-1:-1;;;;16613:606:0:o;17070:71::-;-1:-1:-1;16993:6:0;;;;:::i;:::-;;;;16936:212;;;-1:-1:-1;17156:57:0;;-1:-1:-1;;;17156:57:0;;14712:2:1;17156:57:0;;;14694:21:1;14751:2;14731:18;;;14724:30;14790:34;14770:18;;;14763:62;-1:-1:-1;;;14841:18:1;;;14834:45;14896:19;;17156:57:0;14510:411:1;4160:191:0;4234:16;4253:6;;-1:-1:-1;;;;;4270:17:0;;;-1:-1:-1;;;;;;4270:17:0;;;;;;4303:40;;4253:6;;;;;;;4303:40;;4234:16;4303:40;4223:128;4160:191;:::o;26202:690::-;26339:4;-1:-1:-1;;;;;26356:13:0;;4524:19;:23;26352:535;;26395:72;;-1:-1:-1;;;26395:72:0;;-1:-1:-1;;;;;26395:36:0;;;;;:72;;3184:10;;26446:4;;26452:7;;26461:5;;26395:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:72:0;;;;;;;;-1:-1:-1;;26395:72:0;;;;;;;;;;;;:::i;:::-;;;26382:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26626:13:0;;26622:215;;26659:61;;-1:-1:-1;;;26659:61:0;;;;;;;:::i;26622:215::-;26805:6;26799:13;26790:6;26786:2;26782:15;26775:38;26382:464;-1:-1:-1;;;;;;26517:55:0;-1:-1:-1;;;26517:55:0;;-1:-1:-1;26510:62:0;;26352:535;-1:-1:-1;26875:4:0;26352:535;26202:690;;;;;;:::o;30070:114::-;30130:13;30163;30156:20;;;;;:::i;1662:532::-;1718:13;1748:10;1744:53;;-1:-1:-1;;1775:10:0;;;;;;;;;;;;-1:-1:-1;;;1775:10:0;;;;;1662:532::o;1744:53::-;1822:5;1807:12;1863:78;1870:9;;1863:78;;1896:8;;;;:::i;:::-;;-1:-1:-1;1919:10:0;;-1:-1:-1;1927:2:0;1919:10;;:::i;:::-;;;1863:78;;;1951:19;1983:6;1973:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1973:17:0;;1951:39;;2001:154;2008:10;;2001:154;;2035:11;2045:1;2035:11;;:::i;:::-;;-1:-1:-1;2104:10:0;2112:2;2104:5;:10;:::i;:::-;2091:24;;:2;:24;:::i;:::-;2078:39;;2061:6;2068;2061:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2061:56:0;;;;;;;;-1:-1:-1;2132:11:0;2141:2;2132:11;;:::i;:::-;;;2001:154;;21348:1272;21476:12;;-1:-1:-1;;;;;21503:16:0;;21495:62;;;;-1:-1:-1;;;21495:62:0;;13895:2:1;21495:62:0;;;13877:21:1;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;-1:-1:-1;;;14024:18:1;;;14017:31;14065:19;;21495:62:0;13693:397:1;21495:62:0;21694:21;21702:12;20887;;-1:-1:-1;20877:22:0;20800:105;21694:21;21693:22;21685:64;;;;-1:-1:-1;;;21685:64:0;;13181:2:1;21685:64:0;;;13163:21:1;13220:2;13200:18;;;13193:30;13259:31;13239:18;;;13232:59;13308:18;;21685:64:0;12979:353:1;21685:64:0;21776:12;21764:8;:24;;21756:71;;;;-1:-1:-1;;;21756:71:0;;15892:2:1;21756:71:0;;;15874:21:1;15931:2;15911:18;;;15904:30;15970:34;15950:18;;;15943:62;-1:-1:-1;;;16021:18:1;;;16014:32;16063:19;;21756:71:0;15690:398:1;21756:71:0;-1:-1:-1;;;;;21939:16:0;;21906:30;21939:16;;;:12;:16;;;;;;;;;21906:49;;;;;;;;;-1:-1:-1;;;;;21906:49:0;;;;;-1:-1:-1;;;21906:49:0;;;;;;;;;;;21981:119;;;;;;;;22001:19;;21906:49;;21981:119;;;22001:39;;22031:8;;22001:39;:::i;:::-;-1:-1:-1;;;;;21981:119:0;;;;;22084:8;22049:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;21981:119:0;;;;;;-1:-1:-1;;;;;21962:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;21962:138:0;;;;;;;;;;;;22135:43;;;;;;;;;;;22161:15;22135:43;;;;;;;;22107:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;22107:71:0;-1:-1:-1;;;;;;22107:71:0;;;;;;;;;;;;;;;;;;22119:12;;22231:281;22255:8;22251:1;:12;22231:281;;;22284:38;;22309:12;;-1:-1:-1;;;;;22284:38:0;;;22301:1;;22284:38;;22301:1;;22284:38;22349:59;22380:1;22384:2;22388:12;22402:5;22349:22;:59::i;:::-;22331:150;;;;-1:-1:-1;;;22331:150:0;;;;;;;:::i;:::-;22490:14;;;;:::i;:::-;;;;22265:3;;;;;:::i;:::-;;;;22231:281;;;-1:-1:-1;22520:12:0;:27;;;22554:60;20250:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;4966:488::-;-1:-1:-1;;;;;5235:15:1;;;5217:34;;5287:15;;5282:2;5267:18;;5260:43;5334:2;5319:18;;5312:34;;;5382:3;5377:2;5362:18;;5355:31;;;5160:4;;5403:45;;5428:19;;5420:6;5403:45;:::i;:::-;5395:53;4966:488;-1:-1:-1;;;;;;4966:488:1:o;5651:219::-;5800:2;5789:9;5782:21;5763:4;5820:44;5860:2;5849:9;5845:18;5837:6;5820:44;:::i;9838:356::-;10040:2;10022:21;;;10059:18;;;10052:30;10118:34;10113:2;10098:18;;10091:62;10185:2;10170:18;;9838:356::o;12559:415::-;12761:2;12743:21;;;12800:2;12780:18;;;12773:30;12839:34;12834:2;12819:18;;12812:62;-1:-1:-1;;;12905:2:1;12890:18;;12883:49;12964:3;12949:19;;12559:415::o;16275:253::-;16315:3;-1:-1:-1;;;;;16404:2:1;16401:1;16397:10;16434:2;16431:1;16427:10;16465:3;16461:2;16457:12;16452:3;16449:21;16446:47;;;16473:18;;:::i;16533:128::-;16573:3;16604:1;16600:6;16597:1;16594:13;16591:39;;;16610:18;;:::i;:::-;-1:-1:-1;16646:9:1;;16533:128::o;16666:120::-;16706:1;16732;16722:35;;16737:18;;:::i;:::-;-1:-1:-1;16771:9:1;;16666:120::o;16791:168::-;16831:7;16897:1;16893;16889:6;16885:14;16882:1;16879:21;16874:1;16867:9;16860:17;16856:45;16853:71;;;16904:18;;:::i;:::-;-1:-1:-1;16944:9:1;;16791:168::o;16964:246::-;17004:4;-1:-1:-1;;;;;17117:10:1;;;;17087;;17139:12;;;17136:38;;;17154:18;;:::i;:::-;17191:13;;16964:246;-1:-1:-1;;;16964:246:1:o;17215:125::-;17255:4;17283:1;17280;17277:8;17274:34;;;17288:18;;:::i;:::-;-1:-1:-1;17325:9:1;;17215:125::o;17345:258::-;17417:1;17427:113;17441:6;17438:1;17435:13;17427:113;;;17517:11;;;17511:18;17498:11;;;17491:39;17463:2;17456:10;17427:113;;;17558:6;17555:1;17552:13;17549:48;;;-1:-1:-1;;17593:1:1;17575:16;;17568:27;17345:258::o;17608:136::-;17647:3;17675:5;17665:39;;17684:18;;:::i;:::-;-1:-1:-1;;;17720:18:1;;17608:136::o;17749:380::-;17828:1;17824:12;;;;17871;;;17892:61;;17946:4;17938:6;17934:17;17924:27;;17892:61;17999:2;17991:6;17988:14;17968:18;17965:38;17962:161;;;18045:10;18040:3;18036:20;18033:1;18026:31;18080:4;18077:1;18070:15;18108:4;18105:1;18098:15;17962:161;;17749:380;;;:::o;18134:135::-;18173:3;-1:-1:-1;;18194:17:1;;18191:43;;;18214:18;;:::i;:::-;-1:-1:-1;18261:1:1;18250:13;;18134:135::o;18274:112::-;18306:1;18332;18322:35;;18337:18;;:::i;:::-;-1:-1:-1;18371:9:1;;18274:112::o;18391:127::-;18452:10;18447:3;18443:20;18440:1;18433:31;18483:4;18480:1;18473:15;18507:4;18504:1;18497:15;18523:127;18584:10;18579:3;18575:20;18572:1;18565:31;18615:4;18612:1;18605:15;18639:4;18636:1;18629:15;18655:127;18716:10;18711:3;18707:20;18704:1;18697:31;18747:4;18744:1;18737:15;18771:4;18768:1;18761:15;18787:127;18848:10;18843:3;18839:20;18836:1;18829:31;18879:4;18876:1;18869:15;18903:4;18900:1;18893:15;18919:131;-1:-1:-1;;;;;;18993:32:1;;18983:43;;18973:71;;19040:1;19037;19030:12

Swarm Source

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