ETH Price: $3,104.95 (+1.26%)
Gas: 2 Gwei

Token

Mallow Club (MALLOW)
 

Overview

Max Total Supply

785 MALLOW

Holders

305

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MALLOW
0x89e61810011d8f032f92ff1f3f9680e2d2fee83f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MallowClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : MallowClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";

contract MallowClub is Ownable, ERC721A {
    using MerkleProof for bytes32[];

    uint256 public constant MAX_SUPPLY = 6500;
    uint256 public constant PUBLIC_MINT_LIMIT = 10;
    uint256 public constant PRESALE_MINT_LIMIT = 2;

    uint256 public constant MINT_PRICE = 0.025 ether;

    /// @dev Inactive = 0; Presale = 1; Public = 2
    uint256 public saleFlag;

    bytes32 public merkleRoot;
    string public baseURI;
    bool public metadataLocked;
    
    mapping(address => uint256) private whitelistMints;

    constructor() ERC721A("Mallow Club", "MALLOW", PUBLIC_MINT_LIMIT, MAX_SUPPLY) {}

    modifier onlyUnlocked() {
        require(!metadataLocked, "METADATA_LOCKED");
        _;
    }

    function verifyProof(bytes32[] calldata _proof) internal view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return _proof.verify(merkleRoot, leaf);
    }

    function lockMetadata() external onlyOwner {
        metadataLocked = true;
    }

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

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

    function setSaleState(uint256 _flag) external onlyOwner onlyUnlocked {
        saleFlag = _flag;
    }

    function setMerkleRoot(bytes32 _new) external onlyOwner {
        merkleRoot = _new;
    }

    function mint(uint256 _amount) external payable {
        require(totalSupply() + _amount <= MAX_SUPPLY, "MINT_EXCEEDS_TOTAL_SUPPLY");

        require(saleFlag == 2, "MINTING_PAUSED");
        require(_amount > 0 && _amount <= PUBLIC_MINT_LIMIT, "AMOUNT_TOO_HIGH");
        require(MINT_PRICE * _amount <= msg.value, "VALUE_TOO_LOW");
        require(tx.origin == msg.sender, "SENDER_IS_NOT_AN_EOA");

        _safeMint(msg.sender, _amount);
    }

    function mintWhitelist(uint256 _amount, bytes32[] calldata _proof) external payable {
        require(totalSupply() + _amount <= MAX_SUPPLY, "MINT_EXCEEDS_TOTAL_SUPPLY");

        require(saleFlag == 1, "MINTING_PAUSED");
        require(verifyProof(_proof), "INVALID_MERKLE_PROOF");
        require(whitelistMints[msg.sender] + _amount <= PRESALE_MINT_LIMIT, "MINT_EXCEEDS_LIMIT");
        require(_amount > 0 && _amount <= PRESALE_MINT_LIMIT, "AMOUNT_TOO_HIGH");
        require(MINT_PRICE * _amount <= msg.value, "VALUE_TOO_LOW");

        whitelistMints[msg.sender] += _amount;

        _safeMint(msg.sender, _amount);
    }

    function mintOwner(uint256 _amount, address _to) external onlyOwner onlyUnlocked {
        require(totalSupply() + _amount <= MAX_SUPPLY, "MINT_EXCEEDS_TOTAL_SUPPLY");

        _safeMint(_to, _amount);
    }   

    /** @notice
     * ALLOCATIONS:
     *  - Community Multisig: 20% (Signers: Bitquence, Pfpump, Mallow / 2 of 3 signatures)
     *  - Owners: 53%
     *  - Contract Dev: 12%
     *  - Advisor: 7.5%
     *  - Animator: 5%
     *  - Web Dev: 5%
     *  - Graphics: 2.5%
     */
    function withdraw() external onlyOwner {
        uint256 balanceDividend = address(this).balance / 1000;

        (bool sDev,) = address(0x91b26FffFfB325e13F1eF592b0933696098044Af).call{value: balanceDividend * 120}("");
        (bool sComm,) = address(0x672Ac43c28cE763Bea39bB8E195Db036C72209eE).call{value: balanceDividend * 200}("");
        (bool sPfpump,) = address(0xF82E94445Fed2F74A272C97Da8b2EFa9003B7d13).call{value: balanceDividend * 240}("");
        (bool sMallow,) = address(0x4cC3EB54b3ff22ffa1257453ca5d6b5d027fFffA).call{value: balanceDividend * 240}("");
        (bool sAnimator,) = address(0x43B7751Ce391c80C255141fd50fc41288374D36d).call{value: balanceDividend * 50}("");
        (bool sAdvisor,) = address(0x317D367663Edd9612Fbff00899F356F0E556380a).call{value: balanceDividend * 75}("");
        (bool sWeb,) = address(0xDd9A6283d8fb41AFcdCF29BF2884C9d3B9245cC7).call{value: balanceDividend * 50}("");
        (bool sGraphics,) = address(0x317b3a38C520228Ab3b9a6C70D5161530Af9DD40).call{value: balanceDividend * 25}("");
    }
}

File 2 of 13 : 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 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

File 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 13 : 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 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : 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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : 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": 500
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleFlag","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":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_new","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_flag","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040518060400160405280600b81526020016a26b0b63637bb9021b63ab160a91b815250604051806040016040528060068152602001654d414c4c4f5760d01b815250600a6119646200007e620000786200018b60201b60201c565b6200018f565b60008111620000eb5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200014d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e2565b835162000162906002906020870190620001df565b50825162000178906003906020860190620001df565b5060a09190915260805250620002c29050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ed9062000285565b90600052602060002090601f0160209004810192826200021157600085556200025c565b82601f106200022c57805160ff19168380011785556200025c565b828001600101855582156200025c579182015b828111156200025c5782518255916020019190600101906200023f565b506200026a9291506200026e565b5090565b5b808211156200026a57600081556001016200026f565b600181811c908216806200029a57607f821691505b60208210811415620002bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612d80620002f360003960008181611eef01528181611f1901526123c4015260005050612d806000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461059d578063d7224ba0146105bd578063e985e9c5146105d3578063f2fde38b1461061c578063f5ebec801461063c57600080fd5b8063a22cb4651461052d578063b88d4fde1461054d578063bceae77b1461056d578063c002d23d1461058257600080fd5b80638da5cb5b116100e75780638da5cb5b146104b257806395d89b41146104d0578063989bdbb6146104e55780639f15df12146104fa578063a0712d681461051a57600080fd5b80636c0360eb1461044857806370a082311461045d578063715018a61461047d5780637cb647591461049257600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103b857806355f804b3146103d8578063614bfc55146103f85780636352211e1461040e57806369d2ceb11461042e57600080fd5b80632f745c591461034d57806332cb6b0c1461036d5780633ccfd60b1461038357806342842e0e1461039857600080fd5b8063084c4088116101e2578063084c4088146102b8578063095ea7b3146102d857806318160ddd146102f857806323b872dd146103175780632eb4a7ab1461033757600080fd5b806301ffc9a714610214578063061431a81461024957806306fdde031461025e578063081812fc14610280575b600080fd5b34801561022057600080fd5b5061023461022f366004612780565b610651565b60405190151581526020015b60405180910390f35b61025c61025736600461279d565b6106be565b005b34801561026a57600080fd5b50610273610900565b6040516102409190612874565b34801561028c57600080fd5b506102a061029b366004612887565b610992565b6040516001600160a01b039091168152602001610240565b3480156102c457600080fd5b5061025c6102d3366004612887565b610a1d565b3480156102e457600080fd5b5061025c6102f33660046128bc565b610aaf565b34801561030457600080fd5b506001545b604051908152602001610240565b34801561032357600080fd5b5061025c6103323660046128e6565b610bc2565b34801561034357600080fd5b50610309600a5481565b34801561035957600080fd5b506103096103683660046128bc565b610bcd565b34801561037957600080fd5b5061030961196481565b34801561038f57600080fd5b5061025c610d55565b3480156103a457600080fd5b5061025c6103b33660046128e6565b6110fd565b3480156103c457600080fd5b506103096103d3366004612887565b611118565b3480156103e457600080fd5b5061025c6103f3366004612922565b611181565b34801561040457600080fd5b5061030960095481565b34801561041a57600080fd5b506102a0610429366004612887565b61121a565b34801561043a57600080fd5b50600c546102349060ff1681565b34801561045457600080fd5b5061027361122c565b34801561046957600080fd5b50610309610478366004612994565b6112ba565b34801561048957600080fd5b5061025c61134b565b34801561049e57600080fd5b5061025c6104ad366004612887565b61139f565b3480156104be57600080fd5b506000546001600160a01b03166102a0565b3480156104dc57600080fd5b506102736113ec565b3480156104f157600080fd5b5061025c6113fb565b34801561050657600080fd5b5061025c6105153660046129af565b611452565b61025c610528366004612887565b611552565b34801561053957600080fd5b5061025c6105483660046129db565b6116f5565b34801561055957600080fd5b5061025c610568366004612a2d565b6117ba565b34801561057957600080fd5b50610309600a81565b34801561058e57600080fd5b506103096658d15e1762800081565b3480156105a957600080fd5b506102736105b8366004612887565b61183f565b3480156105c957600080fd5b5061030960085481565b3480156105df57600080fd5b506102346105ee366004612b09565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062857600080fd5b5061025c610637366004612994565b61191a565b34801561064857600080fd5b50610309600281565b60006001600160e01b031982166380ac58cd60e01b148061068257506001600160e01b03198216635b5e139f60e01b145b8061069d57506001600160e01b0319821663780e9d6360e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b611964836106cb60015490565b6106d59190612b49565b11156107285760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c590000000000000060448201526064015b60405180910390fd5b60095460011461076b5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b604482015260640161071f565b61077582826119d0565b6107c15760405162461bcd60e51b815260206004820152601460248201527f494e56414c49445f4d45524b4c455f50524f4f46000000000000000000000000604482015260640161071f565b336000908152600d60205260409020546002906107df908590612b49565b111561082d5760405162461bcd60e51b815260206004820152601260248201527f4d494e545f455843454544535f4c494d49540000000000000000000000000000604482015260640161071f565b60008311801561083e575060028311155b61087c5760405162461bcd60e51b815260206004820152600f60248201526e0829a9eaa9ca8bea89e9ebe90928e9608b1b604482015260640161071f565b3461088e846658d15e17628000612b61565b11156108cc5760405162461bcd60e51b815260206004820152600d60248201526c56414c55455f544f4f5f4c4f5760981b604482015260640161071f565b336000908152600d6020526040812080548592906108eb908490612b49565b909155506108fb90503384611a57565b505050565b60606002805461090f90612b80565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612b80565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b600061099f826001541190565b610a015760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161071f565b506000908152600660205260409020546001600160a01b031690565b6000546001600160a01b03163314610a655760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff1615610aaa5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b600955565b6000610aba8261121a565b9050806001600160a01b0316836001600160a01b03161415610b295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161071f565b336001600160a01b0382161480610b455750610b4581336105ee565b610bb75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071f565b6108fb838383611a71565b6108fb838383611ada565b6000610bd8836112ba565b8210610c315760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161071f565b6000610c3c60015490565b905060008060005b83811015610ce6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c9757805192505b876001600160a01b0316836001600160a01b03161415610cd35786841415610cc5575093506106b892505050565b83610ccf81612bbb565b9450505b5080610cde81612bbb565b915050610c44565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161071f565b6000546001600160a01b03163314610d9d5760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b6000610dab6103e847612bec565b905060007391b26fffffb325e13f1ef592b0933696098044af610dcf836078612b61565b604051600081818185875af1925050503d8060008114610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b509091506000905073672ac43c28ce763bea39bb8e195db036c72209ee610e388460c8612b61565b604051600081818185875af1925050503d8060008114610e74576040519150601f19603f3d011682016040523d82523d6000602084013e610e79565b606091505b509091506000905073f82e94445fed2f74a272c97da8b2efa9003b7d13610ea18560f0612b61565b604051600081818185875af1925050503d8060008114610edd576040519150601f19603f3d011682016040523d82523d6000602084013e610ee2565b606091505b5090915060009050734cc3eb54b3ff22ffa1257453ca5d6b5d027ffffa610f0a8660f0612b61565b604051600081818185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b50909150600090507343b7751ce391c80c255141fd50fc41288374d36d610f73876032612b61565b604051600081818185875af1925050503d8060008114610faf576040519150601f19603f3d011682016040523d82523d6000602084013e610fb4565b606091505b509091506000905073317d367663edd9612fbff00899f356f0e556380a610fdc88604b612b61565b604051600081818185875af1925050503d8060008114611018576040519150601f19603f3d011682016040523d82523d6000602084013e61101d565b606091505b509091506000905073dd9a6283d8fb41afcdcf29bf2884c9d3b9245cc7611045896032612b61565b604051600081818185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b509091506000905073317b3a38c520228ab3b9a6c70d5161530af9dd406110ae8a6019612b61565b604051600081818185875af1925050503d80600081146110ea576040519150601f19603f3d011682016040523d82523d6000602084013e6110ef565b606091505b505050505050505050505050565b6108fb838383604051806020016040528060008152506117ba565b600061112360015490565b821061117d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161071f565b5090565b6000546001600160a01b031633146111c95760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff161561120e5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b6108fb600b83836126da565b600061122582611e6d565b5192915050565b600b805461123990612b80565b80601f016020809104026020016040519081016040528092919081815260200182805461126590612b80565b80156112b25780601f10611287576101008083540402835291602001916112b2565b820191906000526020600020905b81548152906001019060200180831161129557829003601f168201915b505050505081565b60006001600160a01b0382166113265760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161071f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113935760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b61139d6000612025565b565b6000546001600160a01b031633146113e75760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600a55565b60606003805461090f90612b80565b6000546001600160a01b031633146114435760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c805460ff19166001179055565b6000546001600160a01b0316331461149a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff16156114df5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b611964826114ec60015490565b6114f69190612b49565b11156115445760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c5900000000000000604482015260640161071f565b61154e8183611a57565b5050565b6119648161155f60015490565b6115699190612b49565b11156115b75760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c5900000000000000604482015260640161071f565b6009546002146115fa5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b604482015260640161071f565b60008111801561160b5750600a8111155b6116495760405162461bcd60e51b815260206004820152600f60248201526e0829a9eaa9ca8bea89e9ebe90928e9608b1b604482015260640161071f565b3461165b826658d15e17628000612b61565b11156116995760405162461bcd60e51b815260206004820152600d60248201526c56414c55455f544f4f5f4c4f5760981b604482015260640161071f565b3233146116e85760405162461bcd60e51b815260206004820152601460248201527f53454e4445525f49535f4e4f545f414e5f454f41000000000000000000000000604482015260640161071f565b6116f23382611a57565b50565b6001600160a01b03821633141561174e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117c5848484611ada565b6117d184848484612082565b6118395760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b50505050565b606061184c826001541190565b6118be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161071f565b60006118c86121cc565b905060008151116118e85760405180602001604052806000815250611913565b806118f2846121db565b604051602001611903929190612c00565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119625760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b6001600160a01b0381166119c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b6116f281612025565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611a4f600a54828686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506122f19050565b949350505050565b61154e828260405180602001604052806000815250612307565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ae582611e6d565b80519091506000906001600160a01b0316336001600160a01b03161480611b1c575033611b1184610992565b6001600160a01b0316145b80611b2e57508151611b2e90336105ee565b905080611ba35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161071f565b846001600160a01b031682600001516001600160a01b031614611c175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161071f565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071f565b611c8b6000848460000151611a71565b6001600160a01b0385166000908152600560205260408120805460019290611cbd9084906001600160801b0316612c2f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d0991859116612c57565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d91846001612b49565b6000818152600460205260409020549091506001600160a01b0316611e2357611dbb816001541190565b15611e235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611e8c826001541190565b611eeb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161071f565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f4c57611f3e7f000000000000000000000000000000000000000000000000000000000000000084612c79565b611f49906001612b49565b90505b825b818110611fb6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fa357949350505050565b5080611fae81612c90565b915050611f4e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606482015260840161071f565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156121c157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120c6903390899088908890600401612ca7565b6020604051808303816000875af1925050508015612101575060408051601f3d908101601f191682019092526120fe91810190612ce3565b60015b6121a7573d80801561212f576040519150601f19603f3d011682016040523d82523d6000602084013e612134565b606091505b50805161219f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4f565b506001949350505050565b6060600b805461090f90612b80565b6060816121ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612229578061221381612bbb565b91506122229050600a83612bec565b9150612203565b60008167ffffffffffffffff81111561224457612244612a17565b6040519080825280601f01601f19166020018201604052801561226e576020820181803683370190505b5090505b8415611a4f57612283600183612c79565b9150612290600a86612d00565b61229b906030612b49565b60f81b8183815181106122b0576122b0612d14565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122ea600a86612bec565b9450612272565b6000826122fe858461262e565b14949350505050565b6001546001600160a01b03841661236a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071f565b612375816001541190565b156123c25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161071f565b7f000000000000000000000000000000000000000000000000000000000000000083111561243d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161071f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612499908790612c57565b6001600160801b031681526020018583602001516124b79190612c57565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126235760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461259b6000888488612082565b6126035760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b8161260d81612bbb565b925050808061261b90612bbb565b91505061254e565b506001819055611e65565b600081815b84518110156126d257600085828151811061265057612650612d14565b602002602001015190508083116126925760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506126bf565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806126ca81612bbb565b915050612633565b509392505050565b8280546126e690612b80565b90600052602060002090601f016020900481019282612708576000855561274e565b82601f106127215782800160ff1982351617855561274e565b8280016001018555821561274e579182015b8281111561274e578235825591602001919060010190612733565b5061117d9291505b8082111561117d5760008155600101612756565b6001600160e01b0319811681146116f257600080fd5b60006020828403121561279257600080fd5b81356119138161276a565b6000806000604084860312156127b257600080fd5b83359250602084013567ffffffffffffffff808211156127d157600080fd5b818601915086601f8301126127e557600080fd5b8135818111156127f457600080fd5b8760208260051b850101111561280957600080fd5b6020830194508093505050509250925092565b60005b8381101561283757818101518382015260200161281f565b838111156118395750506000910152565b6000815180845261286081602086016020860161281c565b601f01601f19169290920160200192915050565b6020815260006119136020830184612848565b60006020828403121561289957600080fd5b5035919050565b80356001600160a01b03811681146128b757600080fd5b919050565b600080604083850312156128cf57600080fd5b6128d8836128a0565b946020939093013593505050565b6000806000606084860312156128fb57600080fd5b612904846128a0565b9250612912602085016128a0565b9150604084013590509250925092565b6000806020838503121561293557600080fd5b823567ffffffffffffffff8082111561294d57600080fd5b818501915085601f83011261296157600080fd5b81358181111561297057600080fd5b86602082850101111561298257600080fd5b60209290920196919550909350505050565b6000602082840312156129a657600080fd5b611913826128a0565b600080604083850312156129c257600080fd5b823591506129d2602084016128a0565b90509250929050565b600080604083850312156129ee57600080fd5b6129f7836128a0565b915060208301358015158114612a0c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612a4357600080fd5b612a4c856128a0565b9350612a5a602086016128a0565b925060408501359150606085013567ffffffffffffffff80821115612a7e57600080fd5b818701915087601f830112612a9257600080fd5b813581811115612aa457612aa4612a17565b604051601f8201601f19908116603f01168101908382118183101715612acc57612acc612a17565b816040528281528a6020848701011115612ae557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612b1c57600080fd5b612b25836128a0565b91506129d2602084016128a0565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b6000816000190483118215151615612b7b57612b7b612b33565b500290565b600181811c90821680612b9457607f821691505b60208210811415612bb557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bcf57612bcf612b33565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bfb57612bfb612bd6565b500490565b60008351612c1281846020880161281c565b835190830190612c2681836020880161281c565b01949350505050565b60006001600160801b0383811690831681811015612c4f57612c4f612b33565b039392505050565b60006001600160801b03808316818516808303821115612c2657612c26612b33565b600082821015612c8b57612c8b612b33565b500390565b600081612c9f57612c9f612b33565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612cd96080830184612848565b9695505050505050565b600060208284031215612cf557600080fd5b81516119138161276a565b600082612d0f57612d0f612bd6565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207ada231a656f77a9740c2301e860c1b83c69858472390f76ce5a3bbe3c39167764736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461059d578063d7224ba0146105bd578063e985e9c5146105d3578063f2fde38b1461061c578063f5ebec801461063c57600080fd5b8063a22cb4651461052d578063b88d4fde1461054d578063bceae77b1461056d578063c002d23d1461058257600080fd5b80638da5cb5b116100e75780638da5cb5b146104b257806395d89b41146104d0578063989bdbb6146104e55780639f15df12146104fa578063a0712d681461051a57600080fd5b80636c0360eb1461044857806370a082311461045d578063715018a61461047d5780637cb647591461049257600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103b857806355f804b3146103d8578063614bfc55146103f85780636352211e1461040e57806369d2ceb11461042e57600080fd5b80632f745c591461034d57806332cb6b0c1461036d5780633ccfd60b1461038357806342842e0e1461039857600080fd5b8063084c4088116101e2578063084c4088146102b8578063095ea7b3146102d857806318160ddd146102f857806323b872dd146103175780632eb4a7ab1461033757600080fd5b806301ffc9a714610214578063061431a81461024957806306fdde031461025e578063081812fc14610280575b600080fd5b34801561022057600080fd5b5061023461022f366004612780565b610651565b60405190151581526020015b60405180910390f35b61025c61025736600461279d565b6106be565b005b34801561026a57600080fd5b50610273610900565b6040516102409190612874565b34801561028c57600080fd5b506102a061029b366004612887565b610992565b6040516001600160a01b039091168152602001610240565b3480156102c457600080fd5b5061025c6102d3366004612887565b610a1d565b3480156102e457600080fd5b5061025c6102f33660046128bc565b610aaf565b34801561030457600080fd5b506001545b604051908152602001610240565b34801561032357600080fd5b5061025c6103323660046128e6565b610bc2565b34801561034357600080fd5b50610309600a5481565b34801561035957600080fd5b506103096103683660046128bc565b610bcd565b34801561037957600080fd5b5061030961196481565b34801561038f57600080fd5b5061025c610d55565b3480156103a457600080fd5b5061025c6103b33660046128e6565b6110fd565b3480156103c457600080fd5b506103096103d3366004612887565b611118565b3480156103e457600080fd5b5061025c6103f3366004612922565b611181565b34801561040457600080fd5b5061030960095481565b34801561041a57600080fd5b506102a0610429366004612887565b61121a565b34801561043a57600080fd5b50600c546102349060ff1681565b34801561045457600080fd5b5061027361122c565b34801561046957600080fd5b50610309610478366004612994565b6112ba565b34801561048957600080fd5b5061025c61134b565b34801561049e57600080fd5b5061025c6104ad366004612887565b61139f565b3480156104be57600080fd5b506000546001600160a01b03166102a0565b3480156104dc57600080fd5b506102736113ec565b3480156104f157600080fd5b5061025c6113fb565b34801561050657600080fd5b5061025c6105153660046129af565b611452565b61025c610528366004612887565b611552565b34801561053957600080fd5b5061025c6105483660046129db565b6116f5565b34801561055957600080fd5b5061025c610568366004612a2d565b6117ba565b34801561057957600080fd5b50610309600a81565b34801561058e57600080fd5b506103096658d15e1762800081565b3480156105a957600080fd5b506102736105b8366004612887565b61183f565b3480156105c957600080fd5b5061030960085481565b3480156105df57600080fd5b506102346105ee366004612b09565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062857600080fd5b5061025c610637366004612994565b61191a565b34801561064857600080fd5b50610309600281565b60006001600160e01b031982166380ac58cd60e01b148061068257506001600160e01b03198216635b5e139f60e01b145b8061069d57506001600160e01b0319821663780e9d6360e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b611964836106cb60015490565b6106d59190612b49565b11156107285760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c590000000000000060448201526064015b60405180910390fd5b60095460011461076b5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b604482015260640161071f565b61077582826119d0565b6107c15760405162461bcd60e51b815260206004820152601460248201527f494e56414c49445f4d45524b4c455f50524f4f46000000000000000000000000604482015260640161071f565b336000908152600d60205260409020546002906107df908590612b49565b111561082d5760405162461bcd60e51b815260206004820152601260248201527f4d494e545f455843454544535f4c494d49540000000000000000000000000000604482015260640161071f565b60008311801561083e575060028311155b61087c5760405162461bcd60e51b815260206004820152600f60248201526e0829a9eaa9ca8bea89e9ebe90928e9608b1b604482015260640161071f565b3461088e846658d15e17628000612b61565b11156108cc5760405162461bcd60e51b815260206004820152600d60248201526c56414c55455f544f4f5f4c4f5760981b604482015260640161071f565b336000908152600d6020526040812080548592906108eb908490612b49565b909155506108fb90503384611a57565b505050565b60606002805461090f90612b80565b80601f016020809104026020016040519081016040528092919081815260200182805461093b90612b80565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b600061099f826001541190565b610a015760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161071f565b506000908152600660205260409020546001600160a01b031690565b6000546001600160a01b03163314610a655760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff1615610aaa5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b600955565b6000610aba8261121a565b9050806001600160a01b0316836001600160a01b03161415610b295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161071f565b336001600160a01b0382161480610b455750610b4581336105ee565b610bb75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071f565b6108fb838383611a71565b6108fb838383611ada565b6000610bd8836112ba565b8210610c315760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161071f565b6000610c3c60015490565b905060008060005b83811015610ce6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c9757805192505b876001600160a01b0316836001600160a01b03161415610cd35786841415610cc5575093506106b892505050565b83610ccf81612bbb565b9450505b5080610cde81612bbb565b915050610c44565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161071f565b6000546001600160a01b03163314610d9d5760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b6000610dab6103e847612bec565b905060007391b26fffffb325e13f1ef592b0933696098044af610dcf836078612b61565b604051600081818185875af1925050503d8060008114610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b509091506000905073672ac43c28ce763bea39bb8e195db036c72209ee610e388460c8612b61565b604051600081818185875af1925050503d8060008114610e74576040519150601f19603f3d011682016040523d82523d6000602084013e610e79565b606091505b509091506000905073f82e94445fed2f74a272c97da8b2efa9003b7d13610ea18560f0612b61565b604051600081818185875af1925050503d8060008114610edd576040519150601f19603f3d011682016040523d82523d6000602084013e610ee2565b606091505b5090915060009050734cc3eb54b3ff22ffa1257453ca5d6b5d027ffffa610f0a8660f0612b61565b604051600081818185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b50909150600090507343b7751ce391c80c255141fd50fc41288374d36d610f73876032612b61565b604051600081818185875af1925050503d8060008114610faf576040519150601f19603f3d011682016040523d82523d6000602084013e610fb4565b606091505b509091506000905073317d367663edd9612fbff00899f356f0e556380a610fdc88604b612b61565b604051600081818185875af1925050503d8060008114611018576040519150601f19603f3d011682016040523d82523d6000602084013e61101d565b606091505b509091506000905073dd9a6283d8fb41afcdcf29bf2884c9d3b9245cc7611045896032612b61565b604051600081818185875af1925050503d8060008114611081576040519150601f19603f3d011682016040523d82523d6000602084013e611086565b606091505b509091506000905073317b3a38c520228ab3b9a6c70d5161530af9dd406110ae8a6019612b61565b604051600081818185875af1925050503d80600081146110ea576040519150601f19603f3d011682016040523d82523d6000602084013e6110ef565b606091505b505050505050505050505050565b6108fb838383604051806020016040528060008152506117ba565b600061112360015490565b821061117d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161071f565b5090565b6000546001600160a01b031633146111c95760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff161561120e5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b6108fb600b83836126da565b600061122582611e6d565b5192915050565b600b805461123990612b80565b80601f016020809104026020016040519081016040528092919081815260200182805461126590612b80565b80156112b25780601f10611287576101008083540402835291602001916112b2565b820191906000526020600020905b81548152906001019060200180831161129557829003601f168201915b505050505081565b60006001600160a01b0382166113265760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161071f565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113935760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b61139d6000612025565b565b6000546001600160a01b031633146113e75760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600a55565b60606003805461090f90612b80565b6000546001600160a01b031633146114435760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c805460ff19166001179055565b6000546001600160a01b0316331461149a5760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b600c5460ff16156114df5760405162461bcd60e51b815260206004820152600f60248201526e135155105110551057d313d0d2d151608a1b604482015260640161071f565b611964826114ec60015490565b6114f69190612b49565b11156115445760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c5900000000000000604482015260640161071f565b61154e8183611a57565b5050565b6119648161155f60015490565b6115699190612b49565b11156115b75760405162461bcd60e51b815260206004820152601960248201527f4d494e545f455843454544535f544f54414c5f535550504c5900000000000000604482015260640161071f565b6009546002146115fa5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b604482015260640161071f565b60008111801561160b5750600a8111155b6116495760405162461bcd60e51b815260206004820152600f60248201526e0829a9eaa9ca8bea89e9ebe90928e9608b1b604482015260640161071f565b3461165b826658d15e17628000612b61565b11156116995760405162461bcd60e51b815260206004820152600d60248201526c56414c55455f544f4f5f4c4f5760981b604482015260640161071f565b3233146116e85760405162461bcd60e51b815260206004820152601460248201527f53454e4445525f49535f4e4f545f414e5f454f41000000000000000000000000604482015260640161071f565b6116f23382611a57565b50565b6001600160a01b03821633141561174e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117c5848484611ada565b6117d184848484612082565b6118395760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b50505050565b606061184c826001541190565b6118be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161071f565b60006118c86121cc565b905060008151116118e85760405180602001604052806000815250611913565b806118f2846121db565b604051602001611903929190612c00565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146119625760405162461bcd60e51b81526020600482018190526024820152600080516020612d2b833981519152604482015260640161071f565b6001600160a01b0381166119c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b6116f281612025565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050611a4f600a54828686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509294939250506122f19050565b949350505050565b61154e828260405180602001604052806000815250612307565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ae582611e6d565b80519091506000906001600160a01b0316336001600160a01b03161480611b1c575033611b1184610992565b6001600160a01b0316145b80611b2e57508151611b2e90336105ee565b905080611ba35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161071f565b846001600160a01b031682600001516001600160a01b031614611c175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161071f565b6001600160a01b038416611c7b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071f565b611c8b6000848460000151611a71565b6001600160a01b0385166000908152600560205260408120805460019290611cbd9084906001600160801b0316612c2f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611d0991859116612c57565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d91846001612b49565b6000818152600460205260409020549091506001600160a01b0316611e2357611dbb816001541190565b15611e235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611e8c826001541190565b611eeb5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161071f565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611f4c57611f3e7f000000000000000000000000000000000000000000000000000000000000000a84612c79565b611f49906001612b49565b90505b825b818110611fb6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611fa357949350505050565b5080611fae81612c90565b915050611f4e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606482015260840161071f565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156121c157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120c6903390899088908890600401612ca7565b6020604051808303816000875af1925050508015612101575060408051601f3d908101601f191682019092526120fe91810190612ce3565b60015b6121a7573d80801561212f576040519150601f19603f3d011682016040523d82523d6000602084013e612134565b606091505b50805161219f5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4f565b506001949350505050565b6060600b805461090f90612b80565b6060816121ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612229578061221381612bbb565b91506122229050600a83612bec565b9150612203565b60008167ffffffffffffffff81111561224457612244612a17565b6040519080825280601f01601f19166020018201604052801561226e576020820181803683370190505b5090505b8415611a4f57612283600183612c79565b9150612290600a86612d00565b61229b906030612b49565b60f81b8183815181106122b0576122b0612d14565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122ea600a86612bec565b9450612272565b6000826122fe858461262e565b14949350505050565b6001546001600160a01b03841661236a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071f565b612375816001541190565b156123c25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161071f565b7f000000000000000000000000000000000000000000000000000000000000000a83111561243d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161071f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612499908790612c57565b6001600160801b031681526020018583602001516124b79190612c57565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126235760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461259b6000888488612082565b6126035760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840161071f565b8161260d81612bbb565b925050808061261b90612bbb565b91505061254e565b506001819055611e65565b600081815b84518110156126d257600085828151811061265057612650612d14565b602002602001015190508083116126925760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506126bf565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806126ca81612bbb565b915050612633565b509392505050565b8280546126e690612b80565b90600052602060002090601f016020900481019282612708576000855561274e565b82601f106127215782800160ff1982351617855561274e565b8280016001018555821561274e579182015b8281111561274e578235825591602001919060010190612733565b5061117d9291505b8082111561117d5760008155600101612756565b6001600160e01b0319811681146116f257600080fd5b60006020828403121561279257600080fd5b81356119138161276a565b6000806000604084860312156127b257600080fd5b83359250602084013567ffffffffffffffff808211156127d157600080fd5b818601915086601f8301126127e557600080fd5b8135818111156127f457600080fd5b8760208260051b850101111561280957600080fd5b6020830194508093505050509250925092565b60005b8381101561283757818101518382015260200161281f565b838111156118395750506000910152565b6000815180845261286081602086016020860161281c565b601f01601f19169290920160200192915050565b6020815260006119136020830184612848565b60006020828403121561289957600080fd5b5035919050565b80356001600160a01b03811681146128b757600080fd5b919050565b600080604083850312156128cf57600080fd5b6128d8836128a0565b946020939093013593505050565b6000806000606084860312156128fb57600080fd5b612904846128a0565b9250612912602085016128a0565b9150604084013590509250925092565b6000806020838503121561293557600080fd5b823567ffffffffffffffff8082111561294d57600080fd5b818501915085601f83011261296157600080fd5b81358181111561297057600080fd5b86602082850101111561298257600080fd5b60209290920196919550909350505050565b6000602082840312156129a657600080fd5b611913826128a0565b600080604083850312156129c257600080fd5b823591506129d2602084016128a0565b90509250929050565b600080604083850312156129ee57600080fd5b6129f7836128a0565b915060208301358015158114612a0c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612a4357600080fd5b612a4c856128a0565b9350612a5a602086016128a0565b925060408501359150606085013567ffffffffffffffff80821115612a7e57600080fd5b818701915087601f830112612a9257600080fd5b813581811115612aa457612aa4612a17565b604051601f8201601f19908116603f01168101908382118183101715612acc57612acc612a17565b816040528281528a6020848701011115612ae557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612b1c57600080fd5b612b25836128a0565b91506129d2602084016128a0565b634e487b7160e01b600052601160045260246000fd5b60008219821115612b5c57612b5c612b33565b500190565b6000816000190483118215151615612b7b57612b7b612b33565b500290565b600181811c90821680612b9457607f821691505b60208210811415612bb557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bcf57612bcf612b33565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bfb57612bfb612bd6565b500490565b60008351612c1281846020880161281c565b835190830190612c2681836020880161281c565b01949350505050565b60006001600160801b0383811690831681811015612c4f57612c4f612b33565b039392505050565b60006001600160801b03808316818516808303821115612c2657612c26612b33565b600082821015612c8b57612c8b612b33565b500390565b600081612c9f57612c9f612b33565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612cd96080830184612848565b9695505050505050565b600060208284031215612cf557600080fd5b81516119138161276a565b600082612d0f57612d0f612bd6565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207ada231a656f77a9740c2301e860c1b83c69858472390f76ce5a3bbe3c39167764736f6c634300080b0033

Deployed Bytecode Sourcemap

211:4165:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4114:358:11;;;;;;;;;;-1:-1:-1;4114:358:11;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;4114:358:11;;;;;;;;2155:640:12;;;;;;:::i;:::-;;:::i;:::-;;5778:92:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7243:200::-;;;;;;;;;;-1:-1:-1;7243:200:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2380:55:13;;;2362:74;;2350:2;2335:18;7243:200:11;2216:226:13;1478:104:12;;;;;;;;;;-1:-1:-1;1478:104:12;;;;;:::i;:::-;;:::i;6821:369:11:-;;;;;;;;;;-1:-1:-1;6821:369:11;;;;;:::i;:::-;;:::i;2720:92::-;;;;;;;;;;-1:-1:-1;2795:12:11;;2720:92;;;3053:25:13;;;3041:2;3026:18;2720:92:11;2907:177:13;8061:136:11;;;;;;;;;;-1:-1:-1;8061:136:11;;;;;:::i;:::-;;:::i;595:25:12:-;;;;;;;;;;;;;;;;3334:721:11;;;;;;;;;;-1:-1:-1;3334:721:11;;;;;:::i;:::-;;:::i;298:41:12:-;;;;;;;;;;;;335:4;298:41;;3314:1059;;;;;;;;;;;;;:::i;8255:151:11:-;;;;;;;;;;-1:-1:-1;8255:151:11;;;;;:::i;:::-;;:::i;2876:174::-;;;;;;;;;;-1:-1:-1;2876:174:11;;;;;:::i;:::-;;:::i;1245:109:12:-;;;;;;;;;;-1:-1:-1;1245:109:12;;;;;:::i;:::-;;:::i;563:23::-;;;;;;;;;;;;;;;;5608:116:11;;;;;;;;;;-1:-1:-1;5608:116:11;;;;;:::i;:::-;;:::i;655:26:12:-;;;;;;;;;;-1:-1:-1;655:26:12;;;;;;;;627:21;;;;;;;;;;;;;:::i;4523:208:11:-;;;;;;;;;;-1:-1:-1;4523:208:11;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1590:92:12:-;;;;;;;;;;-1:-1:-1;1590:92:12;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;5926:96:11;;;;;;;;;;;;;:::i;1154:83:12:-;;;;;;;;;;;;;:::i;2803:211::-;;;;;;;;;;-1:-1:-1;2803:211:12;;;;;:::i;:::-;;:::i;1690:457::-;;;;;;:::i;:::-;;:::i;7502:269:11:-;;;;;;;;;;-1:-1:-1;7502:269:11;;;;;:::i;:::-;;:::i;8464:300::-;;;;;;;;;;-1:-1:-1;8464:300:11;;;;;:::i;:::-;;:::i;346:46:12:-;;;;;;;;;;;;390:2;346:46;;454:48;;;;;;;;;;;;491:11;454:48;;6080:377:11;;;;;;;;;;-1:-1:-1;6080:377:11;;;;;:::i;:::-;;:::i;12734:43::-;;;;;;;;;;;;;;;;7829:178;;;;;;;;;;-1:-1:-1;7829:178:11;;;;;:::i;:::-;-1:-1:-1;;;;;7967:25:11;;;7946:4;7967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7829:178;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;399:46:12:-;;;;;;;;;;;;444:1;399:46;;4114:358:11;4236:4;-1:-1:-1;;;;;;4263:40:11;;-1:-1:-1;;;4263:40:11;;:98;;-1:-1:-1;;;;;;;4313:48:11;;-1:-1:-1;;;4313:48:11;4263:98;:158;;;-1:-1:-1;;;;;;;4371:50:11;;-1:-1:-1;;;4371:50:11;4263:158;:204;;;-1:-1:-1;;;;;;;;;;937:40:9;;;4431:36:11;4250:217;4114:358;-1:-1:-1;;4114:358:11:o;2155:640:12:-;335:4;2274:7;2258:13;2795:12:11;;;2720:92;2258:13:12;:23;;;;:::i;:::-;:37;;2250:75;;;;-1:-1:-1;;;2250:75:12;;7195:2:13;2250:75:12;;;7177:21:13;7234:2;7214:18;;;7207:30;7273:27;7253:18;;;7246:55;7318:18;;2250:75:12;;;;;;;;;2346:8;;2358:1;2346:13;2338:40;;;;-1:-1:-1;;;2338:40:12;;7549:2:13;2338:40:12;;;7531:21:13;7588:2;7568:18;;;7561:30;-1:-1:-1;;;7607:18:13;;;7600:44;7661:18;;2338:40:12;7347:338:13;2338:40:12;2397:19;2409:6;;2397:11;:19::i;:::-;2389:52;;;;-1:-1:-1;;;2389:52:12;;7892:2:13;2389:52:12;;;7874:21:13;7931:2;7911:18;;;7904:30;7970:22;7950:18;;;7943:50;8010:18;;2389:52:12;7690:344:13;2389:52:12;2475:10;2460:26;;;;:14;:26;;;;;;444:1;;2460:36;;2489:7;;2460:36;:::i;:::-;:58;;2452:89;;;;-1:-1:-1;;;2452:89:12;;8241:2:13;2452:89:12;;;8223:21:13;8280:2;8260:18;;;8253:30;8319:20;8299:18;;;8292:48;8357:18;;2452:89:12;8039:342:13;2452:89:12;2570:1;2560:7;:11;:44;;;;;444:1;2575:7;:29;;2560:44;2552:72;;;;-1:-1:-1;;;2552:72:12;;8588:2:13;2552:72:12;;;8570:21:13;8627:2;8607:18;;;8600:30;-1:-1:-1;;;8646:18:13;;;8639:45;8701:18;;2552:72:12;8386:339:13;2552:72:12;2667:9;2643:20;2656:7;491:11;2643:20;:::i;:::-;:33;;2635:59;;;;-1:-1:-1;;;2635:59:12;;9105:2:13;2635:59:12;;;9087:21:13;9144:2;9124:18;;;9117:30;-1:-1:-1;;;9163:18:13;;;9156:43;9216:18;;2635:59:12;8903:337:13;2635:59:12;2722:10;2707:26;;;;:14;:26;;;;;:37;;2737:7;;2707:26;:37;;2737:7;;2707:37;:::i;:::-;;;;-1:-1:-1;2757:30:12;;-1:-1:-1;2767:10:12;2779:7;2757:9;:30::i;:::-;2155:640;;;:::o;5778:92:11:-;5832:13;5860:5;5853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5778:92;:::o;7243:200::-;7311:7;7334:16;7342:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;7334:16;7326:74;;;;-1:-1:-1;;;7326:74:11;;9832:2:13;7326:74:11;;;9814:21:13;9871:2;9851:18;;;9844:30;9910:34;9890:18;;;9883:62;-1:-1:-1;;;9961:18:13;;;9954:43;10014:19;;7326:74:11;9630:409:13;7326:74:11;-1:-1:-1;7414:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;7414:24:11;;7243:200::o;1478:104:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;885:14:12::1;::::0;::::1;;884:15;876:43;;;::::0;-1:-1:-1;;;876:43:12;;10607:2:13;876:43:12::1;::::0;::::1;10589:21:13::0;10646:2;10626:18;;;10619:30;-1:-1:-1;;;10665:18:13;;;10658:45;10720:18;;876:43:12::1;10405:339:13::0;876:43:12::1;1558:8:::2;:16:::0;1478:104::o;6821:369:11:-;6889:13;6905:24;6921:7;6905:15;:24::i;:::-;6889:40;;6949:5;-1:-1:-1;;;;;6943:11:11;:2;-1:-1:-1;;;;;6943:11:11;;;6935:58;;;;-1:-1:-1;;;6935:58:11;;10951:2:13;6935:58:11;;;10933:21:13;10990:2;10970:18;;;10963:30;11029:34;11009:18;;;11002:62;-1:-1:-1;;;11080:18:13;;;11073:32;11122:19;;6935:58:11;10749:398:13;6935:58:11;719:10:6;-1:-1:-1;;;;;7015:21:11;;;;:62;;-1:-1:-1;7040:37:11;7057:5;719:10:6;7829:178:11;:::i;7040:37::-;7000:150;;;;-1:-1:-1;;;7000:150:11;;11354:2:13;7000:150:11;;;11336:21:13;11393:2;11373:18;;;11366:30;11432:34;11412:18;;;11405:62;11503:27;11483:18;;;11476:55;11548:19;;7000:150:11;11152:421:13;7000:150:11;7157:28;7166:2;7170:7;7179:5;7157:8;:28::i;8061:136::-;8164:28;8174:4;8180:2;8184:7;8164:9;:28::i;3334:721::-;3439:7;3472:16;3482:5;3472:9;:16::i;:::-;3464:5;:24;3456:71;;;;-1:-1:-1;;;3456:71:11;;11780:2:13;3456:71:11;;;11762:21:13;11819:2;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;-1:-1:-1;;;11909:18:13;;;11902:32;11951:19;;3456:71:11;11578:398:13;3456:71:11;3533:22;3558:13;2795:12;;;2720:92;3558:13;3533:38;;3577:19;3606:25;3655:9;3650:339;3674:14;3670:1;:18;3650:339;;;3703:31;3737:14;;;:11;:14;;;;;;;;;3703:48;;;;;;;;;-1:-1:-1;;;;;3703:48:11;;;;;-1:-1:-1;;;3703:48:11;;;;;;;;;;;;3763:28;3759:87;;3823:14;;;-1:-1:-1;3759:87:11;3878:5;-1:-1:-1;;;;;3857:26:11;:17;-1:-1:-1;;;;;3857:26:11;;3853:130;;;3914:5;3899:11;:20;3895:57;;;-1:-1:-1;3940:1:11;-1:-1:-1;3933:8:11;;-1:-1:-1;;;3933:8:11;3895:57;3961:13;;;;:::i;:::-;;;;3853:130;-1:-1:-1;3690:3:11;;;;:::i;:::-;;;;3650:339;;;-1:-1:-1;3994:56:11;;-1:-1:-1;;;3994:56:11;;12323:2:13;3994:56:11;;;12305:21:13;12362:2;12342:18;;;12335:30;12401:34;12381:18;;;12374:62;12472:16;12452:18;;;12445:44;12506:19;;3994:56:11;12121:410:13;3314:1059:12;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;3364:23:12::1;3390:28;3414:4;3390:21;:28;:::i;:::-;3364:54:::0;-1:-1:-1;3432:9:12::1;3454:42;3510:21;3364:54:::0;3528:3:::1;3510:21;:::i;:::-;3446:90;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;3431:105:12;;-1:-1:-1;3548:10:12::1;::::0;-1:-1:-1;3571:42:12::1;3627:21;:15:::0;3645:3:::1;3627:21;:::i;:::-;3563:90;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;3547:106:12;;-1:-1:-1;3665:12:12::1;::::0;-1:-1:-1;3690:42:12::1;3746:21;:15:::0;3764:3:::1;3746:21;:::i;:::-;3682:90;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;3664:108:12;;-1:-1:-1;3784:12:12::1;::::0;-1:-1:-1;3809:42:12::1;3865:21;:15:::0;3883:3:::1;3865:21;:::i;:::-;3801:90;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;3783:108:12;;-1:-1:-1;3903:14:12::1;::::0;-1:-1:-1;3930:42:12::1;3986:20;:15:::0;4004:2:::1;3986:20;:::i;:::-;3922:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;3902:109:12;;-1:-1:-1;4023:13:12::1;::::0;-1:-1:-1;4049:42:12::1;4105:20;:15:::0;4123:2:::1;4105:20;:::i;:::-;4041:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;4022:108:12;;-1:-1:-1;4142:9:12::1;::::0;-1:-1:-1;4164:42:12::1;4220:20;:15:::0;4238:2:::1;4220:20;:::i;:::-;4156:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;4141:104:12;;-1:-1:-1;4257:14:12::1;::::0;-1:-1:-1;4284:42:12::1;4340:20;:15:::0;4358:2:::1;4340:20;:::i;:::-;4276:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;;;;;;3314:1059:12:o;8255:151:11:-;8362:39;8379:4;8385:2;8389:7;8362:39;;;;;;;;;;;;:16;:39::i;2876:174::-;2943:7;2974:13;2795:12;;;2720:92;2974:13;2966:5;:21;2958:69;;;;-1:-1:-1;;;2958:69:11;;13205:2:13;2958:69:11;;;13187:21:13;13244:2;13224:18;;;13217:30;13283:34;13263:18;;;13256:62;-1:-1:-1;;;13334:18:13;;;13327:33;13377:19;;2958:69:11;13003:399:13;2958:69:11;-1:-1:-1;3040:5:11;2876:174::o;1245:109:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;885:14:12::1;::::0;::::1;;884:15;876:43;;;::::0;-1:-1:-1;;;876:43:12;;10607:2:13;876:43:12::1;::::0;::::1;10589:21:13::0;10646:2;10626:18;;;10619:30;-1:-1:-1;;;10665:18:13;;;10658:45;10720:18;;876:43:12::1;10405:339:13::0;876:43:12::1;1331:15:::2;:7;1341:5:::0;;1331:15:::2;:::i;5608:116:11:-:0;5672:7;5694:20;5706:7;5694:11;:20::i;:::-;:25;;5608:116;-1:-1:-1;;5608:116:11:o;627:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4523:208:11:-;4587:7;-1:-1:-1;;;;;4610:19:11;;4602:75;;;;-1:-1:-1;;;4602:75:11;;13609:2:13;4602:75:11;;;13591:21:13;13648:2;13628:18;;;13621:30;13687:34;13667:18;;;13660:62;-1:-1:-1;;;13738:18:13;;;13731:41;13789:19;;4602:75:11;13407:407:13;4602:75:11;-1:-1:-1;;;;;;4698:19:11;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4698:27:11;;4523:208::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1590:92:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;1657:10:12::1;:17:::0;1590:92::o;5926:96:11:-;5982:13;6010:7;6003:14;;;;;:::i;1154:83:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;1208:14:12::1;:21:::0;;-1:-1:-1;;1208:21:12::1;1225:4;1208:21;::::0;;1154:83::o;2803:211::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;885:14:12::1;::::0;::::1;;884:15;876:43;;;::::0;-1:-1:-1;;;876:43:12;;10607:2:13;876:43:12::1;::::0;::::1;10589:21:13::0;10646:2;10626:18;;;10619:30;-1:-1:-1;;;10665:18:13;;;10658:45;10720:18;;876:43:12::1;10405:339:13::0;876:43:12::1;335:4:::2;2919:7;2903:13;2795:12:11::0;;;2720:92;2903:13:12::2;:23;;;;:::i;:::-;:37;;2895:75;;;::::0;-1:-1:-1;;;2895:75:12;;7195:2:13;2895:75:12::2;::::0;::::2;7177:21:13::0;7234:2;7214:18;;;7207:30;7273:27;7253:18;;;7246:55;7318:18;;2895:75:12::2;6993:349:13::0;2895:75:12::2;2983:23;2993:3;2998:7;2983:9;:23::i;:::-;2803:211:::0;;:::o;1690:457::-;335:4;1773:7;1757:13;2795:12:11;;;2720:92;1757:13:12;:23;;;;:::i;:::-;:37;;1749:75;;;;-1:-1:-1;;;1749:75:12;;7195:2:13;1749:75:12;;;7177:21:13;7234:2;7214:18;;;7207:30;7273:27;7253:18;;;7246:55;7318:18;;1749:75:12;6993:349:13;1749:75:12;1845:8;;1857:1;1845:13;1837:40;;;;-1:-1:-1;;;1837:40:12;;7549:2:13;1837:40:12;;;7531:21:13;7588:2;7568:18;;;7561:30;-1:-1:-1;;;7607:18:13;;;7600:44;7661:18;;1837:40:12;7347:338:13;1837:40:12;1906:1;1896:7;:11;:43;;;;;390:2;1911:7;:28;;1896:43;1888:71;;;;-1:-1:-1;;;1888:71:12;;8588:2:13;1888:71:12;;;8570:21:13;8627:2;8607:18;;;8600:30;-1:-1:-1;;;8646:18:13;;;8639:45;8701:18;;1888:71:12;8386:339:13;1888:71:12;2002:9;1978:20;1991:7;491:11;1978:20;:::i;:::-;:33;;1970:59;;;;-1:-1:-1;;;1970:59:12;;9105:2:13;1970:59:12;;;9087:21:13;9144:2;9124:18;;;9117:30;-1:-1:-1;;;9163:18:13;;;9156:43;9216:18;;1970:59:12;8903:337:13;1970:59:12;2048:9;2061:10;2048:23;2040:56;;;;-1:-1:-1;;;2040:56:12;;14021:2:13;2040:56:12;;;14003:21:13;14060:2;14040:18;;;14033:30;14099:22;14079:18;;;14072:50;14139:18;;2040:56:12;13819:344:13;2040:56:12;2109:30;2119:10;2131:7;2109:9;:30::i;:::-;1690:457;:::o;7502:269:11:-;-1:-1:-1;;;;;7592:24:11;;719:10:6;7592:24:11;;7584:63;;;;-1:-1:-1;;;7584:63:11;;14370:2:13;7584:63:11;;;14352:21:13;14409:2;14389:18;;;14382:30;14448:28;14428:18;;;14421:56;14494:18;;7584:63:11;14168:350:13;7584:63:11;719:10:6;7654:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7654:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;7654:53:11;;;;;;;;;;7718:48;;540:41:13;;;7654:42:11;;719:10:6;7718:48:11;;513:18:13;7718:48:11;;;;;;;7502:269;;:::o;8464:300::-;8595:28;8605:4;8611:2;8615:7;8595:9;:28::i;:::-;8644:48;8667:4;8673:2;8677:7;8686:5;8644:22;:48::i;:::-;8629:130;;;;-1:-1:-1;;;8629:130:11;;14725:2:13;8629:130:11;;;14707:21:13;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;-1:-1:-1;;;14854:18:13;;;14847:49;14913:19;;8629:130:11;14523:415:13;8629:130:11;8464:300;;;;:::o;6080:377::-;6173:13;6211:16;6219:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;6211:16;6196:94;;;;-1:-1:-1;;;6196:94:11;;15145:2:13;6196:94:11;;;15127:21:13;15184:2;15164:18;;;15157:30;15223:34;15203:18;;;15196:62;15294:17;15274:18;;;15267:45;15329:19;;6196:94:11;14943:411:13;6196:94:11;6297:21;6321:10;:8;:10::i;:::-;6297:34;;6374:1;6356:7;6350:21;:25;:102;;;;;;;;;;;;;;;;;6410:7;6419:18;:7;:16;:18::i;:::-;6393:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6350:102;6337:115;6080:377;-1:-1:-1;;;6080:377:11:o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;10246:2:13;1240:68:0;;;10228:21:13;;;10265:18;;;10258:30;-1:-1:-1;;;;;;;;;;;10304:18:13;;;10297:62;10376:18;;1240:68:0;10044:356:13;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;16036:2:13;1998:73:0::1;::::0;::::1;16018:21:13::0;16075:2;16055:18;;;16048:30;16114:34;16094:18;;;16087:62;-1:-1:-1;;;16165:18:13;;;16158:36;16211:19;;1998:73:0::1;15834:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;947:199:12:-:0;1060:28;;-1:-1:-1;;1077:10:12;16390:2:13;16386:15;16382:53;1060:28:12;;;16370:66:13;1018:4:12;;;;16452:12:13;;1060:28:12;;;;;;;;;;;;1050:39;;;;;;1035:54;;1107:31;1121:10;;1133:4;1107:6;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1107:13:12;;:31;;-1:-1:-1;;1107:13:12;:31;-1:-1:-1;1107:31:12:i;:::-;1100:38;947:199;-1:-1:-1;;;;947:199:12:o;9101:96:11:-;9165:27;9175:2;9179:8;9165:27;;;;;;;;;;;;:9;:27::i;12565:165::-;12657:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;12657:29:11;-1:-1:-1;;;;;12657:29:11;;;;;;;;;12697:28;;12657:24;;12697:28;;;;;;;12565:165;;;:::o;10982:1484::-;11074:35;11112:20;11124:7;11112:11;:20::i;:::-;11181:18;;11074:58;;-1:-1:-1;11139:22:11;;-1:-1:-1;;;;;11165:34:11;719:10:6;-1:-1:-1;;;;;11165:34:11;;:80;;;-1:-1:-1;719:10:6;11209:20:11;11221:7;11209:11;:20::i;:::-;-1:-1:-1;;;;;11209:36:11;;11165:80;:140;;;-1:-1:-1;11272:18:11;;11255:50;;719:10:6;7829:178:11;:::i;11255:50::-;11139:167;;11328:17;11313:98;;;;-1:-1:-1;;;11313:98:11;;16677:2:13;11313:98:11;;;16659:21:13;16716:2;16696:18;;;16689:30;16755:34;16735:18;;;16728:62;16826:20;16806:18;;;16799:48;16864:19;;11313:98:11;16475:414:13;11313:98:11;11455:4;-1:-1:-1;;;;;11433:26:11;:13;:18;;;-1:-1:-1;;;;;11433:26:11;;11418:95;;;;-1:-1:-1;;;11418:95:11;;17096:2:13;11418:95:11;;;17078:21:13;17135:2;17115:18;;;17108:30;17174:34;17154:18;;;17147:62;-1:-1:-1;;;17225:18:13;;;17218:36;17271:19;;11418:95:11;16894:402:13;11418:95:11;-1:-1:-1;;;;;11527:16:11;;11519:66;;;;-1:-1:-1;;;11519:66:11;;17503:2:13;11519:66:11;;;17485:21:13;17542:2;17522:18;;;17515:30;17581:34;17561:18;;;17554:62;-1:-1:-1;;;17632:18:13;;;17625:35;17677:19;;11519:66:11;17301:401:13;11519:66:11;11689:49;11706:1;11710:7;11719:13;:18;;;11689:8;:49::i;:::-;-1:-1:-1;;;;;11745:18:11;;;;;;:12;:18;;;;;:31;;11775:1;;11745:18;:31;;11775:1;;-1:-1:-1;;;;;11745:31:11;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11745:31:11;;;;;;;;;;;;;;;-1:-1:-1;;;;;11782:16:11;;-1:-1:-1;11782:16:11;;;:12;:16;;;;;:29;;-1:-1:-1;;;11782:16:11;;:29;;-1:-1:-1;;11782:29:11;;:::i;:::-;;;-1:-1:-1;;;;;11782:29:11;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11840:43:11;;;;;;;;-1:-1:-1;;;;;11840:43:11;;;;;;11866:15;11840:43;;;;;;;;;-1:-1:-1;11817:20:11;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11817:66:11;-1:-1:-1;;;;;;11817:66:11;;;;;;;;;;;12129:11;11829:7;-1:-1:-1;12129:11:11;:::i;:::-;12191:1;12150:24;;;:11;:24;;;;;:29;12107:33;;-1:-1:-1;;;;;;12150:29:11;12146:229;;12207:20;12215:11;9080:12;;-1:-1:-1;9070:22:11;8994:103;12207:20;12203:166;;;12266:94;;;;;;;;12292:18;;-1:-1:-1;;;;;12266:94:11;;;;;;12322:28;;;;12266:94;;;;;;;;;;-1:-1:-1;12239:24:11;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;12239:121:11;-1:-1:-1;;;;;;12239:121:11;;;;;;;;;;;;12203:166;12405:7;12401:2;-1:-1:-1;;;;;12386:27:11;12395:4;-1:-1:-1;;;;;12386:27:11;;;;;;;;;;;12419:42;11068:1398;;;10982:1484;;;:::o;4973:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;5085:16:11;5093:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;5085:16;5077:71;;;;-1:-1:-1;;;5077:71:11;;18418:2:13;5077:71:11;;;18400:21:13;18457:2;18437:18;;;18430:30;18496:34;18476:18;;;18469:62;-1:-1:-1;;;18547:18:13;;;18540:40;18597:19;;5077:71:11;18216:406:13;5077:71:11;5155:26;5202:12;5191:7;:23;5187:91;;5245:22;5255:12;5245:7;:22;:::i;:::-;:26;;5270:1;5245:26;:::i;:::-;5224:47;;5187:91;5304:7;5284:207;5321:18;5313:4;:26;5284:207;;5357:31;5391:17;;;:11;:17;;;;;;;;;5357:51;;;;;;;;;-1:-1:-1;;;;;5357:51:11;;;;;-1:-1:-1;;;5357:51:11;;;;;;;;;;;;5420:28;5416:69;;5467:9;4973:586;-1:-1:-1;;;;4973:586:11:o;5416:69::-;-1:-1:-1;5341:6:11;;;;:::i;:::-;;;;5284:207;;;-1:-1:-1;5497:57:11;;-1:-1:-1;;;5497:57:11;;19100:2:13;5497:57:11;;;19082:21:13;19139:2;19119:18;;;19112:30;19178:34;19158:18;;;19151:62;19249:17;19229:18;;;19222:45;19284:19;;5497:57:11;18898:411:13;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;14235:667:11:-;14367:4;-1:-1:-1;;;;;14383:13:11;;1087:20:5;1133:8;14379:519:11;;14420:72;;-1:-1:-1;;;14420:72:11;;-1:-1:-1;;;;;14420:36:11;;;;;:72;;719:10:6;;14471:4:11;;14477:7;;14486:5;;14420:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14420:72:11;;;;;;;;-1:-1:-1;;14420:72:11;;;;;;;;;;;;:::i;:::-;;;14408:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14647:13:11;;14643:209;;14679:61;;-1:-1:-1;;;14679:61:11;;14725:2:13;14679:61:11;;;14707:21:13;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;-1:-1:-1;;;14854:18:13;;;14847:49;14913:19;;14679:61:11;14523:415:13;14643:209:11;14822:6;14816:13;14807:6;14803:2;14799:15;14792:38;14408:452;-1:-1:-1;;;;;;14540:55:11;-1:-1:-1;;;14540:55:11;;-1:-1:-1;14533:62:11;;14379:519;-1:-1:-1;14887:4:11;14235:667;;;;;;:::o;1362:108:12:-;1422:13;1455:7;1448:14;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;847:184:8;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:8:o;9523:1239:11:-;9646:12;;-1:-1:-1;;;;;9672:16:11;;9664:62;;;;-1:-1:-1;;;9664:62:11;;20536:2:13;9664:62:11;;;20518:21:13;20575:2;20555:18;;;20548:30;20614:34;20594:18;;;20587:62;-1:-1:-1;;;20665:18:13;;;20658:31;20706:19;;9664:62:11;20334:397:13;9664:62:11;9861:21;9869:12;9080;;-1:-1:-1;9070:22:11;8994:103;9861:21;9860:22;9852:64;;;;-1:-1:-1;;;9852:64:11;;20938:2:13;9852:64:11;;;20920:21:13;20977:2;20957:18;;;20950:30;21016:31;20996:18;;;20989:59;21065:18;;9852:64:11;20736:353:13;9852:64:11;9942:12;9930:8;:24;;9922:71;;;;-1:-1:-1;;;9922:71:11;;21296:2:13;9922:71:11;;;21278:21:13;21335:2;21315:18;;;21308:30;21374:34;21354:18;;;21347:62;-1:-1:-1;;;21425:18:13;;;21418:32;21467:19;;9922:71:11;21094:398:13;9922:71:11;-1:-1:-1;;;;;10101:16:11;;10068:30;10101:16;;;:12;:16;;;;;;;;;10068:49;;;;;;;;;-1:-1:-1;;;;;10068:49:11;;;;;-1:-1:-1;;;10068:49:11;;;;;;;;;;;10142:116;;;;;;;;10161:19;;10068:49;;10142:116;;;10161:39;;10191:8;;10161:39;:::i;:::-;-1:-1:-1;;;;;10142:116:11;;;;;10243:8;10208:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10142:116:11;;;;;;-1:-1:-1;;;;;10123:16:11;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;10123:135:11;;;;;;;;;;;;10292:43;;;;;;;;;;;10318:15;10292:43;;;;;;;;10264:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10264:71:11;-1:-1:-1;;;;;;10264:71:11;;;;;;;;;;;;;;;;;;10276:12;;10384:274;10408:8;10404:1;:12;10384:274;;;10436:38;;10461:12;;-1:-1:-1;;;;;10436:38:11;;;10453:1;;10436:38;;10453:1;;10436:38;10499:59;10530:1;10534:2;10538:12;10552:5;10499:22;:59::i;:::-;10482:147;;;;-1:-1:-1;;;10482:147:11;;14725:2:13;10482:147:11;;;14707:21:13;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;-1:-1:-1;;;14854:18:13;;;14847:49;14913:19;;10482:147:11;14523:415:13;10482:147:11;10637:14;;;;:::i;:::-;;;;10418:3;;;;;:::i;:::-;;;;10384:274;;;-1:-1:-1;10664:12:11;:27;;;10697:60;8464:300;1383:688:8;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;21654:19:13;;;21689:12;;;21682:28;;;21726:12;;1779:44:8;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;21654:19:13;;;21689:12;;;21682:28;;;21726:12;;1966:44:8;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:8;;;;:::i;:::-;;;;1522:514;;;-1:-1:-1;2052:12:8;1383:688;-1:-1:-1;;;1383:688:8:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:683::-;687:6;695;703;756:2;744:9;735:7;731:23;727:32;724:52;;;772:1;769;762:12;724:52;808:9;795:23;785:33;;869:2;858:9;854:18;841:32;892:18;933:2;925:6;922:14;919:34;;;949:1;946;939:12;919:34;987:6;976:9;972:22;962:32;;1032:7;1025:4;1021:2;1017:13;1013:27;1003:55;;1054:1;1051;1044:12;1003:55;1094:2;1081:16;1120:2;1112:6;1109:14;1106:34;;;1136:1;1133;1126:12;1106:34;1189:7;1184:2;1174:6;1171:1;1167:14;1163:2;1159:23;1155:32;1152:45;1149:65;;;1210:1;1207;1200:12;1149:65;1241:2;1237;1233:11;1223:21;;1263:6;1253:16;;;;;592:683;;;;;:::o;1280:258::-;1352:1;1362:113;1376:6;1373:1;1370:13;1362:113;;;1452:11;;;1446:18;1433:11;;;1426:39;1398:2;1391:10;1362:113;;;1493:6;1490:1;1487:13;1484:48;;;-1:-1:-1;;1528:1:13;1510:16;;1503:27;1280:258::o;1543:::-;1585:3;1623:5;1617:12;1650:6;1645:3;1638:19;1666:63;1722:6;1715:4;1710:3;1706:14;1699:4;1692:5;1688:16;1666:63;:::i;:::-;1783:2;1762:15;-1:-1:-1;;1758:29:13;1749:39;;;;1790:4;1745:50;;1543:258;-1:-1:-1;;1543:258:13:o;1806:220::-;1955:2;1944:9;1937:21;1918:4;1975:45;2016:2;2005:9;2001:18;1993:6;1975:45;:::i;2031:180::-;2090:6;2143:2;2131:9;2122:7;2118:23;2114:32;2111:52;;;2159:1;2156;2149:12;2111:52;-1:-1:-1;2182:23:13;;2031:180;-1:-1:-1;2031:180:13:o;2447:196::-;2515:20;;-1:-1:-1;;;;;2564:54:13;;2554:65;;2544:93;;2633:1;2630;2623:12;2544:93;2447:196;;;:::o;2648:254::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2816:29;2835:9;2816:29;:::i;:::-;2806:39;2892:2;2877:18;;;;2864:32;;-1:-1:-1;;;2648:254:13:o;3089:328::-;3166:6;3174;3182;3235:2;3223:9;3214:7;3210:23;3206:32;3203:52;;;3251:1;3248;3241:12;3203:52;3274:29;3293:9;3274:29;:::i;:::-;3264:39;;3322:38;3356:2;3345:9;3341:18;3322:38;:::i;:::-;3312:48;;3407:2;3396:9;3392:18;3379:32;3369:42;;3089:328;;;;;:::o;3604:592::-;3675:6;3683;3736:2;3724:9;3715:7;3711:23;3707:32;3704:52;;;3752:1;3749;3742:12;3704:52;3792:9;3779:23;3821:18;3862:2;3854:6;3851:14;3848:34;;;3878:1;3875;3868:12;3848:34;3916:6;3905:9;3901:22;3891:32;;3961:7;3954:4;3950:2;3946:13;3942:27;3932:55;;3983:1;3980;3973:12;3932:55;4023:2;4010:16;4049:2;4041:6;4038:14;4035:34;;;4065:1;4062;4055:12;4035:34;4110:7;4105:2;4096:6;4092:2;4088:15;4084:24;4081:37;4078:57;;;4131:1;4128;4121:12;4078:57;4162:2;4154:11;;;;;4184:6;;-1:-1:-1;3604:592:13;;-1:-1:-1;;;;3604:592:13:o;4201:186::-;4260:6;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4352:29;4371:9;4352:29;:::i;4577:254::-;4645:6;4653;4706:2;4694:9;4685:7;4681:23;4677:32;4674:52;;;4722:1;4719;4712:12;4674:52;4758:9;4745:23;4735:33;;4787:38;4821:2;4810:9;4806:18;4787:38;:::i;:::-;4777:48;;4577:254;;;;;:::o;4836:347::-;4901:6;4909;4962:2;4950:9;4941:7;4937:23;4933:32;4930:52;;;4978:1;4975;4968:12;4930:52;5001:29;5020:9;5001:29;:::i;:::-;4991:39;;5080:2;5069:9;5065:18;5052:32;5127:5;5120:13;5113:21;5106:5;5103:32;5093:60;;5149:1;5146;5139:12;5093:60;5172:5;5162:15;;;4836:347;;;;;:::o;5188:127::-;5249:10;5244:3;5240:20;5237:1;5230:31;5280:4;5277:1;5270:15;5304:4;5301:1;5294:15;5320:1138;5415:6;5423;5431;5439;5492:3;5480:9;5471:7;5467:23;5463:33;5460:53;;;5509:1;5506;5499:12;5460:53;5532:29;5551:9;5532:29;:::i;:::-;5522:39;;5580:38;5614:2;5603:9;5599:18;5580:38;:::i;:::-;5570:48;;5665:2;5654:9;5650:18;5637:32;5627:42;;5720:2;5709:9;5705:18;5692:32;5743:18;5784:2;5776:6;5773:14;5770:34;;;5800:1;5797;5790:12;5770:34;5838:6;5827:9;5823:22;5813:32;;5883:7;5876:4;5872:2;5868:13;5864:27;5854:55;;5905:1;5902;5895:12;5854:55;5941:2;5928:16;5963:2;5959;5956:10;5953:36;;;5969:18;;:::i;:::-;6044:2;6038:9;6012:2;6098:13;;-1:-1:-1;;6094:22:13;;;6118:2;6090:31;6086:40;6074:53;;;6142:18;;;6162:22;;;6139:46;6136:72;;;6188:18;;:::i;:::-;6228:10;6224:2;6217:22;6263:2;6255:6;6248:18;6303:7;6298:2;6293;6289;6285:11;6281:20;6278:33;6275:53;;;6324:1;6321;6314:12;6275:53;6380:2;6375;6371;6367:11;6362:2;6354:6;6350:15;6337:46;6425:1;6420:2;6415;6407:6;6403:15;6399:24;6392:35;6446:6;6436:16;;;;;;;5320:1138;;;;;;;:::o;6463:260::-;6531:6;6539;6592:2;6580:9;6571:7;6567:23;6563:32;6560:52;;;6608:1;6605;6598:12;6560:52;6631:29;6650:9;6631:29;:::i;:::-;6621:39;;6679:38;6713:2;6702:9;6698:18;6679:38;:::i;6728:127::-;6789:10;6784:3;6780:20;6777:1;6770:31;6820:4;6817:1;6810:15;6844:4;6841:1;6834:15;6860:128;6900:3;6931:1;6927:6;6924:1;6921:13;6918:39;;;6937:18;;:::i;:::-;-1:-1:-1;6973:9:13;;6860:128::o;8730:168::-;8770:7;8836:1;8832;8828:6;8824:14;8821:1;8818:21;8813:1;8806:9;8799:17;8795:45;8792:71;;;8843:18;;:::i;:::-;-1:-1:-1;8883:9:13;;8730:168::o;9245:380::-;9324:1;9320:12;;;;9367;;;9388:61;;9442:4;9434:6;9430:17;9420:27;;9388:61;9495:2;9487:6;9484:14;9464:18;9461:38;9458:161;;;9541:10;9536:3;9532:20;9529:1;9522:31;9576:4;9573:1;9566:15;9604:4;9601:1;9594:15;9458:161;;9245:380;;;:::o;11981:135::-;12020:3;-1:-1:-1;;12041:17:13;;12038:43;;;12061:18;;:::i;:::-;-1:-1:-1;12108:1:13;12097:13;;11981:135::o;12536:127::-;12597:10;12592:3;12588:20;12585:1;12578:31;12628:4;12625:1;12618:15;12652:4;12649:1;12642:15;12668:120;12708:1;12734;12724:35;;12739:18;;:::i;:::-;-1:-1:-1;12773:9:13;;12668:120::o;15359:470::-;15538:3;15576:6;15570:13;15592:53;15638:6;15633:3;15626:4;15618:6;15614:17;15592:53;:::i;:::-;15708:13;;15667:16;;;;15730:57;15708:13;15667:16;15764:4;15752:17;;15730:57;:::i;:::-;15803:20;;15359:470;-1:-1:-1;;;;15359:470:13:o;17707:246::-;17747:4;-1:-1:-1;;;;;17860:10:13;;;;17830;;17882:12;;;17879:38;;;17897:18;;:::i;:::-;17934:13;;17707:246;-1:-1:-1;;;17707:246:13:o;17958:253::-;17998:3;-1:-1:-1;;;;;18087:2:13;18084:1;18080:10;18117:2;18114:1;18110:10;18148:3;18144:2;18140:12;18135:3;18132:21;18129:47;;;18156:18;;:::i;18627:125::-;18667:4;18695:1;18692;18689:8;18686:34;;;18700:18;;:::i;:::-;-1:-1:-1;18737:9:13;;18627:125::o;18757:136::-;18796:3;18824:5;18814:39;;18833:18;;:::i;:::-;-1:-1:-1;;;18869:18:13;;18757:136::o;19314:512::-;19508:4;-1:-1:-1;;;;;19618:2:13;19610:6;19606:15;19595:9;19588:34;19670:2;19662:6;19658:15;19653:2;19642:9;19638:18;19631:43;;19710:6;19705:2;19694:9;19690:18;19683:34;19753:3;19748:2;19737:9;19733:18;19726:31;19774:46;19815:3;19804:9;19800:19;19792:6;19774:46;:::i;:::-;19766:54;19314:512;-1:-1:-1;;;;;;19314:512:13:o;19831:249::-;19900:6;19953:2;19941:9;19932:7;19928:23;19924:32;19921:52;;;19969:1;19966;19959:12;19921:52;20001:9;19995:16;20020:30;20044:5;20020:30;:::i;20085:112::-;20117:1;20143;20133:35;;20148:18;;:::i;:::-;-1:-1:-1;20182:9:13;;20085:112::o;20202:127::-;20263:10;20258:3;20254:20;20251:1;20244:31;20294:4;20291:1;20284:15;20318:4;20315:1;20308:15

Swarm Source

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