ETH Price: $2,386.71 (-0.11%)

Token

Loodles (LOODLE)
 

Overview

Max Total Supply

155 LOODLE

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
theblacktoad.eth
Balance
3 LOODLE
0x19fee090c8d88b07e1d18e55b4393b8b6c532fe9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5000 Loodles roaming the lemon fields of the Ethereum blockchain. A derivative NFT project combining the artwork of Little Lemon Friends and Doodles. Not affiliated with either project. We use mint and secondary sales to buy "blue chip" NFTs and give them away to our holders d...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Loodles

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1024 runs

Other Settings:
default evmVersion
File 1 of 10 : Loodles.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;

import "sol-temple/src/tokens/ERC721.sol";
import "sol-temple/src/utils/Auth.sol";
import "sol-temple/src/utils/Pausable.sol";

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/**
 * @title Loodles
 * @author naomsa <https://twitter.com/naomsa666>
 */
contract Loodles is Auth, Pausable, ERC721("Loodles", "LOODLE") {
  using Strings for uint256;
  using MerkleProof for bytes32[];

  /// @notice Max supply.
  uint256 public constant LOODLES_MAX = 5000;
  /// @notice Max amount per claim (not whitelist).
  uint256 public constant LOODLES_PER_TX = 10;
  /// @notice Max amount per whitelist claim.
  uint256 public constant LOODLES_PER_WHITELIST = 2;
  /// @notice Claim price.
  uint256 public constant LOODLES_PRICE = 0.045 ether;
  /// @notice Claim price for Doodles and Lemon Friends holders.
  uint256 public constant LOODLES_PRICE_HOLDER = 0.035 ether;

  /// @notice 0 = CLOSED, 1 = WHITELIST, 2 = PUBLIC.
  uint256 public saleState;

  /// @notice Metadata base URI.
  string public baseURI;
  /// @notice Metadata URI extension.
  string public baseExtension;
  /// @notice Unrevealed metadata URI.
  string public unrevealedURI;

  /// @notice Whitelist merkle root.
  bytes32 public merkleRoot;
  /// @notice Whitelist mints per address.
  mapping(address => uint256) public whitelistMinted;

  /// @notice OpenSea proxy registry.
  ProxyRegistry public opensea;
  /// @notice LooksRare marketplace transfer manager.
  address public looksrare;
  /// @notice Check if marketplaces pre-approve is enabled.
  bool public marketplacesApproved = true;

  constructor(
    string memory unrevealedURI_,
    bytes32 merkleRoot_,
    ProxyRegistry opensea_,
    address looksrare_
  ) {
    unrevealedURI = unrevealedURI_;
    merkleRoot = merkleRoot_;
    opensea = opensea_;
    looksrare = looksrare_;

    _safeMint(msg.sender, 0);
  }

  /// @notice Claim one or more tokens.
  function claim(uint256 amount_) external payable {
    uint256 supply = totalSupply();
    require(supply + amount_ <= LOODLES_MAX, "Max supply exceeded");
    if (msg.sender != owner()) {
      require(saleState == 2, "Public sale is not open");
      require(amount_ > 0 && amount_ <= LOODLES_PER_TX, "Invalid claim amount");
      require(msg.value == claimCost(msg.sender) * amount_, "Invalid ether amount");
    }

    for (uint256 i = 0; i < amount_; i++) _safeMint(msg.sender, supply++);
  }

  /// @notice Claim one or more tokens for whitelisted user.
  function claimWhitelist(uint256 amount_, bytes32[] memory proof_) external payable {
    uint256 supply = totalSupply();
    require(supply + amount_ <= LOODLES_MAX, "Max supply exceeded");
    if (msg.sender != owner()) {
      require(saleState == 1, "Whitelist sale is not open");
      require(amount_ > 0 && amount_ + whitelistMinted[msg.sender] <= LOODLES_PER_WHITELIST, "Invalid claim amount");
      require(msg.value == claimCost(msg.sender) * amount_, "Invalid ether amount");
      require(isWhitelisted(msg.sender, proof_), "Invalid proof");
    }

    whitelistMinted[msg.sender] += amount_;
    for (uint256 i = 0; i < amount_; i++) _safeMint(msg.sender, supply++);
  }

  /// @notice Check users claim price based on their Doodles and Lemon Friends balance.
  function claimCost(address user_) public view returns (uint256) {
    if (
      ERC721(0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e).balanceOf(user_) > 0 ||
      ERC721(0x0B22fE0a2995C5389AC093400e52471DCa8BB48a).balanceOf(user_) > 0
    ) return LOODLES_PRICE_HOLDER;
    else return LOODLES_PRICE;
  }

  /// @notice Retrieve if `user_` is whitelisted based on his `proof_`.
  function isWhitelisted(address user_, bytes32[] memory proof_) public view returns (bool) {
    bytes32 leaf = keccak256(abi.encodePacked(user_));
    return proof_.verify(merkleRoot, leaf);
  }

  /**
   * @notice See {IERC721-tokenURI}.
   * @dev In order to make a metadata reveal, there must be an unrevealedURI string, which
   * gets set on the constructor and, for optimization purposes, when the owner() sets a new
   * baseURI, the unrevealedURI gets deleted, saving gas and triggering a reveal.
   */
  function tokenURI(uint256 tokenId_) public view override returns (string memory) {
    if (bytes(unrevealedURI).length > 0) return unrevealedURI;
    return string(abi.encodePacked(baseURI, tokenId_.toString(), baseExtension));
  }

  /// @notice Set baseURI to `baseURI_`, baseExtension to `baseExtension_` and deletes unrevealedURI, triggering a reveal.
  function setBaseURI(string memory baseURI_, string memory baseExtension_) external onlyOwner {
    baseURI = baseURI_;
    baseExtension = baseExtension_;
    delete unrevealedURI;
  }

  /// @notice Set unrevealedURI to `unrevealedURI_`.
  function setUnrevealedURI(string memory unrevealedURI_) external onlyAuthorized {
    unrevealedURI = unrevealedURI_;
  }

  /// @notice Set unrevealedURI to `unrevealedURI_`.
  function setSaleState(uint256 saleState_) external onlyAuthorized {
    saleState = saleState_;
  }

  /// @notice Set merkleRoot to `merkleRoot_`.
  function setMerkleRoot(bytes32 merkleRoot_) external onlyAuthorized {
    merkleRoot = merkleRoot_;
  }

  /// @notice Set opensea to `opensea_`.
  function setOpensea(ProxyRegistry opensea_) external onlyAuthorized {
    opensea = opensea_;
  }

  /// @notice Set looksrare to `looksrare_`.
  function setLooksrare(address looksrare_) external onlyAuthorized {
    looksrare = looksrare_;
  }

  /// @notice Toggle pre-approve feature state for sender.
  function toggleMarketplacesApproved() external onlyAuthorized {
    marketplacesApproved = !marketplacesApproved;
  }

  /// @notice Toggle paused state.
  function togglePaused() external onlyAuthorized {
    _togglePaused();
  }

  /**
   * @notice Withdraw `amount_` of ether to msg.sender.
   * @dev Combined with the Auth util, this function can be called by
   * anyone with the authorization from the owner, so a team member can
   * get his shares with a permissioned call and exact data.
   */
  function withdraw(uint256 amount_) external onlyAuthorized {
    payable(msg.sender).transfer(amount_);
  }

  /// @notice Withdraw `amount_` of `token_` to the sender.
  function withdrawERC20(IERC20 token_, uint256 amount_) external onlyAuthorized {
    token_.transfer(msg.sender, amount_);
  }

  /// @notice Withdraw `tokenId_` of `token_` to the sender.
  function withdrawERC721(IERC721 token_, uint256 tokenId_) external onlyAuthorized {
    token_.safeTransferFrom(address(this), msg.sender, tokenId_);
  }

  /// @notice Withdraw `tokenId_` with amount of `value_` from `token_` to the sender.
  function withdrawERC1155(
    IERC1155 token_,
    uint256 tokenId_,
    uint256 value_
  ) external onlyAuthorized {
    token_.safeTransferFrom(address(this), msg.sender, tokenId_, value_, "");
  }

  /// @dev Modified for opensea and looksrare pre-approve so users can make truly gasless sales.
  function isApprovedForAll(address owner, address operator) public view override returns (bool) {
    if (!marketplacesApproved) return super.isApprovedForAll(owner, operator);

    return
      operator == address(opensea.proxies(owner)) || operator == looksrare || super.isApprovedForAll(owner, operator);
  }

  /// @dev Edited in order to block transfers while paused unless msg.sender is the owner().
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal override {
    require(msg.sender == owner() || paused() == false, "Pausable: contract paused");
    super._beforeTokenTransfer(from, to, tokenId);
  }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 10 : ERC721.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0;

/**
 * @title ERC721
 * @author naomsa <https://twitter.com/naomsa666>
 * @notice A complete ERC721 implementation including metadata and enumerable
 * functions. Completely gas optimized and extensible.
 */
abstract contract ERC721 {
  /*         _           _            */
  /*        ( )_        ( )_          */
  /*    ___ | ,_)   _ _ | ,_)   __    */
  /*  /',__)| |   /'_` )| |   /'__`\  */
  /*  \__, \| |_ ( (_| || |_ (  ___/  */
  /*  (____/`\__)`\__,_)`\__)`\____)  */

  /// @dev This emits when ownership of any NFT changes by any mechanism.
  event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId);

  /// @dev This emits when the approved address for an NFT is changed or
  event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId);

  /// @dev This emits when an operator is enabled or disabled for an owner.
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

  /// @notice See {IERC721Metadata-name}.
  string public name;

  /// @notice See {IERC721Metadata-symbol}.
  string public symbol;

  /// @notice Array of all owners.
  address[] private _owners;

  /// @notice Mapping of all balances.
  mapping(address => uint256) private _balanceOf;

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

  /// @notice Mapping of approvals between owner and operator.
  mapping(address => mapping(address => bool)) private _isApprovedForAll;

  /*   _                            */
  /*  (_ )                _         */
  /*   | |    _      __  (_)   ___  */
  /*   | |  /'_`\  /'_ `\| | /'___) */
  /*   | | ( (_) )( (_) || |( (___  */
  /*  (___)`\___/'`\__  |(_)`\____) */
  /*              ( )_) |           */
  /*               \___/'           */

  constructor(string memory name_, string memory symbol_) {
    name = name_;
    symbol = symbol_;
  }

  /// @notice See {IERC721-balanceOf}.
  function balanceOf(address owner) public view virtual returns (uint256) {
    require(owner != address(0), "ERC721: balance query for the zero address");
    return _balanceOf[owner];
  }

  /// @notice See {IERC721-ownerOf}.
  function ownerOf(uint256 tokenId) public view virtual returns (address) {
    require(_exists(tokenId), "ERC721: query for nonexistent token");
    address owner = _owners[tokenId];
    return owner;
  }

  /// @notice See {IERC721Metadata-tokenURI}.
  function tokenURI(uint256) public view virtual returns (string memory);

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

    require(
      msg.sender == owner || _isApprovedForAll[owner][msg.sender],
      "ERC721: caller is not owner nor approved for all"
    );

    _approve(to, tokenId);
  }

  /// @notice See {IERC721-getApproved}.
  function getApproved(uint256 tokenId) public view virtual returns (address) {
    require(_exists(tokenId), "ERC721: query for nonexistent token");
    return _tokenApprovals[tokenId];
  }

  /// @notice See {IERC721-setApprovalForAll}.
  function setApprovalForAll(address operator, bool approved) public virtual {
    _setApprovalForAll(msg.sender, operator, approved);
  }

  /// @notice See {IERC721-isApprovedForAll}
  function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
    return _isApprovedForAll[owner][operator];
  }

  /// @notice See {IERC721-transferFrom}.
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual {
    require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");
    _transfer(from, to, tokenId);
  }

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

  /// @notice See {IERC721-safeTransferFrom}.
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory data_
  ) public virtual {
    require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");
    _safeTransfer(from, to, tokenId, data_);
  }

  /// @notice See {IERC721Enumerable.tokenOfOwnerByIndex}.
  function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId) {
    require(index < balanceOf(owner), "ERC721Enumerable: Index out of bounds");
    uint256 count;
    for (uint256 i; i < _owners.length; ++i) {
      if (owner == _owners[i]) {
        if (count == index) return i;
        else count++;
      }
    }
    revert("ERC721Enumerable: Index out of bounds");
  }

  /// @notice See {IERC721Enumerable.totalSupply}.
  function totalSupply() public view virtual returns (uint256) {
    return _owners.length;
  }

  /// @notice See {IERC721Enumerable.tokenByIndex}.
  function tokenByIndex(uint256 index) public view virtual returns (uint256) {
    require(index < _owners.length, "ERC721Enumerable: Index out of bounds");
    return index;
  }

  /// @notice Returns a list of all token Ids owned by `owner`.
  function tokensOfOwner(address owner) public view returns (uint256[] memory) {
    uint256 balance = balanceOf(owner);
    uint256[] memory ids = new uint256[](balance);
    for (uint256 i = 0; i < balance; i++) {
      ids[i] = tokenOfOwnerByIndex(owner, i);
    }
    return ids;
  }

  /*             _                               _    */
  /*   _        ( )_                            (_ )  */
  /*  (_)  ___  | ,_)   __   _ __   ___     _ _  | |  */
  /*  | |/' _ `\| |   /'__`\( '__)/' _ `\ /'_` ) | |  */
  /*  | || ( ) || |_ (  ___/| |   | ( ) |( (_| | | |  */
  /*  (_)(_) (_)`\__)`\____)(_)   (_) (_)`\__,_)(___) */

  /**
   * @notice Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
   *
   * `data_` is additional data, it has no specified format and it is sent in call to `to`.
   *
   * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
   * implement alternative mechanisms to perform token transfer, such as signature-based.
   *
   * Requirements:
   * - `from` cannot be the zero address.
   * - `to` cannot be the zero address.
   * - `tokenId` token must exist and be owned by `from`.
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
   *
   * Emits a {Transfer} event.
   */
  function _safeTransfer(
    address from,
    address to,
    uint256 tokenId,
    bytes memory data_
  ) internal virtual {
    _transfer(from, to, tokenId);
    _checkOnERC721Received(from, to, tokenId, data_);
  }

  /**
   * @notice 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`),
   * and stop existing when they are burned (`_burn`).
   */
  function _exists(uint256 tokenId) internal view virtual returns (bool) {
    return tokenId < _owners.length && _owners[tokenId] != address(0);
  }

  /**
   * @notice Returns whether `spender` is allowed to manage `tokenId`.
   *
   * Requirements:
   * - `tokenId` must exist.
   */
  function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
    require(_exists(tokenId), "ERC721: query for nonexistent token");
    address owner = _owners[tokenId];
    return (spender == owner || getApproved(tokenId) == spender || _isApprovedForAll[owner][spender]);
  }

  /**
   * @notice Safely mints `tokenId` and transfers it to `to`.
   *
   * Requirements:
   * - `tokenId` must not exist.
   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(address to, uint256 tokenId) internal virtual {
    _safeMint(to, tokenId, "");
  }

  /**
   * @notice Same as {_safeMint}, but with an additional `data` parameter which is
   * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
   */
  function _safeMint(
    address to,
    uint256 tokenId,
    bytes memory data_
  ) internal virtual {
    _mint(to, tokenId);
    _checkOnERC721Received(address(0), to, tokenId, data_);
  }

  /**
   * @notice Mints `tokenId` and transfers it to `to`.
   *
   * Requirements:
   * - `tokenId` must not exist.
   * - `to` cannot be the zero address.
   *
   * Emits a {Transfer} event.
   */
  function _mint(address to, uint256 tokenId) internal virtual {
    require(!_exists(tokenId), "ERC721: token already minted");

    _beforeTokenTransfer(address(0), to, tokenId);

    _owners.push(to);
    unchecked {
      _balanceOf[to]++;
    }

    emit Transfer(address(0), to, tokenId);
  }

  /**
   * @notice Destroys `tokenId`.
   * The approval is cleared when the token is burned.
   *
   * Requirements:
   * - `tokenId` must exist.
   *
   * Emits a {Transfer} event.
   */
  function _burn(uint256 tokenId) internal virtual {
    address owner = ownerOf(tokenId);

    _beforeTokenTransfer(owner, address(0), tokenId);

    // Clear approvals
    _approve(address(0), tokenId);
    delete _owners[tokenId];
    _balanceOf[owner]--;

    emit Transfer(owner, address(0), tokenId);
  }

  /**
   * @notice Transfers `tokenId` from `from` to `to`.
   *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
   *
   * Requirements:
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual {
    require(_owners[tokenId] == from, "ERC721: transfer of token that is not own");

    _beforeTokenTransfer(from, to, tokenId);

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

    _owners[tokenId] = to;
    unchecked {
      _balanceOf[from]--;
      _balanceOf[to]++;
    }

    emit Transfer(from, to, tokenId);
  }

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

  /**
   * @notice Approve `operator` to operate on all of `owner` tokens
   *
   * Emits a {ApprovalForAll} event.
   */
  function _setApprovalForAll(
    address owner,
    address operator,
    bool approved
  ) internal virtual {
    require(owner != operator, "ERC721: approve to caller");
    _isApprovedForAll[owner][operator] = approved;
    emit ApprovalForAll(owner, operator, approved);
  }

  /**
   * @notice 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
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory data
  ) private {
    if (to.code.length > 0) {
      try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, data) returns (bytes4 returned) {
        require(returned == 0x150b7a02, "ERC721: safe transfer to non ERC721Receiver implementation");
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721: safe transfer to non ERC721Receiver implementation");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    }
  }

  /**
   * @notice Hook that is called before any token transfer. This includes minting
   * and burning.
   *
   * 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`.
   * - When `to` is zero, ``from``'s `tokenId` will be burned.
   * - `from` and `to` are never both zero.
   */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual {}

  /*    ___  _   _  _ _      __   _ __  */
  /*  /',__)( ) ( )( '_`\  /'__`\( '__) */
  /*  \__, \| (_) || (_) )(  ___/| |    */
  /*  (____/`\___/'| ,__/'`\____)(_)    */
  /*               | |                  */
  /*               (_)                  */

  /// @notice See {IERC165-supportsInterface}.
  function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
    return
      interfaceId == 0x80ac58cd || // ERC721
      interfaceId == 0x5b5e139f || // ERC721Metadata
      interfaceId == 0x780e9d63 || // ERC721Enumerable
      interfaceId == 0x01ffc9a7; // ERC165
  }
}

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

File 3 of 10 : Auth.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0;

/**
 * @title Auth
 * @author naomsa <https://twitter.com/naomsa666>
 * @notice Authing system where the `owner` can authorize function calls
 * to other addresses as well as control the contract by his own.
 */
abstract contract Auth {
  /*         _           _            */
  /*        ( )_        ( )_          */
  /*    ___ | ,_)   _ _ | ,_)   __    */
  /*  /',__)| |   /'_` )| |   /'__`\  */
  /*  \__, \| |_ ( (_| || |_ (  ___/  */
  /*  (____/`\__)`\__,_)`\__)`\____)  */

  /// @notice Emited when the ownership is transfered.
  event OwnershipTransfered(address indexed from, address indexed to);

  /// @notice Emited a new call with `data` is authorized to `to`.
  event AuthorizationGranted(address indexed to, bytes data);

  /// @notice Emited a new call with `data` is forbidden to `to`.
  event AuthorizationForbidden(address indexed to, bytes data);

  /// @notice Contract's owner address.
  address private _owner;

  /// @notice A mapping to retrieve if a call data was authed and is valid for the address.
  mapping(address => mapping(bytes => bool)) private _isAuthorized;

  /**
   * @notice A modifier that requires the user to be the owner or authorization to call.
   * After the call, the user loses it's authorization if he's not the owner.
   */
  modifier onlyAuthorized() {
    require(isAuthorized(msg.sender, msg.data), "Auth: sender is not the owner or authorized to call");
    _;
    if (msg.sender != _owner) _isAuthorized[msg.sender][msg.data] = false;
  }

  /// @notice A simple modifier just to check whether the sender is the owner.
  modifier onlyOwner() {
    require(msg.sender == _owner, "Auth: sender is not the owner");
    _;
  }

  /*   _                            */
  /*  (_ )                _         */
  /*   | |    _      __  (_)   ___  */
  /*   | |  /'_`\  /'_ `\| | /'___) */
  /*   | | ( (_) )( (_) || |( (___  */
  /*  (___)`\___/'`\__  |(_)`\____) */
  /*              ( )_) |           */
  /*               \___/'           */

  constructor() {
    _transferOwnership(msg.sender);
  }

  /// @notice Returns the current contract owner.
  function owner() public view returns (address) {
    return _owner;
  }

  /// @notice Retrieves whether `user_` is authorized to call with `data_`.
  function isAuthorized(address user_, bytes memory data_) public view returns (bool) {
    return user_ == _owner || _isAuthorized[user_][data_];
  }

  /// @notice Set the owner address to `owner_`.
  function transferOwnership(address owner_) public onlyOwner {
    require(_owner != owner_, "Auth: transfering ownership to current owner");
    _transferOwnership(owner_);
  }

  /// @notice Set the owner address to `owner_`. Does not require anything
  function _transferOwnership(address owner_) internal {
    address oldOwner = _owner;
    _owner = owner_;

    emit OwnershipTransfered(oldOwner, owner_);
  }

  /// @notice Authorize a call with `data_` to the address `to_`.
  function auth(address to_, bytes memory data_) public onlyOwner {
    require(to_ != _owner, "Auth: authorizing call to the owner");
    require(!_isAuthorized[to_][data_], "Auth: authorized calls cannot be authed");
    _isAuthorized[to_][data_] = true;

    emit AuthorizationGranted(to_, data_);
  }

  /// @notice Authorize a call with `data_` to the address `to_`.
  function forbid(address to_, bytes memory data_) public onlyOwner {
    require(_isAuthorized[to_][data_], "Auth: unauthorized calls cannot be forbidden");
    delete _isAuthorized[to_][data_];

    emit AuthorizationForbidden(to_, data_);
  }
}

File 4 of 10 : Pausable.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0;

/**
 * @title Pausable
 * @author naomsa <https://twitter.com/naomsa666>
 * @notice Freeze your contract with a secure paused mechanism.
 */
abstract contract Pausable {
  /*         _           _            */
  /*        ( )_        ( )_          */
  /*    ___ | ,_)   _ _ | ,_)   __    */
  /*  /',__)| |   /'_` )| |   /'__`\  */
  /*  \__, \| |_ ( (_| || |_ (  ___/  */
  /*  (____/`\__)`\__,_)`\__)`\____)  */

  /// @notice Emited when the contract is paused.
  event Paused(address indexed by);

  /// @notice Emited when the contract is unpaused.
  event Unpaused(address indexed by);

  /// @notice Read-only pause state.
  bool private _paused;

  /// @notice A modifier to be used when the contract must be paused.
  modifier onlyWhenPaused() {
    require(_paused, "Pausable: contract not paused");
    _;
  }

  /// @notice A modifier to be used when the contract must be unpaused.
  modifier onlyWhenUnpaused() {
    require(!_paused, "Pausable: contract paused");
    _;
  }

  /*   _                            */
  /*  (_ )                _         */
  /*   | |    _      __  (_)   ___  */
  /*   | |  /'_`\  /'_ `\| | /'___) */
  /*   | | ( (_) )( (_) || |( (___  */
  /*  (___)`\___/'`\__  |(_)`\____) */
  /*              ( )_) |           */
  /*               \___/'           */

  /// @notice Retrieve contracts pause state.
  function paused() public view returns (bool) {
    return _paused;
  }

  /// @notice Inverts pause state. Declared internal so it can be combined with the Auth contract.
  function _togglePaused() internal {
    _paused = !_paused;
    if (_paused) emit Unpaused(msg.sender);
    else emit Paused(msg.sender);
  }
}

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 10 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 10 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 10 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1024
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"contract ProxyRegistry","name":"opensea_","type":"address"},{"internalType":"address","name":"looksrare_","type":"address"}],"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":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"AuthorizationForbidden","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"AuthorizationGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"LOODLES_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOODLES_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOODLES_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOODLES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOODLES_PRICE_HOLDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"auth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user_","type":"address"}],"name":"claimCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"claimWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"forbid","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":"address","name":"user_","type":"address"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"looksrare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketplacesApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"opensea","outputs":[{"internalType":"contract ProxyRegistry","name":"","type":"address"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"internalType":"string","name":"baseExtension_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"looksrare_","type":"address"}],"name":"setLooksrare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ProxyRegistry","name":"opensea_","type":"address"}],"name":"setOpensea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"saleState_","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMarketplacesApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"owner_","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC1155","name":"token_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"withdrawERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"token_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526010805460ff60a01b1916600160a01b1790553480156200002457600080fd5b506040516200451338038062004513833981016040819052620000479162000638565b604051806040016040528060078152602001664c6f6f646c657360c81b815250604051806040016040528060068152602001654c4f4f444c4560d01b81525062000097336200012760201b60201c565b8151620000ac90600390602085019062000530565b508051620000c290600490602084019062000530565b50508451620000da9150600c90602087019062000530565b50600d839055600f80546001600160a01b038085166001600160a01b03199283161790925560108054928416929091169190911790556200011d33600062000177565b50505050620007fd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f0d18b5fd22306e373229b9439188228edca81207d1667f604daf6cef8aa3ee679190a35050565b620001998282604051806020016040528060008152506200019d60201b60201c565b5050565b620001a98383620001bd565b620001b86000848484620002b8565b505050565b620001c8816200045e565b156200021b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064015b60405180910390fd5b6200022960008383620004ad565b6005805460018082019092557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b038516908117909155600081815260066020526040808220805490940190935591518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383163b156200045857604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290620002fd90339088908790879060040162000721565b6020604051808303816000875af19250505080156200033b575060408051601f3d908101601f19168201909252620003389181019062000777565b60015b620003df573d8080156200036c576040519150601f19603f3d011682016040523d82523d6000602084013e62000371565b606091505b508051620003d75760405162461bcd60e51b815260206004820152603a6024820152600080516020620044f383398151915260448201527f373231526563656976657220696d706c656d656e746174696f6e000000000000606482015260840162000212565b805181602001fd5b630a85bd0160e11b6001600160e01b0319821614620004565760405162461bcd60e51b815260206004820152603a6024820152600080516020620044f383398151915260448201527f373231526563656976657220696d706c656d656e746174696f6e000000000000606482015260840162000212565b505b50505050565b60055460009082108015620004a7575060006001600160a01b0316600583815481106200048f576200048f620007aa565b6000918252602090912001546001600160a01b031614155b92915050565b6000546001600160a01b0316331480620004ca575060025460ff16155b620005185760405162461bcd60e51b815260206004820152601960248201527f5061757361626c653a20636f6e74726163742070617573656400000000000000604482015260640162000212565b620001b8838383620001b860201b62000db51760201c565b8280546200053e90620007c0565b90600052602060002090601f016020900481019282620005625760008555620005ad565b82601f106200057d57805160ff1916838001178555620005ad565b82800160010185558215620005ad579182015b82811115620005ad57825182559160200191906001019062000590565b50620005bb929150620005bf565b5090565b5b80821115620005bb5760008155600101620005c0565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000609578181015183820152602001620005ef565b83811115620004585750506000910152565b80516001600160a01b03811681146200063357600080fd5b919050565b600080600080608085870312156200064f57600080fd5b84516001600160401b03808211156200066757600080fd5b818701915087601f8301126200067c57600080fd5b815181811115620006915762000691620005d6565b604051601f8201601f19908116603f01168101908382118183101715620006bc57620006bc620005d6565b816040528281528a6020848701011115620006d657600080fd5b620006e9836020830160208801620005ec565b80985050505050506020850151925062000706604086016200061b565b915062000716606086016200061b565b905092959194509250565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007608160a0850160208701620005ec565b601f01601f19169190910160a00195945050505050565b6000602082840312156200078a57600080fd5b81516001600160e01b031981168114620007a357600080fd5b9392505050565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680620007d557607f821691505b60208210811415620007f757634e487b7160e01b600052602260045260246000fd5b50919050565b613ce6806200080d6000396000f3fe60806040526004361061034a5760003560e01c8063603f4d52116101bb578063a1db9782116100f7578063c668286211610095578063e985e9c51161006f578063e985e9c514610916578063f2fde38b14610936578063f3e414f814610956578063fe2c7fee1461097657600080fd5b8063c6682862146108c6578063c87b56dd146108db578063ca9ea783146108fb57600080fd5b8063b776c8a6116100d1578063b776c8a61461084b578063b88d4fde1461086b578063b95e22dc1461088b578063bee184f1146108a657600080fd5b8063a1db9782146107eb578063a22cb4651461080b578063a8e90b571461082b57600080fd5b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b1461076b5780638ef79b3c1461078957806395d89b41146107a957806398a8cffe146107be57600080fd5b806370a08231146106fe5780637cb647591461071e5780638462151c1461073e57600080fd5b80636790a9de116101955780636790a9de146106b45780636c0360eb146106d45780637035bf18146106e957600080fd5b8063603f4d521461065e5780636352211e146106745780636560beeb1461069457600080fd5b806333c12e171161028a57806344f0dada116102335780634f6ccce71161020d5780634f6ccce7146105e6578063511ed382146106065780635a23dd99146106265780635c975abb1461064657600080fd5b806344f0dada146105a657806344f2019a146105bb5780634b3ef101146105d057600080fd5b806339b7659f1161026457806339b7659f1461054657806339ead7201461056657806342842e0e1461058657600080fd5b806333c12e171461050957806336566f061461051e578063379607f51461053357600080fd5b806315a42b1f116102f757806323b872dd116102d157806323b872dd146104935780632e1a7d4d146104b35780632eb4a7ab146104d35780632f745c59146104e957600080fd5b806315a42b1f1461044157806318160ddd146104545780631e8858fb1461047357600080fd5b8063081812fc11610328578063081812fc146103c7578063084c4088146103ff578063095ea7b31461042157600080fd5b806301ffc9a71461034f578063026ae1021461038457806306fdde03146103a5575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046134c1565b610996565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b5060105461036f90600160a01b900460ff1681565b3480156103b157600080fd5b506103ba610a67565b60405161037b9190613536565b3480156103d357600080fd5b506103e76103e2366004613549565b610af5565b6040516001600160a01b03909116815260200161037b565b34801561040b57600080fd5b5061041f61041a366004613549565b610b79565b005b34801561042d57600080fd5b5061041f61043c366004613577565b610c6a565b61041f61044f36600461366a565b610dba565b34801561046057600080fd5b506005545b60405190815260200161037b565b34801561047f57600080fd5b5061041f61048e3660046136b1565b611012565b34801561049f57600080fd5b5061041f6104ae3660046136ce565b6110f2565b3480156104bf57600080fd5b5061041f6104ce366004613549565b611179565b3480156104df57600080fd5b50610465600d5481565b3480156104f557600080fd5b50610465610504366004613577565b61126f565b34801561051557600080fd5b5061041f61139c565b34801561052a57600080fd5b5061041f6114c1565b61041f610541366004613549565b611591565b34801561055257600080fd5b5061041f61056136600461377f565b611747565b34801561057257600080fd5b5061041f6105813660046137c5565b61196b565b34801561059257600080fd5b5061041f6105a13660046136ce565b611aee565b3480156105b257600080fd5b50610465600281565b3480156105c757600080fd5b50610465600a81565b3480156105dc57600080fd5b5061046561138881565b3480156105f257600080fd5b50610465610601366004613549565b611b09565b34801561061257600080fd5b50600f546103e7906001600160a01b031681565b34801561063257600080fd5b5061036f6106413660046137fa565b611b6f565b34801561065257600080fd5b5060025460ff1661036f565b34801561066a57600080fd5b5061046560095481565b34801561068057600080fd5b506103e761068f366004613549565b611bca565b3480156106a057600080fd5b506104656106af3660046136b1565b611c5e565b3480156106c057600080fd5b5061041f6106cf366004613834565b611d88565b3480156106e057600080fd5b506103ba611e1a565b3480156106f557600080fd5b506103ba611e27565b34801561070a57600080fd5b506104656107193660046136b1565b611e34565b34801561072a57600080fd5b5061041f610739366004613549565b611ece565b34801561074a57600080fd5b5061075e6107593660046136b1565b611f9b565b60405161037b919061388e565b34801561077757600080fd5b506000546001600160a01b03166103e7565b34801561079557600080fd5b5061041f6107a436600461377f565b61203d565b3480156107b557600080fd5b506103ba6121b9565b3480156107ca57600080fd5b506104656107d93660046136b1565b600e6020526000908152604090205481565b3480156107f757600080fd5b5061041f610806366004613577565b6121c6565b34801561081757600080fd5b5061041f6108263660046138e0565b61233d565b34801561083757600080fd5b506010546103e7906001600160a01b031681565b34801561085757600080fd5b5061041f6108663660046136b1565b612348565b34801561087757600080fd5b5061041f610886366004613919565b612428565b34801561089757600080fd5b50610465667c58508723800081565b3480156108b257600080fd5b5061036f6108c136600461377f565b6124b0565b3480156108d257600080fd5b506103ba61250a565b3480156108e757600080fd5b506103ba6108f6366004613549565b612517565b34801561090757600080fd5b50610465669fdf42f6e4800081565b34801561092257600080fd5b5061036f610931366004613985565b6125f7565b34801561094257600080fd5b5061041f6109513660046136b1565b612721565b34801561096257600080fd5b5061041f610971366004613577565b612808565b34801561098257600080fd5b5061041f6109913660046139b3565b612951565b60007f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806109f957507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610a2d57507f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610a6157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60038054610a74906139e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa0906139e8565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b505050505081565b6000610b00826129fb565b610b5d5760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b610bba336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b610c105760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b60098190556000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555b50565b6000610c7582611bca565b9050806001600160a01b0316836001600160a01b03161415610cff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b54565b336001600160a01b0382161480610d3957506001600160a01b038116600090815260086020908152604080832033845290915290205460ff165b610dab5760405162461bcd60e51b815260206004820152603060248201527f4552433732313a2063616c6c6572206973206e6f74206f776e6572206e6f722060448201527f617070726f76656420666f7220616c6c000000000000000000000000000000006064820152608401610b54565b610db58383612a45565b505050565b6000610dc560055490565b9050611388610dd48483613a49565b1115610e225760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610b54565b6000546001600160a01b03163314610fb557600954600114610e865760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206f70656e0000000000006044820152606401610b54565b600083118015610eb15750336000908152600e6020526040902054600290610eae9085613a49565b11155b610efd5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420636c61696d20616d6f756e740000000000000000000000006044820152606401610b54565b82610f0733611c5e565b610f119190613a61565b3414610f5f5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420657468657220616d6f756e740000000000000000000000006044820152606401610b54565b610f693383611b6f565b610fb55760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610b54565b336000908152600e602052604081208054859290610fd4908490613a49565b90915550600090505b8381101561100c57610ffa3383610ff381613a80565b9450612ac8565b8061100481613a80565b915050610fdd565b50505050565b611053336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6110a95760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b601080546001600160a01b0319166001600160a01b0383811691909117909155600054163314610c6757336000908152600160205260408082209051610c469083903690613a23565b6110fc3382612ae2565b61116e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b54565b610db5838383612bd3565b6111ba336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6112105760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b604051339082156108fc029083906000818181858888f1935050505015801561123d573d6000803e3d6000fd5b506000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b600061127a83611e34565b82106112d65760405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b6000805b60055481101561134557600581815481106112f7576112f7613a9b565b6000918252602090912001546001600160a01b03868116911614156113355783821415611327579150610a619050565b8161133181613a80565b9250505b61133e81613a80565b90506112da565b5060405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b6113dd336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6114335760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff16159091021790556000546001600160a01b031633146114bf5733600090815260016020526040808220905161149e9083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555b565b611502336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6115585760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b611560612d1f565b6000546001600160a01b031633146114bf5733600090815260016020526040808220905161149e9083903690613a23565b600061159c60055490565b90506113886115ab8383613a49565b11156115f95760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610b54565b6000546001600160a01b0316331461171c5760095460021461165d5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610b54565b60008211801561166e5750600a8211155b6116ba5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420636c61696d20616d6f756e740000000000000000000000006044820152606401610b54565b816116c433611c5e565b6116ce9190613a61565b341461171c5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420657468657220616d6f756e740000000000000000000000006044820152606401610b54565b60005b82811015610db5576117353383610ff381613a80565b8061173f81613a80565b91505061171f565b6000546001600160a01b031633146117a15760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6000546001600160a01b03838116911614156118255760405162461bcd60e51b815260206004820152602360248201527f417574683a20617574686f72697a696e672063616c6c20746f20746865206f7760448201527f6e657200000000000000000000000000000000000000000000000000000000006064820152608401610b54565b6001600160a01b03821660009081526001602052604090819020905161184c908390613ab1565b9081526040519081900360200190205460ff16156118d25760405162461bcd60e51b815260206004820152602760248201527f417574683a20617574686f72697a65642063616c6c732063616e6e6f7420626560448201527f20617574686564000000000000000000000000000000000000000000000000006064820152608401610b54565b6001806000846001600160a01b03166001600160a01b03168152602001908152602001600020826040516119069190613ab1565b908152604051908190036020018120805492151560ff19909316929092179091556001600160a01b038316907f93cbc542eae04a681ace3eb6a2785a14a80a0d65f061779cd14a3035558364169061195f908490613536565b60405180910390a25050565b6119ac336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b611a025760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517ff242432a000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018390526064810182905260a06084820152600060a48201526001600160a01b0384169063f242432a9060c401600060405180830381600087803b158015611a7e57600080fd5b505af1158015611a92573d6000803e3d6000fd5b50506000546001600160a01b031633149150610db5905057336000908152600160205260408082209051611ac99083903690613a23565b908152604051908190036020019020805491151560ff19909216919091179055505050565b610db583838360405180602001604052806000815250612428565b6005546000908210611b6b5760405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b5090565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050611bc2600d548285612d949092919063ffffffff16565b949350505050565b6000611bd5826129fb565b611c2d5760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b6064820152608401610b54565b600060058381548110611c4257611c42613a9b565b6000918252602090912001546001600160a01b03169392505050565b6040516370a0823160e01b81526001600160a01b03821660048201526000908190738a90cab2b38dba80c64b7734e58ee1db38b8992e906370a0823190602401602060405180830381865afa158015611cbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cdf9190613acd565b1180611d6757506040516370a0823160e01b81526001600160a01b0383166004820152600090730b22fe0a2995c5389ac093400e52471dca8bb48a906370a0823190602401602060405180830381865afa158015611d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d659190613acd565b115b15611d7a5750667c585087238000919050565b50669fdf42f6e48000919050565b6000546001600160a01b03163314611de25760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b8151611df590600a9060208501906133e0565b508051611e0990600b9060208401906133e0565b50611e16600c6000613460565b5050565b600a8054610a74906139e8565b600c8054610a74906139e8565b60006001600160a01b038216611eb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b54565b506001600160a01b031660009081526006602052604090205490565b611f0f336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b611f655760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b600d8190556000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b60606000611fa883611e34565b905060008167ffffffffffffffff811115611fc557611fc56135a3565b604051908082528060200260200182016040528015611fee578160200160208202803683370190505b50905060005b8281101561203557612006858261126f565b82828151811061201857612018613a9b565b60209081029190910101528061202d81613a80565b915050611ff4565b509392505050565b6000546001600160a01b031633146120975760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6001600160a01b0382166000908152600160205260409081902090516120be908390613ab1565b9081526040519081900360200190205460ff166121435760405162461bcd60e51b815260206004820152602c60248201527f417574683a20756e617574686f72697a65642063616c6c732063616e6e6f742060448201527f626520666f7262696464656e00000000000000000000000000000000000000006064820152608401610b54565b6001600160a01b03821660009081526001602052604090819020905161216a908390613ab1565b908152604051908190036020018120805460ff191690556001600160a01b038316907fee266abb756f9067a539d8b6ea87b45aaef253e283147ed0bc2ee47e64690a939061195f908490613536565b60048054610a74906139e8565b612207336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b61225d5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156122c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e79190613ae6565b506000546001600160a01b03163314611e16573360009081526001602052604080822090516123199083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555050565b611e16338383612daa565b612389336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6123df5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b600f80546001600160a01b0319166001600160a01b0383811691909117909155600054163314610c6757336000908152600160205260408082209051610c469083903690613a23565b6124323383612ae2565b6124a45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b54565b61100c84848484612e79565b600080546001600160a01b038481169116148061250357506001600160a01b0383166000908152600160205260409081902090516124ef908490613ab1565b9081526040519081900360200190205460ff165b9392505050565b600b8054610a74906139e8565b60606000600c8054612528906139e8565b905011156125c257600c805461253d906139e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612569906139e8565b80156125b65780601f1061258b576101008083540402835291602001916125b6565b820191906000526020600020905b81548152906001019060200180831161259957829003601f168201915b50505050509050919050565b600a6125cd83612e90565b600b6040516020016125e193929190613b9d565b6040516020818303038152906040529050919050565b601054600090600160a01b900460ff1661263a57506001600160a01b0382811660009081526008602090815260408083209385168352929052205460ff16610a61565b600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b0385811660048301529091169063c455279190602401602060405180830381865afa15801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190613bc5565b6001600160a01b0316826001600160a01b031614806126ed57506010546001600160a01b038381169116145b8061250357506001600160a01b0380841660009081526008602090815260408083209386168352929052205460ff16612503565b6000546001600160a01b0316331461277b5760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6000546001600160a01b03828116911614156127ff5760405162461bcd60e51b815260206004820152602c60248201527f417574683a207472616e73666572696e67206f776e65727368697020746f206360448201527f757272656e74206f776e657200000000000000000000000000000000000000006064820152608401610b54565b610c6781612fc2565b612849336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b61289f5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018290526001600160a01b038316906342842e0e90606401600060405180830381600087803b15801561290657600080fd5b505af115801561291a573d6000803e3d6000fd5b50506000546001600160a01b031633149150611e169050573360009081526001602052604080822090516123199083903690613a23565b612992336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6129e85760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b805161123d90600c9060208401906133e0565b60055460009082108015610a61575060006001600160a01b031660058381548110612a2857612a28613a9b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155600580548392919083908110612a8757612a87613a9b565b60009182526020822001546040516001600160a01b03909116917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050565b611e16828260405180602001604052806000815250613012565b6000612aed826129fb565b612b455760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b6064820152608401610b54565b600060058381548110612b5a57612b5a613a9b565b6000918252602090912001546001600160a01b0390811691508416811480612b9b5750836001600160a01b0316612b9084610af5565b6001600160a01b0316145b80611bc257506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff1691505092915050565b826001600160a01b031660058281548110612bf057612bf0613a9b565b6000918252602090912001546001600160a01b031614612c785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b54565b612c83838383613029565b612c8e600082612a45565b8160058281548110612ca257612ca2613a9b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790558583168083526006909152604080832080546000190190559285168083528383208054600101905592518493927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6002805460ff19811660ff918216159081179092551615612d675760405133907f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90600090a2565b60405133907f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890600090a2565b600082612da18584613091565b14949350505050565b816001600160a01b0316836001600160a01b03161415612e0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b54565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e84848484612bd3565b61100c84848484613135565b606081612ed057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612efa5780612ee481613a80565b9150612ef39050600a83613bf8565b9150612ed4565b60008167ffffffffffffffff811115612f1557612f156135a3565b6040519080825280601f01601f191660200182016040528015612f3f576020820181803683370190505b5090505b8415611bc257612f54600183613c0c565b9150612f61600a86613c23565b612f6c906030613a49565b60f81b818381518110612f8157612f81613a9b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fbb600a86613bf8565b9450612f43565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f0d18b5fd22306e373229b9439188228edca81207d1667f604daf6cef8aa3ee679190a35050565b61301c83836132ef565b610db56000848484613135565b6000546001600160a01b0316331480613045575060025460ff16155b610db55760405162461bcd60e51b815260206004820152601960248201527f5061757361626c653a20636f6e747261637420706175736564000000000000006044820152606401610b54565b600081815b84518110156120355760008582815181106130b3576130b3613a9b565b602002602001015190508083116130f5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613122565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061312d81613a80565b915050613096565b6001600160a01b0383163b1561100c57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290613177903390889087908790600401613c37565b6020604051808303816000875af19250505080156131b2575060408051601f3d908101601f191682019092526131af91810190613c73565b60015b613262573d8080156131e0576040519150601f19603f3d011682016040523d82523d6000602084013e6131e5565b606091505b50805161325a5760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a2073616665207472616e7366657220746f206e6f6e2045524360448201527f373231526563656976657220696d706c656d656e746174696f6e0000000000006064820152608401610b54565b805181602001fd5b630a85bd0160e11b6001600160e01b03198216146132e85760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a2073616665207472616e7366657220746f206e6f6e2045524360448201527f373231526563656976657220696d706c656d656e746174696f6e0000000000006064820152608401610b54565b5050505050565b6132f8816129fb565b156133455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b54565b61335160008383613029565b6005805460018082019092557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b038516908117909155600081815260066020526040808220805490940190935591518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546133ec906139e8565b90600052602060002090601f01602090048101928261340e5760008555613454565b82601f1061342757805160ff1916838001178555613454565b82800160010185558215613454579182015b82811115613454578251825591602001919060010190613439565b50611b6b929150613496565b50805461346c906139e8565b6000825580601f1061347c575050565b601f016020900490600052602060002090810190610c6791905b5b80821115611b6b5760008155600101613497565b6001600160e01b031981168114610c6757600080fd5b6000602082840312156134d357600080fd5b8135612503816134ab565b60005b838110156134f95781810151838201526020016134e1565b8381111561100c5750506000910152565b600081518084526135228160208601602086016134de565b601f01601f19169290920160200192915050565b602081526000612503602083018461350a565b60006020828403121561355b57600080fd5b5035919050565b6001600160a01b0381168114610c6757600080fd5b6000806040838503121561358a57600080fd5b823561359581613562565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156135e2576135e26135a3565b604052919050565b600082601f8301126135fb57600080fd5b8135602067ffffffffffffffff821115613617576136176135a3565b8160051b6136268282016135b9565b928352848101820192828101908785111561364057600080fd5b83870192505b8483101561365f57823582529183019190830190613646565b979650505050505050565b6000806040838503121561367d57600080fd5b82359150602083013567ffffffffffffffff81111561369b57600080fd5b6136a7858286016135ea565b9150509250929050565b6000602082840312156136c357600080fd5b813561250381613562565b6000806000606084860312156136e357600080fd5b83356136ee81613562565b925060208401356136fe81613562565b929592945050506040919091013590565b600082601f83011261372057600080fd5b813567ffffffffffffffff81111561373a5761373a6135a3565b61374d601f8201601f19166020016135b9565b81815284602083860101111561376257600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561379257600080fd5b823561379d81613562565b9150602083013567ffffffffffffffff8111156137b957600080fd5b6136a78582860161370f565b6000806000606084860312156137da57600080fd5b83356137e581613562565b95602085013595506040909401359392505050565b6000806040838503121561380d57600080fd5b823561381881613562565b9150602083013567ffffffffffffffff81111561369b57600080fd5b6000806040838503121561384757600080fd5b823567ffffffffffffffff8082111561385f57600080fd5b61386b8683870161370f565b9350602085013591508082111561388157600080fd5b506136a78582860161370f565b6020808252825182820181905260009190848201906040850190845b818110156138c6578351835292840192918401916001016138aa565b50909695505050505050565b8015158114610c6757600080fd5b600080604083850312156138f357600080fd5b82356138fe81613562565b9150602083013561390e816138d2565b809150509250929050565b6000806000806080858703121561392f57600080fd5b843561393a81613562565b9350602085013561394a81613562565b925060408501359150606085013567ffffffffffffffff81111561396d57600080fd5b6139798782880161370f565b91505092959194509250565b6000806040838503121561399857600080fd5b82356139a381613562565b9150602083013561390e81613562565b6000602082840312156139c557600080fd5b813567ffffffffffffffff8111156139dc57600080fd5b611bc28482850161370f565b600181811c908216806139fc57607f821691505b60208210811415613a1d57634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613a5c57613a5c613a33565b500190565b6000816000190483118215151615613a7b57613a7b613a33565b500290565b6000600019821415613a9457613a94613a33565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008251613ac38184602087016134de565b9190910192915050565b600060208284031215613adf57600080fd5b5051919050565b600060208284031215613af857600080fd5b8151612503816138d2565b8054600090600181811c9080831680613b1d57607f831692505b6020808410821415613b3f57634e487b7160e01b600052602260045260246000fd5b818015613b535760018114613b6457613b91565b60ff19861689528489019650613b91565b60008881526020902060005b86811015613b895781548b820152908501908301613b70565b505084890196505b50505050505092915050565b6000613ba98286613b03565b8451613bb98183602089016134de565b61365f81830186613b03565b600060208284031215613bd757600080fd5b815161250381613562565b634e487b7160e01b600052601260045260246000fd5b600082613c0757613c07613be2565b500490565b600082821015613c1e57613c1e613a33565b500390565b600082613c3257613c32613be2565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c69608083018461350a565b9695505050505050565b600060208284031215613c8557600080fd5b8151612503816134ab56fe417574683a2073656e646572206973206e6f7420746865206f776e6572206f72a264697066735822122069433df2f7fe3a58db54d7b74afbfa932e12d047e22e627c2713585fa5a6fac364736f6c634300080b00334552433732313a2073616665207472616e7366657220746f206e6f6e2045524300000000000000000000000000000000000000000000000000000000000000805e2e44d941f1bfd597a87b663d0c55eca853722d6a9c31befac6c2cf1989b0a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000f42aa99f011a1fa7cda90e5e98b277e306bca83e0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d524458656f7a57664b45666167316e775a374732756843734778374b4b7647784d4e363170757a736b5a37420000000000000000000000

Deployed Bytecode

0x60806040526004361061034a5760003560e01c8063603f4d52116101bb578063a1db9782116100f7578063c668286211610095578063e985e9c51161006f578063e985e9c514610916578063f2fde38b14610936578063f3e414f814610956578063fe2c7fee1461097657600080fd5b8063c6682862146108c6578063c87b56dd146108db578063ca9ea783146108fb57600080fd5b8063b776c8a6116100d1578063b776c8a61461084b578063b88d4fde1461086b578063b95e22dc1461088b578063bee184f1146108a657600080fd5b8063a1db9782146107eb578063a22cb4651461080b578063a8e90b571461082b57600080fd5b806370a08231116101645780638da5cb5b1161013e5780638da5cb5b1461076b5780638ef79b3c1461078957806395d89b41146107a957806398a8cffe146107be57600080fd5b806370a08231146106fe5780637cb647591461071e5780638462151c1461073e57600080fd5b80636790a9de116101955780636790a9de146106b45780636c0360eb146106d45780637035bf18146106e957600080fd5b8063603f4d521461065e5780636352211e146106745780636560beeb1461069457600080fd5b806333c12e171161028a57806344f0dada116102335780634f6ccce71161020d5780634f6ccce7146105e6578063511ed382146106065780635a23dd99146106265780635c975abb1461064657600080fd5b806344f0dada146105a657806344f2019a146105bb5780634b3ef101146105d057600080fd5b806339b7659f1161026457806339b7659f1461054657806339ead7201461056657806342842e0e1461058657600080fd5b806333c12e171461050957806336566f061461051e578063379607f51461053357600080fd5b806315a42b1f116102f757806323b872dd116102d157806323b872dd146104935780632e1a7d4d146104b35780632eb4a7ab146104d35780632f745c59146104e957600080fd5b806315a42b1f1461044157806318160ddd146104545780631e8858fb1461047357600080fd5b8063081812fc11610328578063081812fc146103c7578063084c4088146103ff578063095ea7b31461042157600080fd5b806301ffc9a71461034f578063026ae1021461038457806306fdde03146103a5575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046134c1565b610996565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b5060105461036f90600160a01b900460ff1681565b3480156103b157600080fd5b506103ba610a67565b60405161037b9190613536565b3480156103d357600080fd5b506103e76103e2366004613549565b610af5565b6040516001600160a01b03909116815260200161037b565b34801561040b57600080fd5b5061041f61041a366004613549565b610b79565b005b34801561042d57600080fd5b5061041f61043c366004613577565b610c6a565b61041f61044f36600461366a565b610dba565b34801561046057600080fd5b506005545b60405190815260200161037b565b34801561047f57600080fd5b5061041f61048e3660046136b1565b611012565b34801561049f57600080fd5b5061041f6104ae3660046136ce565b6110f2565b3480156104bf57600080fd5b5061041f6104ce366004613549565b611179565b3480156104df57600080fd5b50610465600d5481565b3480156104f557600080fd5b50610465610504366004613577565b61126f565b34801561051557600080fd5b5061041f61139c565b34801561052a57600080fd5b5061041f6114c1565b61041f610541366004613549565b611591565b34801561055257600080fd5b5061041f61056136600461377f565b611747565b34801561057257600080fd5b5061041f6105813660046137c5565b61196b565b34801561059257600080fd5b5061041f6105a13660046136ce565b611aee565b3480156105b257600080fd5b50610465600281565b3480156105c757600080fd5b50610465600a81565b3480156105dc57600080fd5b5061046561138881565b3480156105f257600080fd5b50610465610601366004613549565b611b09565b34801561061257600080fd5b50600f546103e7906001600160a01b031681565b34801561063257600080fd5b5061036f6106413660046137fa565b611b6f565b34801561065257600080fd5b5060025460ff1661036f565b34801561066a57600080fd5b5061046560095481565b34801561068057600080fd5b506103e761068f366004613549565b611bca565b3480156106a057600080fd5b506104656106af3660046136b1565b611c5e565b3480156106c057600080fd5b5061041f6106cf366004613834565b611d88565b3480156106e057600080fd5b506103ba611e1a565b3480156106f557600080fd5b506103ba611e27565b34801561070a57600080fd5b506104656107193660046136b1565b611e34565b34801561072a57600080fd5b5061041f610739366004613549565b611ece565b34801561074a57600080fd5b5061075e6107593660046136b1565b611f9b565b60405161037b919061388e565b34801561077757600080fd5b506000546001600160a01b03166103e7565b34801561079557600080fd5b5061041f6107a436600461377f565b61203d565b3480156107b557600080fd5b506103ba6121b9565b3480156107ca57600080fd5b506104656107d93660046136b1565b600e6020526000908152604090205481565b3480156107f757600080fd5b5061041f610806366004613577565b6121c6565b34801561081757600080fd5b5061041f6108263660046138e0565b61233d565b34801561083757600080fd5b506010546103e7906001600160a01b031681565b34801561085757600080fd5b5061041f6108663660046136b1565b612348565b34801561087757600080fd5b5061041f610886366004613919565b612428565b34801561089757600080fd5b50610465667c58508723800081565b3480156108b257600080fd5b5061036f6108c136600461377f565b6124b0565b3480156108d257600080fd5b506103ba61250a565b3480156108e757600080fd5b506103ba6108f6366004613549565b612517565b34801561090757600080fd5b50610465669fdf42f6e4800081565b34801561092257600080fd5b5061036f610931366004613985565b6125f7565b34801561094257600080fd5b5061041f6109513660046136b1565b612721565b34801561096257600080fd5b5061041f610971366004613577565b612808565b34801561098257600080fd5b5061041f6109913660046139b3565b612951565b60007f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806109f957507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610a2d57507f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610a6157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60038054610a74906139e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa0906139e8565b8015610aed5780601f10610ac257610100808354040283529160200191610aed565b820191906000526020600020905b815481529060010190602001808311610ad057829003601f168201915b505050505081565b6000610b00826129fb565b610b5d5760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b610bba336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b610c105760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b60098190556000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555b50565b6000610c7582611bca565b9050806001600160a01b0316836001600160a01b03161415610cff5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b54565b336001600160a01b0382161480610d3957506001600160a01b038116600090815260086020908152604080832033845290915290205460ff165b610dab5760405162461bcd60e51b815260206004820152603060248201527f4552433732313a2063616c6c6572206973206e6f74206f776e6572206e6f722060448201527f617070726f76656420666f7220616c6c000000000000000000000000000000006064820152608401610b54565b610db58383612a45565b505050565b6000610dc560055490565b9050611388610dd48483613a49565b1115610e225760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610b54565b6000546001600160a01b03163314610fb557600954600114610e865760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206f70656e0000000000006044820152606401610b54565b600083118015610eb15750336000908152600e6020526040902054600290610eae9085613a49565b11155b610efd5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420636c61696d20616d6f756e740000000000000000000000006044820152606401610b54565b82610f0733611c5e565b610f119190613a61565b3414610f5f5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420657468657220616d6f756e740000000000000000000000006044820152606401610b54565b610f693383611b6f565b610fb55760405162461bcd60e51b815260206004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610b54565b336000908152600e602052604081208054859290610fd4908490613a49565b90915550600090505b8381101561100c57610ffa3383610ff381613a80565b9450612ac8565b8061100481613a80565b915050610fdd565b50505050565b611053336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6110a95760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b601080546001600160a01b0319166001600160a01b0383811691909117909155600054163314610c6757336000908152600160205260408082209051610c469083903690613a23565b6110fc3382612ae2565b61116e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b54565b610db5838383612bd3565b6111ba336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6112105760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b604051339082156108fc029083906000818181858888f1935050505015801561123d573d6000803e3d6000fd5b506000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b600061127a83611e34565b82106112d65760405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b6000805b60055481101561134557600581815481106112f7576112f7613a9b565b6000918252602090912001546001600160a01b03868116911614156113355783821415611327579150610a619050565b8161133181613a80565b9250505b61133e81613a80565b90506112da565b5060405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b6113dd336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6114335760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116600160a01b9182900460ff16159091021790556000546001600160a01b031633146114bf5733600090815260016020526040808220905161149e9083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555b565b611502336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6115585760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b611560612d1f565b6000546001600160a01b031633146114bf5733600090815260016020526040808220905161149e9083903690613a23565b600061159c60055490565b90506113886115ab8383613a49565b11156115f95760405162461bcd60e51b815260206004820152601360248201527f4d617820737570706c79206578636565646564000000000000000000000000006044820152606401610b54565b6000546001600160a01b0316331461171c5760095460021461165d5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610b54565b60008211801561166e5750600a8211155b6116ba5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420636c61696d20616d6f756e740000000000000000000000006044820152606401610b54565b816116c433611c5e565b6116ce9190613a61565b341461171c5760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420657468657220616d6f756e740000000000000000000000006044820152606401610b54565b60005b82811015610db5576117353383610ff381613a80565b8061173f81613a80565b91505061171f565b6000546001600160a01b031633146117a15760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6000546001600160a01b03838116911614156118255760405162461bcd60e51b815260206004820152602360248201527f417574683a20617574686f72697a696e672063616c6c20746f20746865206f7760448201527f6e657200000000000000000000000000000000000000000000000000000000006064820152608401610b54565b6001600160a01b03821660009081526001602052604090819020905161184c908390613ab1565b9081526040519081900360200190205460ff16156118d25760405162461bcd60e51b815260206004820152602760248201527f417574683a20617574686f72697a65642063616c6c732063616e6e6f7420626560448201527f20617574686564000000000000000000000000000000000000000000000000006064820152608401610b54565b6001806000846001600160a01b03166001600160a01b03168152602001908152602001600020826040516119069190613ab1565b908152604051908190036020018120805492151560ff19909316929092179091556001600160a01b038316907f93cbc542eae04a681ace3eb6a2785a14a80a0d65f061779cd14a3035558364169061195f908490613536565b60405180910390a25050565b6119ac336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b611a025760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517ff242432a000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018390526064810182905260a06084820152600060a48201526001600160a01b0384169063f242432a9060c401600060405180830381600087803b158015611a7e57600080fd5b505af1158015611a92573d6000803e3d6000fd5b50506000546001600160a01b031633149150610db5905057336000908152600160205260408082209051611ac99083903690613a23565b908152604051908190036020019020805491151560ff19909216919091179055505050565b610db583838360405180602001604052806000815250612428565b6005546000908210611b6b5760405162461bcd60e51b815260206004820152602560248201527f455243373231456e756d657261626c653a20496e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610b54565b5090565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050611bc2600d548285612d949092919063ffffffff16565b949350505050565b6000611bd5826129fb565b611c2d5760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b6064820152608401610b54565b600060058381548110611c4257611c42613a9b565b6000918252602090912001546001600160a01b03169392505050565b6040516370a0823160e01b81526001600160a01b03821660048201526000908190738a90cab2b38dba80c64b7734e58ee1db38b8992e906370a0823190602401602060405180830381865afa158015611cbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cdf9190613acd565b1180611d6757506040516370a0823160e01b81526001600160a01b0383166004820152600090730b22fe0a2995c5389ac093400e52471dca8bb48a906370a0823190602401602060405180830381865afa158015611d41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d659190613acd565b115b15611d7a5750667c585087238000919050565b50669fdf42f6e48000919050565b6000546001600160a01b03163314611de25760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b8151611df590600a9060208501906133e0565b508051611e0990600b9060208401906133e0565b50611e16600c6000613460565b5050565b600a8054610a74906139e8565b600c8054610a74906139e8565b60006001600160a01b038216611eb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b54565b506001600160a01b031660009081526006602052604090205490565b611f0f336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b611f655760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b600d8190556000546001600160a01b03163314610c6757336000908152600160205260408082209051610c469083903690613a23565b60606000611fa883611e34565b905060008167ffffffffffffffff811115611fc557611fc56135a3565b604051908082528060200260200182016040528015611fee578160200160208202803683370190505b50905060005b8281101561203557612006858261126f565b82828151811061201857612018613a9b565b60209081029190910101528061202d81613a80565b915050611ff4565b509392505050565b6000546001600160a01b031633146120975760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6001600160a01b0382166000908152600160205260409081902090516120be908390613ab1565b9081526040519081900360200190205460ff166121435760405162461bcd60e51b815260206004820152602c60248201527f417574683a20756e617574686f72697a65642063616c6c732063616e6e6f742060448201527f626520666f7262696464656e00000000000000000000000000000000000000006064820152608401610b54565b6001600160a01b03821660009081526001602052604090819020905161216a908390613ab1565b908152604051908190036020018120805460ff191690556001600160a01b038316907fee266abb756f9067a539d8b6ea87b45aaef253e283147ed0bc2ee47e64690a939061195f908490613536565b60048054610a74906139e8565b612207336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b61225d5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156122c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e79190613ae6565b506000546001600160a01b03163314611e16573360009081526001602052604080822090516123199083903690613a23565b908152604051908190036020019020805491151560ff199092169190911790555050565b611e16338383612daa565b612389336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6123df5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b600f80546001600160a01b0319166001600160a01b0383811691909117909155600054163314610c6757336000908152600160205260408082209051610c469083903690613a23565b6124323383612ae2565b6124a45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b54565b61100c84848484612e79565b600080546001600160a01b038481169116148061250357506001600160a01b0383166000908152600160205260409081902090516124ef908490613ab1565b9081526040519081900360200190205460ff165b9392505050565b600b8054610a74906139e8565b60606000600c8054612528906139e8565b905011156125c257600c805461253d906139e8565b80601f0160208091040260200160405190810160405280929190818152602001828054612569906139e8565b80156125b65780601f1061258b576101008083540402835291602001916125b6565b820191906000526020600020905b81548152906001019060200180831161259957829003601f168201915b50505050509050919050565b600a6125cd83612e90565b600b6040516020016125e193929190613b9d565b6040516020818303038152906040529050919050565b601054600090600160a01b900460ff1661263a57506001600160a01b0382811660009081526008602090815260408083209385168352929052205460ff16610a61565b600f546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b0385811660048301529091169063c455279190602401602060405180830381865afa15801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190613bc5565b6001600160a01b0316826001600160a01b031614806126ed57506010546001600160a01b038381169116145b8061250357506001600160a01b0380841660009081526008602090815260408083209386168352929052205460ff16612503565b6000546001600160a01b0316331461277b5760405162461bcd60e51b815260206004820152601d60248201527f417574683a2073656e646572206973206e6f7420746865206f776e65720000006044820152606401610b54565b6000546001600160a01b03828116911614156127ff5760405162461bcd60e51b815260206004820152602c60248201527f417574683a207472616e73666572696e67206f776e65727368697020746f206360448201527f757272656e74206f776e657200000000000000000000000000000000000000006064820152608401610b54565b610c6781612fc2565b612849336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b61289f5760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b6040517f42842e0e000000000000000000000000000000000000000000000000000000008152306004820152336024820152604481018290526001600160a01b038316906342842e0e90606401600060405180830381600087803b15801561290657600080fd5b505af115801561291a573d6000803e3d6000fd5b50506000546001600160a01b031633149150611e169050573360009081526001602052604080822090516123199083903690613a23565b612992336000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506124b092505050565b6129e85760405162461bcd60e51b81526020600482015260336024820152600080516020613c9183398151915260448201527208185d5d1a1bdc9a5e9959081d1bc818d85b1b606a1b6064820152608401610b54565b805161123d90600c9060208401906133e0565b60055460009082108015610a61575060006001600160a01b031660058381548110612a2857612a28613a9b565b6000918252602090912001546001600160a01b0316141592915050565b600081815260076020526040902080546001600160a01b0319166001600160a01b038416908117909155600580548392919083908110612a8757612a87613a9b565b60009182526020822001546040516001600160a01b03909116917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45050565b611e16828260405180602001604052806000815250613012565b6000612aed826129fb565b612b455760405162461bcd60e51b815260206004820152602360248201527f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60448201526235b2b760e91b6064820152608401610b54565b600060058381548110612b5a57612b5a613a9b565b6000918252602090912001546001600160a01b0390811691508416811480612b9b5750836001600160a01b0316612b9084610af5565b6001600160a01b0316145b80611bc257506001600160a01b0380821660009081526008602090815260408083209388168352929052205460ff1691505092915050565b826001600160a01b031660058281548110612bf057612bf0613a9b565b6000918252602090912001546001600160a01b031614612c785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b54565b612c83838383613029565b612c8e600082612a45565b8160058281548110612ca257612ca2613a9b565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790558583168083526006909152604080832080546000190190559285168083528383208054600101905592518493927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6002805460ff19811660ff918216159081179092551615612d675760405133907f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90600090a2565b60405133907f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890600090a2565b600082612da18584613091565b14949350505050565b816001600160a01b0316836001600160a01b03161415612e0c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b54565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612e84848484612bd3565b61100c84848484613135565b606081612ed057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612efa5780612ee481613a80565b9150612ef39050600a83613bf8565b9150612ed4565b60008167ffffffffffffffff811115612f1557612f156135a3565b6040519080825280601f01601f191660200182016040528015612f3f576020820181803683370190505b5090505b8415611bc257612f54600183613c0c565b9150612f61600a86613c23565b612f6c906030613a49565b60f81b818381518110612f8157612f81613a9b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fbb600a86613bf8565b9450612f43565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f0d18b5fd22306e373229b9439188228edca81207d1667f604daf6cef8aa3ee679190a35050565b61301c83836132ef565b610db56000848484613135565b6000546001600160a01b0316331480613045575060025460ff16155b610db55760405162461bcd60e51b815260206004820152601960248201527f5061757361626c653a20636f6e747261637420706175736564000000000000006044820152606401610b54565b600081815b84518110156120355760008582815181106130b3576130b3613a9b565b602002602001015190508083116130f5576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613122565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061312d81613a80565b915050613096565b6001600160a01b0383163b1561100c57604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290613177903390889087908790600401613c37565b6020604051808303816000875af19250505080156131b2575060408051601f3d908101601f191682019092526131af91810190613c73565b60015b613262573d8080156131e0576040519150601f19603f3d011682016040523d82523d6000602084013e6131e5565b606091505b50805161325a5760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a2073616665207472616e7366657220746f206e6f6e2045524360448201527f373231526563656976657220696d706c656d656e746174696f6e0000000000006064820152608401610b54565b805181602001fd5b630a85bd0160e11b6001600160e01b03198216146132e85760405162461bcd60e51b815260206004820152603a60248201527f4552433732313a2073616665207472616e7366657220746f206e6f6e2045524360448201527f373231526563656976657220696d706c656d656e746174696f6e0000000000006064820152608401610b54565b5050505050565b6132f8816129fb565b156133455760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b54565b61335160008383613029565b6005805460018082019092557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b038516908117909155600081815260066020526040808220805490940190935591518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546133ec906139e8565b90600052602060002090601f01602090048101928261340e5760008555613454565b82601f1061342757805160ff1916838001178555613454565b82800160010185558215613454579182015b82811115613454578251825591602001919060010190613439565b50611b6b929150613496565b50805461346c906139e8565b6000825580601f1061347c575050565b601f016020900490600052602060002090810190610c6791905b5b80821115611b6b5760008155600101613497565b6001600160e01b031981168114610c6757600080fd5b6000602082840312156134d357600080fd5b8135612503816134ab565b60005b838110156134f95781810151838201526020016134e1565b8381111561100c5750506000910152565b600081518084526135228160208601602086016134de565b601f01601f19169290920160200192915050565b602081526000612503602083018461350a565b60006020828403121561355b57600080fd5b5035919050565b6001600160a01b0381168114610c6757600080fd5b6000806040838503121561358a57600080fd5b823561359581613562565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156135e2576135e26135a3565b604052919050565b600082601f8301126135fb57600080fd5b8135602067ffffffffffffffff821115613617576136176135a3565b8160051b6136268282016135b9565b928352848101820192828101908785111561364057600080fd5b83870192505b8483101561365f57823582529183019190830190613646565b979650505050505050565b6000806040838503121561367d57600080fd5b82359150602083013567ffffffffffffffff81111561369b57600080fd5b6136a7858286016135ea565b9150509250929050565b6000602082840312156136c357600080fd5b813561250381613562565b6000806000606084860312156136e357600080fd5b83356136ee81613562565b925060208401356136fe81613562565b929592945050506040919091013590565b600082601f83011261372057600080fd5b813567ffffffffffffffff81111561373a5761373a6135a3565b61374d601f8201601f19166020016135b9565b81815284602083860101111561376257600080fd5b816020850160208301376000918101602001919091529392505050565b6000806040838503121561379257600080fd5b823561379d81613562565b9150602083013567ffffffffffffffff8111156137b957600080fd5b6136a78582860161370f565b6000806000606084860312156137da57600080fd5b83356137e581613562565b95602085013595506040909401359392505050565b6000806040838503121561380d57600080fd5b823561381881613562565b9150602083013567ffffffffffffffff81111561369b57600080fd5b6000806040838503121561384757600080fd5b823567ffffffffffffffff8082111561385f57600080fd5b61386b8683870161370f565b9350602085013591508082111561388157600080fd5b506136a78582860161370f565b6020808252825182820181905260009190848201906040850190845b818110156138c6578351835292840192918401916001016138aa565b50909695505050505050565b8015158114610c6757600080fd5b600080604083850312156138f357600080fd5b82356138fe81613562565b9150602083013561390e816138d2565b809150509250929050565b6000806000806080858703121561392f57600080fd5b843561393a81613562565b9350602085013561394a81613562565b925060408501359150606085013567ffffffffffffffff81111561396d57600080fd5b6139798782880161370f565b91505092959194509250565b6000806040838503121561399857600080fd5b82356139a381613562565b9150602083013561390e81613562565b6000602082840312156139c557600080fd5b813567ffffffffffffffff8111156139dc57600080fd5b611bc28482850161370f565b600181811c908216806139fc57607f821691505b60208210811415613a1d57634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115613a5c57613a5c613a33565b500190565b6000816000190483118215151615613a7b57613a7b613a33565b500290565b6000600019821415613a9457613a94613a33565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008251613ac38184602087016134de565b9190910192915050565b600060208284031215613adf57600080fd5b5051919050565b600060208284031215613af857600080fd5b8151612503816138d2565b8054600090600181811c9080831680613b1d57607f831692505b6020808410821415613b3f57634e487b7160e01b600052602260045260246000fd5b818015613b535760018114613b6457613b91565b60ff19861689528489019650613b91565b60008881526020902060005b86811015613b895781548b820152908501908301613b70565b505084890196505b50505050505092915050565b6000613ba98286613b03565b8451613bb98183602089016134de565b61365f81830186613b03565b600060208284031215613bd757600080fd5b815161250381613562565b634e487b7160e01b600052601260045260246000fd5b600082613c0757613c07613be2565b500490565b600082821015613c1e57613c1e613a33565b500390565b600082613c3257613c32613be2565b500690565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c69608083018461350a565b9695505050505050565b600060208284031215613c8557600080fd5b8151612503816134ab56fe417574683a2073656e646572206973206e6f7420746865206f776e6572206f72a264697066735822122069433df2f7fe3a58db54d7b74afbfa932e12d047e22e627c2713585fa5a6fac364736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000805e2e44d941f1bfd597a87b663d0c55eca853722d6a9c31befac6c2cf1989b0a0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000f42aa99f011a1fa7cda90e5e98b277e306bca83e0000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d524458656f7a57664b45666167316e775a374732756843734778374b4b7647784d4e363170757a736b5a37420000000000000000000000

-----Decoded View---------------
Arg [0] : unrevealedURI_ (string): ipfs://QmRDXeozWfKEfag1nwZ7G2uhCsGx7KKvGxMN61puzskZ7B
Arg [1] : merkleRoot_ (bytes32): 0x5e2e44d941f1bfd597a87b663d0c55eca853722d6a9c31befac6c2cf1989b0a0
Arg [2] : opensea_ (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : looksrare_ (address): 0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 5e2e44d941f1bfd597a87b663d0c55eca853722d6a9c31befac6c2cf1989b0a0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 000000000000000000000000f42aa99f011a1fa7cda90e5e98b277e306bca83e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 697066733a2f2f516d524458656f7a57664b45666167316e775a374732756843
Arg [6] : 734778374b4b7647784d4e363170757a736b5a37420000000000000000000000


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.