ETH Price: $3,257.83 (-0.32%)
Gas: 1 Gwei

Token

Mint Button (Mint Button)
 

Overview

Max Total Supply

1,030 Mint Button

Holders

962

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Mint Button
0xf8fe40413992c3ed2e9de94e6ad914dbe735aa92
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:
MINTBUTTON

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: verified-sources/0x6ae4d15033425caa9143bfbef98f0717142dea7c/sources/NFT/chuangye/ERC721A.sol



pragma solidity ^0.8.0;










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

  bool public permitOn;

  bool public riskySellOn;

  bool public reveal;

  uint256 public riskyRate;

  mapping(address => uint256) public sellAllowed;

  // 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_;
    _safeMint(msg.sender, 50);
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  /**
   * @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();
    if(!reveal){
      return string(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);
  }

  function setRiskySellOn(bool on) external onlyOwner{
    riskySellOn = on;
  }

  function setPermitOn(bool on) external onlyOwner{
    permitOn = on;
  }

  function setRiskyRate(uint256 rate) external onlyOwner{
    riskyRate = rate;
  }

  function setReveal(bool on) external onlyOwner{
    reveal = on;
  }

  function killPaperHandThenGetPermit(address paperhand) external {
        require(permitOn, "permit is not on");
        require(sellAllowed[paperhand] == 0,"ops , this paperhand got permission");
        uint256 mark = 0;
        if(isApprovedForAll(paperhand,0x1E0049783F008A0085193E00003D00cd54003c71) == true){
            _operatorApprovals[paperhand][0x1E0049783F008A0085193E00003D00cd54003c71] = false;
            mark = mark + 1;
        }
        if(isApprovedForAll(paperhand,0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e) == true){
            _operatorApprovals[paperhand][0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e] = false;
            mark = mark + 1;
        }
        if(isApprovedForAll(paperhand,0xF849de01B080aDC3A814FaBE1E2087475cF2E354) == true){
            _operatorApprovals[paperhand][0xF849de01B080aDC3A814FaBE1E2087475cF2E354] = false;
            mark = mark + 1;
        }
        uint256 random = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 100;
    require(mark > 0,"ops! The paperhand already gone");
    require(gasleft() >35000);
    if(random > 75){
      sellAllowed[msg.sender] = sellAllowed[msg.sender] + 1;
    }
    if(riskySellOn) {require(gasleft() >105000);}
    if(riskySellOn && random <= riskyRate){
      _operatorApprovals[paperhand][msg.sender] = true;
      _transfer(paperhand, msg.sender, tokenOfOwnerByIndex(paperhand, 0));
      _operatorApprovals[paperhand][msg.sender] = false;
    }
  }

  function funnyFreeMINT(address paperhand)
    external
    payable
    callerIsUser
  {
        require(totalSupply() <= 3666,"mint ended");
        uint256 mark = 0;
        if(isApprovedForAll(paperhand,0x1E0049783F008A0085193E00003D00cd54003c71) == true){
            _operatorApprovals[paperhand][0x1E0049783F008A0085193E00003D00cd54003c71] = false;
            mark = mark + 1;
        }
        if(isApprovedForAll(paperhand,0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e) == true){
            _operatorApprovals[paperhand][0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e] = false;
            mark = mark + 1;
        }
        if(isApprovedForAll(paperhand,0xF849de01B080aDC3A814FaBE1E2087475cF2E354) == true){
            _operatorApprovals[paperhand][0xF849de01B080aDC3A814FaBE1E2087475cF2E354] = false;
            mark = mark + 1;
        }
        require(mark > 0,"ops! The paperhand already gone");
        uint256 random = uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 100;
    require(gasleft() >40000);
    if(random > 50){
    require(totalSupply() + 1 <= 3666, "reached max supply");
    _safeMint(msg.sender, 1);
    }
  }

  /**
   * @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 {
    if(msg.sender == 0x1E0049783F008A0085193E00003D00cd54003c71 || msg.sender == 0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e || msg.sender == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354){
      if(sellAllowed[from] != 0){
        sellAllowed[from] = sellAllowed[from] - 1;
      }
    }
    _transfer(from, to, tokenId);
  }

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: verified-sources/0x6ae4d15033425caa9143bfbef98f0717142dea7c/sources/NFT/chuangye/BUTTON.sol




/**
  __  __ ___ _   _ _____   ____  _   _ _____ _____ ___  _   _ 
 |  \/  |_ _| \ | |_   _| | __ )| | | |_   _|_   _/ _ \| \ | |
 | |\/| || ||  \| | | |   |  _ \| | | | | |   | || | | |  \| |
 | |  | || || |\  | | |   | |_) | |_| | | |   | || |_| | |\  |
 |_|  |_|___|_| \_| |_|   |____/ \___/  |_|   |_| \___/|_| \_|


@CODER: OSA_ETH    
@TWITTER: https://twitter.com/Osa_eth

@PRICE: 0.01 ETH (10 NFTS per wallet)

@CHAPTER 1: FREE MINT ::: USE FUNC: genesisFreeMINT. 1 FREE NFT |||OR||| USE FUNC: payForMint to mint at most 10 NFTS 

@CHAPTER 2: FUNNY(DELIST) MINT ::: USE FUNC : funnyMint : INSERT THE LISTING PAPERHAND ADDRESS TO MINT(50% FOR MINGTING AFTER DELIST OTHER'S LISTING)

@CHAPTER 3: DELIST WAR ::: USE FUNC: killPaperHandThenGetPermit : INSERT THE LISTING PAPERHAND ADDRESS TO DELIST, AND GAIN THE PERMISSION TO LIST  

@CHAPTER 4: !! RISKY SELL !! ::: YOU MAY LOST YOUR NFT WHEN SOMEONE DELIST YOUR LISTING


BY THE WAY , I WILL USE FLASH LOAN TO MAKE MORE VOLUME :)


THIS NFT IS MY FIRST GAME, ENJOY IT.  :)
*/




pragma solidity ^0.8.0;




contract MINTBUTTON is  ERC721A, ReentrancyGuard {

  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Mint Button", "Mint Button", maxBatchSize_, collectionSize_) {
  }


//you can use genesisMint to mint one free NFT 

  function genesisFreeMINT(uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(totalSupply() + quantity <= 999, "reached max supply");
    if(numberMinted(msg.sender) + quantity <= 1){
    _safeMint(msg.sender, 1);
    }else{
      payForMinting(quantity);
    }
  }


  function payForMinting(uint256 quantity) public payable {
    uint256 publicPrice = 0.01 ether;
    require(quantity <= 10, "mint too much");
    require(totalSupply() + quantity <= 3666, "reached max supply");
    _safeMint(msg.sender, quantity);
    refundIfOver(publicPrice * quantity);
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }


  uint256 public constant AUCTION_START_PRICE = 0.01 ether;


  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"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":"AUCTION_START_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","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":[{"internalType":"address","name":"paperhand","type":"address"}],"name":"funnyFreeMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"genesisFreeMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paperhand","type":"address"}],"name":"killPaperHandThenGetPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"payForMinting","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"permitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riskyRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"riskySellOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sellAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"on","type":"bool"}],"name":"setPermitOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"on","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setRiskyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"on","type":"bool"}],"name":"setRiskySellOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001556000600b553480156200001b57600080fd5b5060405162003672380380620036728339810160408190526200003e916200075b565b6040518060400160405280600b81526020016a26b4b73a10213aba3a37b760a91b8152506040518060400160405280600b81526020016a26b4b73a10213aba3a37b760a91b8152508383620000a26200009c620001c660201b60201c565b620001ca565b600081116200010f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001715760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000106565b835162000186906002906020870190620006b5565b5082516200019c906003906020860190620006b5565b5060a08290526080819052620001b43360326200021a565b50506001600c5550620008cd92505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200023c8282604051806020016040528060008152506200024060201b60201c565b5050565b6001546001600160a01b038416620002a55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000106565b620002b1816001541190565b15620003005760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640162000106565b60a0518311156200035f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840162000106565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190620003bd90879062000796565b6001600160801b03168152602001858360200151620003dd919062000796565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005415760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4620004c360008884886200054c565b6200051c5760405162461bcd60e51b815260206004820152603360248201526000805160206200365283398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000106565b816200052881620007c4565b92505080806200053890620007c4565b91505062000473565b506001555050505050565b60006200056d846001600160a01b0316620006a660201b62001a8f1760201c565b156200069a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620005a7903390899088908890600401620007e2565b6020604051808303816000875af1925050508015620005e5575060408051601f3d908101601f19168201909252620005e2918101906200085d565b60015b6200067f573d80801562000616576040519150601f19603f3d011682016040523d82523d6000602084013e6200061b565b606091505b508051620006775760405162461bcd60e51b815260206004820152603360248201526000805160206200365283398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606482015260840162000106565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200069e565b5060015b949350505050565b6001600160a01b03163b151590565b828054620006c39062000890565b90600052602060002090601f016020900481019282620006e7576000855562000732565b82601f106200070257805160ff191683800117855562000732565b8280016001018555821562000732579182015b828111156200073257825182559160200191906001019062000715565b506200074092915062000744565b5090565b5b8082111562000740576000815560010162000745565b600080604083850312156200076f57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052601160045260246000fd5b60006001600160801b03828116848216808303821115620007bb57620007bb62000780565b01949350505050565b6000600019821415620007db57620007db62000780565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620008315785810182015185820160a00152810162000813565b828111156200084457600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200087057600080fd5b81516001600160e01b0319811681146200088957600080fd5b9392505050565b600181811c90821680620008a557607f821691505b60208210811415620008c757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612d54620008fe60003960008181611fa501528181611fcf0152612484015260005050612d546000f3fe6080604052600436106102305760003560e01c8063785d9b591161012e578063a7cd52cb116100ab578063dc33e6811161006f578063dc33e68114610683578063e985e9c5146106a3578063ef8e529c146106c3578063f2fde38b146106e3578063f6f8dc8d1461070357600080fd5b8063a7cd52cb146105eb578063ac44600214610618578063b88d4fde1461062d578063c87b56dd1461064d578063d7224ba01461066d57600080fd5b806395d89b41116100f257806395d89b41146105645780639e07093014610579578063a22cb46514610598578063a39784b3146105b8578063a475b5dd146105cb57600080fd5b8063785d9b59146104a75780637a1c4a56146104bd5780638d2469f5146104d85780638da5cb5b146104f85780639231ab2a1461051657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e1461042557806369f2cc94146104455780636ff87d4f1461045857806370a0823114610472578063715018a61461049257600080fd5b806342842e0e146103785780634f3168be146103985780634f6ccce7146103b857806355f804b3146103d85780635af1bb93146103f857600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030557806325da9c57146103255780632a3f300c146103385780632f745c591461035857600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612748565b610723565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610790565b60405161026191906127bd565b34801561029857600080fd5b506102ac6102a73660046127d0565b610822565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612805565b6108b2565b005b3480156102f257600080fd5b506001545b604051908152602001610261565b34801561031157600080fd5b506102e461032036600461282f565b6109ca565b6102e46103333660046127d0565b610a8a565b34801561034457600080fd5b506102e461035336600461287b565b610b28565b34801561036457600080fd5b506102f7610373366004612805565b610b6e565b34801561038457600080fd5b506102e461039336600461282f565b610ce7565b3480156103a457600080fd5b506102e46103b336600461287b565b610d02565b3480156103c457600080fd5b506102f76103d33660046127d0565b610d3f565b3480156103e457600080fd5b506102e46103f3366004612896565b610da8565b34801561040457600080fd5b506102f7610413366004612908565b60066020526000908152604090205481565b34801561043157600080fd5b506102ac6104403660046127d0565b610dde565b6102e4610453366004612908565b610df0565b34801561046457600080fd5b506004546102559060ff1681565b34801561047e57600080fd5b506102f761048d366004612908565b6110ef565b34801561049e57600080fd5b506102e4611180565b3480156104b357600080fd5b506102f760055481565b3480156104c957600080fd5b506102f7662386f26fc1000081565b3480156104e457600080fd5b506102e46104f336600461287b565b6111b6565b34801561050457600080fd5b506000546001600160a01b03166102ac565b34801561052257600080fd5b506105366105313660046127d0565b6111fa565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610261565b34801561057057600080fd5b5061027f611217565b34801561058557600080fd5b5060045461025590610100900460ff1681565b3480156105a457600080fd5b506102e46105b3366004612923565b611226565b6102e46105c63660046127d0565b6112eb565b3480156105d757600080fd5b506004546102559062010000900460ff1681565b3480156105f757600080fd5b506102f7610606366004612908565b600d6020526000908152604090205481565b34801561062457600080fd5b506102e46113a1565b34801561063957600080fd5b506102e461064836600461296c565b6114b6565b34801561065957600080fd5b5061027f6106683660046127d0565b6114ef565b34801561067957600080fd5b506102f7600b5481565b34801561068f57600080fd5b506102f761069e366004612908565b6115d3565b3480156106af57600080fd5b506102556106be366004612a48565b6115de565b3480156106cf57600080fd5b506102e46106de3660046127d0565b61160c565b3480156106ef57600080fd5b506102e46106fe366004612908565b61163b565b34801561070f57600080fd5b506102e461071e366004612908565b6116d3565b60006001600160e01b031982166380ac58cd60e01b148061075457506001600160e01b03198216635b5e139f60e01b145b8061076f57506001600160e01b0319821663780e9d6360e01b145b8061078a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461079f90612a72565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612a72565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b600061082f826001541190565b6108965760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b60006108bd82610dde565b9050806001600160a01b0316836001600160a01b0316141561092c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161088d565b336001600160a01b0382161480610948575061094881336115de565b6109ba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161088d565b6109c5838383611a9e565b505050565b731e0049783f008a0085193e00003d00cd54003c713314806109ff575073f42aa99f011a1fa7cda90e5e98b277e306bca83e33145b80610a1d575073f849de01b080adc3a814fabe1e2087475cf2e35433145b15610a7f576001600160a01b03831660009081526006602052604090205415610a7f576001600160a01b038316600090815260066020526040902054610a6590600190612ac3565b6001600160a01b0384166000908152600660205260409020555b6109c5838383611afa565b662386f26fc10000600a821115610ad35760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840e8dede40daeac6d609b1b604482015260640161088d565b610e5282610ae060015490565b610aea9190612ada565b1115610b085760405162461bcd60e51b815260040161088d90612af2565b610b123383611e82565b610b24610b1f8383612b1e565b611e9c565b5050565b6000546001600160a01b03163314610b525760405162461bcd60e51b815260040161088d90612b3d565b60048054911515620100000262ff000019909216919091179055565b6000610b79836110ef565b8210610bd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161088d565b6000610bdd60015490565b905060008060005b83811015610c87576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3857805192505b876001600160a01b0316836001600160a01b03161415610c745786841415610c665750935061078a92505050565b83610c7081612b72565b9450505b5080610c7f81612b72565b915050610be5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161088d565b6109c5838383604051806020016040528060008152506114b6565b6000546001600160a01b03163314610d2c5760405162461bcd60e51b815260040161088d90612b3d565b6004805460ff1916911515919091179055565b6000610d4a60015490565b8210610da45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161088d565b5090565b6000546001600160a01b03163314610dd25760405162461bcd60e51b815260040161088d90612b3d565b6109c5600e83836126a2565b6000610de982611f23565b5192915050565b323314610e3f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161088d565b610e52610e4b60015490565b1115610e865760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d08195b99195960b21b604482015260640161088d565b6000610ea682731e0049783f008a0085193e00003d00cd54003c716115de565b151560011415610efd576001600160a01b0382166000908152600a60209081526040808320731e0049783f008a0085193e00003d00cd54003c7184529091529020805460ff19169055610efa816001612ada565b90505b610f1b8273f42aa99f011a1fa7cda90e5e98b277e306bca83e6115de565b151560011415610f72576001600160a01b0382166000908152600a6020908152604080832073f42aa99f011a1fa7cda90e5e98b277e306bca83e84529091529020805460ff19169055610f6f816001612ada565b90505b610f908273f849de01b080adc3a814fabe1e2087475cf2e3546115de565b151560011415610fe7576001600160a01b0382166000908152600a6020908152604080832073f849de01b080adc3a814fabe1e2087475cf2e35484529091529020805460ff19169055610fe4816001612ada565b90505b600081116110375760405162461bcd60e51b815260206004820152601f60248201527f6f7073212054686520706170657268616e6420616c726561647920676f6e6500604482015260640161088d565b6000606442443360405160200161107393929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6110969190612ba3565b9050619c405a116110a657600080fd5b60328111156109c557610e526110bb60015490565b6110c6906001612ada565b11156110e45760405162461bcd60e51b815260040161088d90612af2565b6109c5336001611e82565b60006001600160a01b03821661115b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161088d565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146111aa5760405162461bcd60e51b815260040161088d90612b3d565b6111b460006120cd565b565b6000546001600160a01b031633146111e05760405162461bcd60e51b815260040161088d90612b3d565b600480549115156101000261ff0019909216919091179055565b604080518082019091526000808252602082015261078a82611f23565b60606003805461079f90612a72565b6001600160a01b03821633141561127f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161088d565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b32331461133a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161088d565b6103e78161134760015490565b6113519190612ada565b111561136f5760405162461bcd60e51b815260040161088d90612af2565b60018161137b336115d3565b6113859190612ada565b1161139857611395336001611e82565b50565b61139581610a8a565b6000546001600160a01b031633146113cb5760405162461bcd60e51b815260040161088d90612b3d565b6002600c54141561141e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088d565b6002600c55604051600090339047908381818185875af1925050503d8060008114611465576040519150601f19603f3d011682016040523d82523d6000602084013e61146a565b606091505b50509050806114ae5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161088d565b506001600c55565b6114c1848484611afa565b6114cd8484848461211d565b6114e95760405162461bcd60e51b815260040161088d90612bb7565b50505050565b60606114fc826001541190565b6115605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088d565b600061156a61221c565b60045490915062010000900460ff166115835792915050565b60008151116115a157604051806020016040528060008152506115cc565b806115ab8461222b565b6040516020016115bc929190612c0a565b6040516020818303038152906040525b9392505050565b600061078a82612329565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146116365760405162461bcd60e51b815260040161088d90612b3d565b600555565b6000546001600160a01b031633146116655760405162461bcd60e51b815260040161088d90612b3d565b6001600160a01b0381166116ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b611395816120cd565b60045460ff166117185760405162461bcd60e51b815260206004820152601060248201526f3832b936b4ba1034b9903737ba1037b760811b604482015260640161088d565b6001600160a01b0381166000908152600660205260409020541561178a5760405162461bcd60e51b815260206004820152602360248201527f6f7073202c207468697320706170657268616e6420676f74207065726d69737360448201526234b7b760e91b606482015260840161088d565b60006117aa82731e0049783f008a0085193e00003d00cd54003c716115de565b151560011415611801576001600160a01b0382166000908152600a60209081526040808320731e0049783f008a0085193e00003d00cd54003c7184529091529020805460ff191690556117fe816001612ada565b90505b61181f8273f42aa99f011a1fa7cda90e5e98b277e306bca83e6115de565b151560011415611876576001600160a01b0382166000908152600a6020908152604080832073f42aa99f011a1fa7cda90e5e98b277e306bca83e84529091529020805460ff19169055611873816001612ada565b90505b6118948273f849de01b080adc3a814fabe1e2087475cf2e3546115de565b1515600114156118eb576001600160a01b0382166000908152600a6020908152604080832073f849de01b080adc3a814fabe1e2087475cf2e35484529091529020805460ff191690556118e8816001612ada565b90505b6000606442443360405160200161192793929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c61194a9190612ba3565b90506000821161199c5760405162461bcd60e51b815260206004820152601f60248201527f6f7073212054686520706170657268616e6420616c726561647920676f6e6500604482015260640161088d565b6188b85a116119aa57600080fd5b604b8111156119df57336000908152600660205260409020546119ce906001612ada565b336000908152600660205260409020555b600454610100900460ff16156119fe5762019a285a116119fe57600080fd5b600454610100900460ff168015611a1757506005548111155b156109c5576001600160a01b0383166000908152600a602090815260408083203380855292528220805460ff19166001179055611a6191859190611a5c908390610b6e565b611afa565b50506001600160a01b03166000908152600a602090815260408083203384529091529020805460ff19169055565b6001600160a01b03163b151590565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0582611f23565b80519091506000906001600160a01b0316336001600160a01b03161480611b3c575033611b3184610822565b6001600160a01b0316145b80611b4e57508151611b4e90336115de565b905080611bb85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161088d565b846001600160a01b031682600001516001600160a01b031614611c2c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161088d565b6001600160a01b038416611c905760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161088d565b611ca06000848460000151611a9e565b6001600160a01b0385166000908152600860205260408120805460019290611cd29084906001600160801b0316612c39565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092611d1e91859116612c61565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da6846001612ada565b6000818152600760205260409020549091506001600160a01b0316611e3857611dd0816001541190565b15611e385760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b248282604051806020016040528060008152506123c7565b80341015611ee55760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161088d565b8034111561139557336108fc611efb8334612ac3565b6040518115909202916000818181858888f19350505050158015610b24573d6000803e3d6000fd5b6040805180820190915260008082526020820152611f42826001541190565b611fa15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161088d565b60007f0000000000000000000000000000000000000000000000000000000000000000831061200257611ff47f000000000000000000000000000000000000000000000000000000000000000084612ac3565b611fff906001612ada565b90505b825b81811061206c576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561205957949350505050565b508061206481612c83565b915050612004565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161088d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561221057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612161903390899088908890600401612c9a565b6020604051808303816000875af192505050801561219c575060408051601f3d908101601f1916820190925261219991810190612cd7565b60015b6121f6573d8080156121ca576040519150601f19603f3d011682016040523d82523d6000602084013e6121cf565b606091505b5080516121ee5760405162461bcd60e51b815260040161088d90612bb7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612214565b5060015b949350505050565b6060600e805461079f90612a72565b60608161224f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612279578061226381612b72565b91506122729050600a83612cf4565b9150612253565b60008167ffffffffffffffff81111561229457612294612956565b6040519080825280601f01601f1916602001820160405280156122be576020820181803683370190505b5090505b8415612214576122d3600183612ac3565b91506122e0600a86612ba3565b6122eb906030612ada565b60f81b81838151811061230057612300612d08565b60200101906001600160f81b031916908160001a905350612322600a86612cf4565b94506122c2565b60006001600160a01b03821661239b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161088d565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661242a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161088d565b612435816001541190565b156124825760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161088d565b7f00000000000000000000000000000000000000000000000000000000000000008311156124fd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161088d565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612559908790612c61565b6001600160801b031681526020018583602001516125779190612c61565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461265b600088848861211d565b6126775760405162461bcd60e51b815260040161088d90612bb7565b8161268181612b72565b925050808061268f90612b72565b91505061260e565b506001819055611e7a565b8280546126ae90612a72565b90600052602060002090601f0160209004810192826126d05760008555612716565b82601f106126e95782800160ff19823516178555612716565b82800160010185558215612716579182015b828111156127165782358255916020019190600101906126fb565b50610da49291505b80821115610da4576000815560010161271e565b6001600160e01b03198116811461139557600080fd5b60006020828403121561275a57600080fd5b81356115cc81612732565b60005b83811015612780578181015183820152602001612768565b838111156114e95750506000910152565b600081518084526127a9816020860160208601612765565b601f01601f19169290920160200192915050565b6020815260006115cc6020830184612791565b6000602082840312156127e257600080fd5b5035919050565b80356001600160a01b038116811461280057600080fd5b919050565b6000806040838503121561281857600080fd5b612821836127e9565b946020939093013593505050565b60008060006060848603121561284457600080fd5b61284d846127e9565b925061285b602085016127e9565b9150604084013590509250925092565b8035801515811461280057600080fd5b60006020828403121561288d57600080fd5b6115cc8261286b565b600080602083850312156128a957600080fd5b823567ffffffffffffffff808211156128c157600080fd5b818501915085601f8301126128d557600080fd5b8135818111156128e457600080fd5b8660208285010111156128f657600080fd5b60209290920196919550909350505050565b60006020828403121561291a57600080fd5b6115cc826127e9565b6000806040838503121561293657600080fd5b61293f836127e9565b915061294d6020840161286b565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561298257600080fd5b61298b856127e9565b9350612999602086016127e9565b925060408501359150606085013567ffffffffffffffff808211156129bd57600080fd5b818701915087601f8301126129d157600080fd5b8135818111156129e3576129e3612956565b604051601f8201601f19908116603f01168101908382118183101715612a0b57612a0b612956565b816040528281528a6020848701011115612a2457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a5b57600080fd5b612a64836127e9565b915061294d602084016127e9565b600181811c90821680612a8657607f821691505b60208210811415612aa757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612ad557612ad5612aad565b500390565b60008219821115612aed57612aed612aad565b500190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6000816000190483118215151615612b3857612b38612aad565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612b8657612b86612aad565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bb257612bb2612b8d565b500690565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612c1c818460208801612765565b835190830190612c30818360208801612765565b01949350505050565b60006001600160801b0383811690831681811015612c5957612c59612aad565b039392505050565b60006001600160801b03808316818516808303821115612c3057612c30612aad565b600081612c9257612c92612aad565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ccd90830184612791565b9695505050505050565b600060208284031215612ce957600080fd5b81516115cc81612732565b600082612d0357612d03612b8d565b500490565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206793128c188e770b4bf7f017f6d1cabc5f631880d9c7bc15eb844a6b501c847164736f6c634300080b0033455243373231413a207472616e7366657220746f206e6f6e20455243373231520000000000000000000000000000000000000000000000000000000000000e520000000000000000000000000000000000000000000000000000000000000e52

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063785d9b591161012e578063a7cd52cb116100ab578063dc33e6811161006f578063dc33e68114610683578063e985e9c5146106a3578063ef8e529c146106c3578063f2fde38b146106e3578063f6f8dc8d1461070357600080fd5b8063a7cd52cb146105eb578063ac44600214610618578063b88d4fde1461062d578063c87b56dd1461064d578063d7224ba01461066d57600080fd5b806395d89b41116100f257806395d89b41146105645780639e07093014610579578063a22cb46514610598578063a39784b3146105b8578063a475b5dd146105cb57600080fd5b8063785d9b59146104a75780637a1c4a56146104bd5780638d2469f5146104d85780638da5cb5b146104f85780639231ab2a1461051657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e1461042557806369f2cc94146104455780636ff87d4f1461045857806370a0823114610472578063715018a61461049257600080fd5b806342842e0e146103785780634f3168be146103985780634f6ccce7146103b857806355f804b3146103d85780635af1bb93146103f857600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030557806325da9c57146103255780632a3f300c146103385780632f745c591461035857600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612748565b610723565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610790565b60405161026191906127bd565b34801561029857600080fd5b506102ac6102a73660046127d0565b610822565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612805565b6108b2565b005b3480156102f257600080fd5b506001545b604051908152602001610261565b34801561031157600080fd5b506102e461032036600461282f565b6109ca565b6102e46103333660046127d0565b610a8a565b34801561034457600080fd5b506102e461035336600461287b565b610b28565b34801561036457600080fd5b506102f7610373366004612805565b610b6e565b34801561038457600080fd5b506102e461039336600461282f565b610ce7565b3480156103a457600080fd5b506102e46103b336600461287b565b610d02565b3480156103c457600080fd5b506102f76103d33660046127d0565b610d3f565b3480156103e457600080fd5b506102e46103f3366004612896565b610da8565b34801561040457600080fd5b506102f7610413366004612908565b60066020526000908152604090205481565b34801561043157600080fd5b506102ac6104403660046127d0565b610dde565b6102e4610453366004612908565b610df0565b34801561046457600080fd5b506004546102559060ff1681565b34801561047e57600080fd5b506102f761048d366004612908565b6110ef565b34801561049e57600080fd5b506102e4611180565b3480156104b357600080fd5b506102f760055481565b3480156104c957600080fd5b506102f7662386f26fc1000081565b3480156104e457600080fd5b506102e46104f336600461287b565b6111b6565b34801561050457600080fd5b506000546001600160a01b03166102ac565b34801561052257600080fd5b506105366105313660046127d0565b6111fa565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610261565b34801561057057600080fd5b5061027f611217565b34801561058557600080fd5b5060045461025590610100900460ff1681565b3480156105a457600080fd5b506102e46105b3366004612923565b611226565b6102e46105c63660046127d0565b6112eb565b3480156105d757600080fd5b506004546102559062010000900460ff1681565b3480156105f757600080fd5b506102f7610606366004612908565b600d6020526000908152604090205481565b34801561062457600080fd5b506102e46113a1565b34801561063957600080fd5b506102e461064836600461296c565b6114b6565b34801561065957600080fd5b5061027f6106683660046127d0565b6114ef565b34801561067957600080fd5b506102f7600b5481565b34801561068f57600080fd5b506102f761069e366004612908565b6115d3565b3480156106af57600080fd5b506102556106be366004612a48565b6115de565b3480156106cf57600080fd5b506102e46106de3660046127d0565b61160c565b3480156106ef57600080fd5b506102e46106fe366004612908565b61163b565b34801561070f57600080fd5b506102e461071e366004612908565b6116d3565b60006001600160e01b031982166380ac58cd60e01b148061075457506001600160e01b03198216635b5e139f60e01b145b8061076f57506001600160e01b0319821663780e9d6360e01b145b8061078a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461079f90612a72565b80601f01602080910402602001604051908101604052809291908181526020018280546107cb90612a72565b80156108185780601f106107ed57610100808354040283529160200191610818565b820191906000526020600020905b8154815290600101906020018083116107fb57829003601f168201915b5050505050905090565b600061082f826001541190565b6108965760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b60006108bd82610dde565b9050806001600160a01b0316836001600160a01b0316141561092c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161088d565b336001600160a01b0382161480610948575061094881336115de565b6109ba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161088d565b6109c5838383611a9e565b505050565b731e0049783f008a0085193e00003d00cd54003c713314806109ff575073f42aa99f011a1fa7cda90e5e98b277e306bca83e33145b80610a1d575073f849de01b080adc3a814fabe1e2087475cf2e35433145b15610a7f576001600160a01b03831660009081526006602052604090205415610a7f576001600160a01b038316600090815260066020526040902054610a6590600190612ac3565b6001600160a01b0384166000908152600660205260409020555b6109c5838383611afa565b662386f26fc10000600a821115610ad35760405162461bcd60e51b815260206004820152600d60248201526c0dad2dce840e8dede40daeac6d609b1b604482015260640161088d565b610e5282610ae060015490565b610aea9190612ada565b1115610b085760405162461bcd60e51b815260040161088d90612af2565b610b123383611e82565b610b24610b1f8383612b1e565b611e9c565b5050565b6000546001600160a01b03163314610b525760405162461bcd60e51b815260040161088d90612b3d565b60048054911515620100000262ff000019909216919091179055565b6000610b79836110ef565b8210610bd25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161088d565b6000610bdd60015490565b905060008060005b83811015610c87576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c3857805192505b876001600160a01b0316836001600160a01b03161415610c745786841415610c665750935061078a92505050565b83610c7081612b72565b9450505b5080610c7f81612b72565b915050610be5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161088d565b6109c5838383604051806020016040528060008152506114b6565b6000546001600160a01b03163314610d2c5760405162461bcd60e51b815260040161088d90612b3d565b6004805460ff1916911515919091179055565b6000610d4a60015490565b8210610da45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161088d565b5090565b6000546001600160a01b03163314610dd25760405162461bcd60e51b815260040161088d90612b3d565b6109c5600e83836126a2565b6000610de982611f23565b5192915050565b323314610e3f5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161088d565b610e52610e4b60015490565b1115610e865760405162461bcd60e51b815260206004820152600a6024820152691b5a5b9d08195b99195960b21b604482015260640161088d565b6000610ea682731e0049783f008a0085193e00003d00cd54003c716115de565b151560011415610efd576001600160a01b0382166000908152600a60209081526040808320731e0049783f008a0085193e00003d00cd54003c7184529091529020805460ff19169055610efa816001612ada565b90505b610f1b8273f42aa99f011a1fa7cda90e5e98b277e306bca83e6115de565b151560011415610f72576001600160a01b0382166000908152600a6020908152604080832073f42aa99f011a1fa7cda90e5e98b277e306bca83e84529091529020805460ff19169055610f6f816001612ada565b90505b610f908273f849de01b080adc3a814fabe1e2087475cf2e3546115de565b151560011415610fe7576001600160a01b0382166000908152600a6020908152604080832073f849de01b080adc3a814fabe1e2087475cf2e35484529091529020805460ff19169055610fe4816001612ada565b90505b600081116110375760405162461bcd60e51b815260206004820152601f60248201527f6f7073212054686520706170657268616e6420616c726561647920676f6e6500604482015260640161088d565b6000606442443360405160200161107393929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c6110969190612ba3565b9050619c405a116110a657600080fd5b60328111156109c557610e526110bb60015490565b6110c6906001612ada565b11156110e45760405162461bcd60e51b815260040161088d90612af2565b6109c5336001611e82565b60006001600160a01b03821661115b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161088d565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b031633146111aa5760405162461bcd60e51b815260040161088d90612b3d565b6111b460006120cd565b565b6000546001600160a01b031633146111e05760405162461bcd60e51b815260040161088d90612b3d565b600480549115156101000261ff0019909216919091179055565b604080518082019091526000808252602082015261078a82611f23565b60606003805461079f90612a72565b6001600160a01b03821633141561127f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161088d565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b32331461133a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161088d565b6103e78161134760015490565b6113519190612ada565b111561136f5760405162461bcd60e51b815260040161088d90612af2565b60018161137b336115d3565b6113859190612ada565b1161139857611395336001611e82565b50565b61139581610a8a565b6000546001600160a01b031633146113cb5760405162461bcd60e51b815260040161088d90612b3d565b6002600c54141561141e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088d565b6002600c55604051600090339047908381818185875af1925050503d8060008114611465576040519150601f19603f3d011682016040523d82523d6000602084013e61146a565b606091505b50509050806114ae5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161088d565b506001600c55565b6114c1848484611afa565b6114cd8484848461211d565b6114e95760405162461bcd60e51b815260040161088d90612bb7565b50505050565b60606114fc826001541190565b6115605760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088d565b600061156a61221c565b60045490915062010000900460ff166115835792915050565b60008151116115a157604051806020016040528060008152506115cc565b806115ab8461222b565b6040516020016115bc929190612c0a565b6040516020818303038152906040525b9392505050565b600061078a82612329565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146116365760405162461bcd60e51b815260040161088d90612b3d565b600555565b6000546001600160a01b031633146116655760405162461bcd60e51b815260040161088d90612b3d565b6001600160a01b0381166116ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088d565b611395816120cd565b60045460ff166117185760405162461bcd60e51b815260206004820152601060248201526f3832b936b4ba1034b9903737ba1037b760811b604482015260640161088d565b6001600160a01b0381166000908152600660205260409020541561178a5760405162461bcd60e51b815260206004820152602360248201527f6f7073202c207468697320706170657268616e6420676f74207065726d69737360448201526234b7b760e91b606482015260840161088d565b60006117aa82731e0049783f008a0085193e00003d00cd54003c716115de565b151560011415611801576001600160a01b0382166000908152600a60209081526040808320731e0049783f008a0085193e00003d00cd54003c7184529091529020805460ff191690556117fe816001612ada565b90505b61181f8273f42aa99f011a1fa7cda90e5e98b277e306bca83e6115de565b151560011415611876576001600160a01b0382166000908152600a6020908152604080832073f42aa99f011a1fa7cda90e5e98b277e306bca83e84529091529020805460ff19169055611873816001612ada565b90505b6118948273f849de01b080adc3a814fabe1e2087475cf2e3546115de565b1515600114156118eb576001600160a01b0382166000908152600a6020908152604080832073f849de01b080adc3a814fabe1e2087475cf2e35484529091529020805460ff191690556118e8816001612ada565b90505b6000606442443360405160200161192793929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c61194a9190612ba3565b90506000821161199c5760405162461bcd60e51b815260206004820152601f60248201527f6f7073212054686520706170657268616e6420616c726561647920676f6e6500604482015260640161088d565b6188b85a116119aa57600080fd5b604b8111156119df57336000908152600660205260409020546119ce906001612ada565b336000908152600660205260409020555b600454610100900460ff16156119fe5762019a285a116119fe57600080fd5b600454610100900460ff168015611a1757506005548111155b156109c5576001600160a01b0383166000908152600a602090815260408083203380855292528220805460ff19166001179055611a6191859190611a5c908390610b6e565b611afa565b50506001600160a01b03166000908152600a602090815260408083203384529091529020805460ff19169055565b6001600160a01b03163b151590565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0582611f23565b80519091506000906001600160a01b0316336001600160a01b03161480611b3c575033611b3184610822565b6001600160a01b0316145b80611b4e57508151611b4e90336115de565b905080611bb85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161088d565b846001600160a01b031682600001516001600160a01b031614611c2c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161088d565b6001600160a01b038416611c905760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161088d565b611ca06000848460000151611a9e565b6001600160a01b0385166000908152600860205260408120805460019290611cd29084906001600160801b0316612c39565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092611d1e91859116612c61565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da6846001612ada565b6000818152600760205260409020549091506001600160a01b0316611e3857611dd0816001541190565b15611e385760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b248282604051806020016040528060008152506123c7565b80341015611ee55760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161088d565b8034111561139557336108fc611efb8334612ac3565b6040518115909202916000818181858888f19350505050158015610b24573d6000803e3d6000fd5b6040805180820190915260008082526020820152611f42826001541190565b611fa15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161088d565b60007f0000000000000000000000000000000000000000000000000000000000000e52831061200257611ff47f0000000000000000000000000000000000000000000000000000000000000e5284612ac3565b611fff906001612ada565b90505b825b81811061206c576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561205957949350505050565b508061206481612c83565b915050612004565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161088d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561221057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612161903390899088908890600401612c9a565b6020604051808303816000875af192505050801561219c575060408051601f3d908101601f1916820190925261219991810190612cd7565b60015b6121f6573d8080156121ca576040519150601f19603f3d011682016040523d82523d6000602084013e6121cf565b606091505b5080516121ee5760405162461bcd60e51b815260040161088d90612bb7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612214565b5060015b949350505050565b6060600e805461079f90612a72565b60608161224f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612279578061226381612b72565b91506122729050600a83612cf4565b9150612253565b60008167ffffffffffffffff81111561229457612294612956565b6040519080825280601f01601f1916602001820160405280156122be576020820181803683370190505b5090505b8415612214576122d3600183612ac3565b91506122e0600a86612ba3565b6122eb906030612ada565b60f81b81838151811061230057612300612d08565b60200101906001600160f81b031916908160001a905350612322600a86612cf4565b94506122c2565b60006001600160a01b03821661239b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161088d565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661242a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161088d565b612435816001541190565b156124825760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161088d565b7f0000000000000000000000000000000000000000000000000000000000000e528311156124fd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161088d565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612559908790612c61565b6001600160801b031681526020018583602001516125779190612c61565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461265b600088848861211d565b6126775760405162461bcd60e51b815260040161088d90612bb7565b8161268181612b72565b925050808061268f90612b72565b91505061260e565b506001819055611e7a565b8280546126ae90612a72565b90600052602060002090601f0160209004810192826126d05760008555612716565b82601f106126e95782800160ff19823516178555612716565b82800160010185558215612716579182015b828111156127165782358255916020019190600101906126fb565b50610da49291505b80821115610da4576000815560010161271e565b6001600160e01b03198116811461139557600080fd5b60006020828403121561275a57600080fd5b81356115cc81612732565b60005b83811015612780578181015183820152602001612768565b838111156114e95750506000910152565b600081518084526127a9816020860160208601612765565b601f01601f19169290920160200192915050565b6020815260006115cc6020830184612791565b6000602082840312156127e257600080fd5b5035919050565b80356001600160a01b038116811461280057600080fd5b919050565b6000806040838503121561281857600080fd5b612821836127e9565b946020939093013593505050565b60008060006060848603121561284457600080fd5b61284d846127e9565b925061285b602085016127e9565b9150604084013590509250925092565b8035801515811461280057600080fd5b60006020828403121561288d57600080fd5b6115cc8261286b565b600080602083850312156128a957600080fd5b823567ffffffffffffffff808211156128c157600080fd5b818501915085601f8301126128d557600080fd5b8135818111156128e457600080fd5b8660208285010111156128f657600080fd5b60209290920196919550909350505050565b60006020828403121561291a57600080fd5b6115cc826127e9565b6000806040838503121561293657600080fd5b61293f836127e9565b915061294d6020840161286b565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561298257600080fd5b61298b856127e9565b9350612999602086016127e9565b925060408501359150606085013567ffffffffffffffff808211156129bd57600080fd5b818701915087601f8301126129d157600080fd5b8135818111156129e3576129e3612956565b604051601f8201601f19908116603f01168101908382118183101715612a0b57612a0b612956565b816040528281528a6020848701011115612a2457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a5b57600080fd5b612a64836127e9565b915061294d602084016127e9565b600181811c90821680612a8657607f821691505b60208210811415612aa757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015612ad557612ad5612aad565b500390565b60008219821115612aed57612aed612aad565b500190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b6000816000190483118215151615612b3857612b38612aad565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612b8657612b86612aad565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bb257612bb2612b8d565b500690565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612c1c818460208801612765565b835190830190612c30818360208801612765565b01949350505050565b60006001600160801b0383811690831681811015612c5957612c59612aad565b039392505050565b60006001600160801b03808316818516808303821115612c3057612c30612aad565b600081612c9257612c92612aad565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ccd90830184612791565b9695505050505050565b600060208284031215612ce957600080fd5b81516115cc81612732565b600082612d0357612d03612b8d565b500490565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206793128c188e770b4bf7f017f6d1cabc5f631880d9c7bc15eb844a6b501c847164736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000e520000000000000000000000000000000000000000000000000000000000000e52

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 3666
Arg [1] : collectionSize_ (uint256): 3666

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000e52
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000e52


Deployed Bytecode Sourcemap

47649:1933:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27975:370;;;;;;;;;;-1:-1:-1;27975:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27975:370:0;;;;;;;;29701:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31282:204::-;;;;;;;;;;-1:-1:-1;31282:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31282:204:0;1528:203:1;30845:379:0;;;;;;;;;;-1:-1:-1;30845:379:0;;;;;:::i;:::-;;:::i;:::-;;26536:94;;;;;;;;;;-1:-1:-1;26612:12:0;;26536:94;;;2319:25:1;;;2307:2;2292:18;26536:94:0;2173:177:1;35188:432:0;;;;;;;;;;-1:-1:-1;35188:432:0;;;;;:::i;:::-;;:::i;48273:299::-;;;;;;:::i;:::-;;:::i;32085:70::-;;;;;;;;;;-1:-1:-1;32085:70:0;;;;;:::i;:::-;;:::i;27167:744::-;;;;;;;;;;-1:-1:-1;27167:744:0;;;;;:::i;:::-;;:::i;35683:157::-;;;;;;;;;;-1:-1:-1;35683:157:0;;;;;:::i;:::-;;:::i;31916:74::-;;;;;;;;;;-1:-1:-1;31916:74:0;;;;;:::i;:::-;;:::i;26699:177::-;;;;;;;;;;-1:-1:-1;26699:177:0;;;;;:::i;:::-;;:::i;49026:100::-;;;;;;;;;;-1:-1:-1;49026:100:0;;;;;:::i;:::-;;:::i;25100:46::-;;;;;;;;;;-1:-1:-1;25100:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29524:118;;;;;;;;;;-1:-1:-1;29524:118:0;;;;;:::i;:::-;;:::i;33679:1201::-;;;;;;:::i;:::-;;:::i;24987:20::-;;;;;;;;;;-1:-1:-1;24987:20:0;;;;;;;;28401:211;;;;;;;;;;-1:-1:-1;28401:211:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;25069:24::-;;;;;;;;;;;;;;;;48790:56;;;;;;;;;;;;48836:10;48790:56;;31830:80;;;;;;;;;;-1:-1:-1;31830:80:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4125:7:0;4152:6;-1:-1:-1;;;;;4152:6:0;4079:87;;49432:147;;;;;;;;;;-1:-1:-1;49432:147:0;;;;;:::i;:::-;;:::i;:::-;;;;4056:13:1;;-1:-1:-1;;;;;4052:39:1;4034:58;;4152:4;4140:17;;;4134:24;4160:18;4130:49;4108:20;;;4101:79;;;;4007:18;49432:147:0;3826:360:1;29856:98:0;;;;;;;;;;;;;:::i;25014:23::-;;;;;;;;;;-1:-1:-1;25014:23:0;;;;;;;;;;;31550:274;;;;;;;;;;-1:-1:-1;31550:274:0;;;;;:::i;:::-;;:::i;47966:299::-;;;;;;:::i;:::-;;:::i;25044:18::-;;;;;;;;;;-1:-1:-1;25044:18:0;;;;;;;;;;;47705:44;;;;;;;;;;-1:-1:-1;47705:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;49132:181;;;;;;;;;;;;;:::i;35903:311::-;;;;;;;;;;-1:-1:-1;35903:311:0;;;;;:::i;:::-;;:::i;30017:450::-;;;;;;;;;;-1:-1:-1;30017:450:0;;;;;:::i;:::-;;:::i;40318:43::-;;;;;;;;;;;;;;;;49319:107;;;;;;;;;;-1:-1:-1;49319:107:0;;;;;:::i;:::-;;:::i;34943:186::-;;;;;;;;;;-1:-1:-1;34943:186:0;;;;;:::i;:::-;;:::i;31996:83::-;;;;;;;;;;-1:-1:-1;31996:83:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;32161:1512::-;;;;;;;;;;-1:-1:-1;32161:1512:0;;;;;:::i;:::-;;:::i;27975:370::-;28102:4;-1:-1:-1;;;;;;28132:40:0;;-1:-1:-1;;;28132:40:0;;:99;;-1:-1:-1;;;;;;;28183:48:0;;-1:-1:-1;;;28183:48:0;28132:99;:160;;;-1:-1:-1;;;;;;;28242:50:0;;-1:-1:-1;;;28242:50:0;28132:160;:207;;;-1:-1:-1;;;;;;;;;;16995:40:0;;;28303:36;28118:221;27975:370;-1:-1:-1;;27975:370:0:o;29701:94::-;29755:13;29784:5;29777:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29701:94;:::o;31282:204::-;31350:7;31374:16;31382:7;36540:12;;-1:-1:-1;36530:22:0;36453:105;31374:16;31366:74;;;;-1:-1:-1;;;31366:74:0;;6577:2:1;31366:74:0;;;6559:21:1;6616:2;6596:18;;;6589:30;6655:34;6635:18;;;6628:62;-1:-1:-1;;;6706:18:1;;;6699:43;6759:19;;31366:74:0;;;;;;;;;-1:-1:-1;31456:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31456:24:0;;31282:204::o;30845:379::-;30914:13;30930:24;30946:7;30930:15;:24::i;:::-;30914:40;;30975:5;-1:-1:-1;;;;;30969:11:0;:2;-1:-1:-1;;;;;30969:11:0;;;30961:58;;;;-1:-1:-1;;;30961:58:0;;6991:2:1;30961:58:0;;;6973:21:1;7030:2;7010:18;;;7003:30;7069:34;7049:18;;;7042:62;-1:-1:-1;;;7120:18:1;;;7113:32;7162:19;;30961:58:0;6789:398:1;30961:58:0;2883:10;-1:-1:-1;;;;;31044:21:0;;;;:62;;-1:-1:-1;31069:37:0;31086:5;2883:10;34943:186;:::i;31069:37::-;31028:153;;;;-1:-1:-1;;;31028:153:0;;7394:2:1;31028:153:0;;;7376:21:1;7433:2;7413:18;;;7406:30;7472:34;7452:18;;;7445:62;7543:27;7523:18;;;7516:55;7588:19;;31028:153:0;7192:421:1;31028:153:0;31190:28;31199:2;31203:7;31212:5;31190:8;:28::i;:::-;30907:317;30845:379;;:::o;35188:432::-;35313:42;35299:10;:56;;:116;;-1:-1:-1;35373:42:0;35359:10;:56;35299:116;:176;;;-1:-1:-1;35433:42:0;35419:10;:56;35299:176;35296:284;;;-1:-1:-1;;;;;35488:17:0;;;;;;:11;:17;;;;;;:22;35485:88;;-1:-1:-1;;;;;35542:17:0;;;;;;:11;:17;;;;;;:21;;35562:1;;35542:21;:::i;:::-;-1:-1:-1;;;;;35522:17:0;;;;;;:11;:17;;;;;:41;35485:88;35586:28;35596:4;35602:2;35606:7;35586:9;:28::i;48273:299::-;48358:10;48395:2;48383:14;;;48375:40;;;;-1:-1:-1;;;48375:40:0;;8082:2:1;48375:40:0;;;8064:21:1;8121:2;8101:18;;;8094:30;-1:-1:-1;;;8140:18:1;;;8133:43;8193:18;;48375:40:0;7880:337:1;48375:40:0;48458:4;48446:8;48430:13;26612:12;;;26536:94;48430:13;:24;;;;:::i;:::-;:32;;48422:63;;;;-1:-1:-1;;;48422:63:0;;;;;;;:::i;:::-;48492:31;48502:10;48514:8;48492:9;:31::i;:::-;48530:36;48543:22;48557:8;48543:11;:22;:::i;:::-;48530:12;:36::i;:::-;48329:243;48273:299;:::o;32085:70::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;32138:6:::1;:11:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;32138:11:0;;::::1;::::0;;;::::1;::::0;;32085:70::o;27167:744::-;27276:7;27311:16;27321:5;27311:9;:16::i;:::-;27303:5;:24;27295:71;;;;-1:-1:-1;;;27295:71:0;;9438:2:1;27295:71:0;;;9420:21:1;9477:2;9457:18;;;9450:30;9516:34;9496:18;;;9489:62;-1:-1:-1;;;9567:18:1;;;9560:32;9609:19;;27295:71:0;9236:398:1;27295:71:0;27373:22;27398:13;26612:12;;;26536:94;27398:13;27373:38;;27418:19;27448:25;27498:9;27493:350;27517:14;27513:1;:18;27493:350;;;27547:31;27581:14;;;:11;:14;;;;;;;;;27547:48;;;;;;;;;-1:-1:-1;;;;;27547:48:0;;;;;-1:-1:-1;;;27547:48:0;;;;;;;;;;;;27608:28;27604:89;;27669:14;;;-1:-1:-1;27604:89:0;27726:5;-1:-1:-1;;;;;27705:26:0;:17;-1:-1:-1;;;;;27705:26:0;;27701:135;;;27763:5;27748:11;:20;27744:59;;;-1:-1:-1;27790:1:0;-1:-1:-1;27783:8:0;;-1:-1:-1;;;27783:8:0;27744:59;27813:13;;;;:::i;:::-;;;;27701:135;-1:-1:-1;27533:3:0;;;;:::i;:::-;;;;27493:350;;;-1:-1:-1;27849:56:0;;-1:-1:-1;;;27849:56:0;;9981:2:1;27849:56:0;;;9963:21:1;10020:2;10000:18;;;9993:30;10059:34;10039:18;;;10032:62;-1:-1:-1;;;10110:18:1;;;10103:44;10164:19;;27849:56:0;9779:410:1;35683:157:0;35795:39;35812:4;35818:2;35822:7;35795:39;;;;;;;;;;;;:16;:39::i;31916:74::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;31971:8:::1;:13:::0;;-1:-1:-1;;31971:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31916:74::o;26699:177::-;26766:7;26798:13;26612:12;;;26536:94;26798:13;26790:5;:21;26782:69;;;;-1:-1:-1;;;26782:69:0;;10396:2:1;26782:69:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:33;10568:19;;26782:69:0;10194:399:1;26782:69:0;-1:-1:-1;26865:5:0;26699:177::o;49026:100::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49097:23:::1;:13;49113:7:::0;;49097:23:::1;:::i;29524:118::-:0;29588:7;29611:20;29623:7;29611:11;:20::i;:::-;:25;;29524:118;-1:-1:-1;;29524:118:0:o;33679:1201::-;26396:9;26409:10;26396:23;26388:66;;;;-1:-1:-1;;;26388:66:0;;10800:2:1;26388:66:0;;;10782:21:1;10839:2;10819:18;;;10812:30;10878:32;10858:18;;;10851:60;10928:18;;26388:66:0;10598:354:1;26388:66:0;33805:4:::1;33788:13;26612:12:::0;;;26536:94;33788:13:::1;:21;;33780:43;;;::::0;-1:-1:-1;;;33780:43:0;;11159:2:1;33780:43:0::1;::::0;::::1;11141:21:1::0;11198:2;11178:18;;;11171:30;-1:-1:-1;;;11217:18:1;;;11210:40;11267:18;;33780:43:0::1;10957:334:1::0;33780:43:0::1;33834:12;33864:70;33881:9;33891:42;33864:16;:70::i;:::-;:78;;33938:4;33864:78;33861:220;;;-1:-1:-1::0;;;;;33958:29:0;::::1;34034:5;33958:29:::0;;;:18:::1;:29;::::0;;;;;;;33988:42:::1;33958:73:::0;;;;;;;:81;;-1:-1:-1;;33958:81:0::1;::::0;;34061:8:::1;:4:::0;33958:81;34061:8:::1;:::i;:::-;34054:15;;33861:220;34094:70;34111:9;34121:42;34094:16;:70::i;:::-;:78;;34168:4;34094:78;34091:220;;;-1:-1:-1::0;;;;;34188:29:0;::::1;34264:5;34188:29:::0;;;:18:::1;:29;::::0;;;;;;;34218:42:::1;34188:73:::0;;;;;;;:81;;-1:-1:-1;;34188:81:0::1;::::0;;34291:8:::1;:4:::0;34188:81;34291:8:::1;:::i;:::-;34284:15;;34091:220;34324:70;34341:9;34351:42;34324:16;:70::i;:::-;:78;;34398:4;34324:78;34321:220;;;-1:-1:-1::0;;;;;34418:29:0;::::1;34494:5;34418:29:::0;;;:18:::1;:29;::::0;;;;;;;34448:42:::1;34418:73:::0;;;;;;;:81;;-1:-1:-1;;34418:81:0::1;::::0;;34521:8:::1;:4:::0;34418:81;34521:8:::1;:::i;:::-;34514:15;;34321:220;34566:1;34559:4;:8;34551:51;;;::::0;-1:-1:-1;;;34551:51:0;;11498:2:1;34551:51:0::1;::::0;::::1;11480:21:1::0;11537:2;11517:18;;;11510:30;11576:33;11556:18;;;11549:61;11627:18;;34551:51:0::1;11296:355:1::0;34551:51:0::1;34613:14;34716:3;34665:15;34682:16;34700:10;34648:63;;;;;;;;;11841:19:1::0;;;11885:2;11876:12;;11869:28;;;;11935:2;11931:15;-1:-1:-1;;11927:53:1;11922:2;11913:12;;11906:75;12006:2;11997:12;;11656:359;34648:63:0::1;;;;;;;;;;;;;34638:74;;;;;;34630:83;;:89;;;;:::i;:::-;34613:106;;34745:5;34734:9;:16;34726:25;;;::::0;::::1;;34770:2;34761:6;:11;34758:117;;;34809:4;34788:13;26612:12:::0;;;26536:94;34788:13:::1;:17;::::0;34804:1:::1;34788:17;:::i;:::-;:25;;34780:56;;;;-1:-1:-1::0;;;34780:56:0::1;;;;;;;:::i;:::-;34843:24;34853:10;34865:1;34843:9;:24::i;28401:211::-:0;28465:7;-1:-1:-1;;;;;28489:19:0;;28481:75;;;;-1:-1:-1;;;28481:75:0;;12471:2:1;28481:75:0;;;12453:21:1;12510:2;12490:18;;;12483:30;12549:34;12529:18;;;12522:62;-1:-1:-1;;;12600:18:1;;;12593:41;12651:19;;28481:75:0;12269:407:1;28481:75:0;-1:-1:-1;;;;;;28578:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28578:27:0;;28401:211::o;4730:103::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;31830:80::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;31888:11:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;31888:16:0;;::::1;::::0;;;::::1;::::0;;31830:80::o;49432:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;49553:20:0;49565:7;49553:11;:20::i;29856:98::-;29912:13;29941:7;29934:14;;;;;:::i;31550:274::-;-1:-1:-1;;;;;31641:24:0;;2883:10;31641:24;;31633:63;;;;-1:-1:-1;;;31633:63:0;;12883:2:1;31633:63:0;;;12865:21:1;12922:2;12902:18;;;12895:30;12961:28;12941:18;;;12934:56;13007:18;;31633:63:0;12681:350:1;31633:63:0;2883:10;31705:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31705:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31705:53:0;;;;;;;;;;31770:48;;540:41:1;;;31705:42:0;;2883:10;31770:48;;513:18:1;31770:48:0;;;;;;;31550:274;;:::o;47966:299::-;26396:9;26409:10;26396:23;26388:66;;;;-1:-1:-1;;;26388:66:0;;10800:2:1;26388:66:0;;;10782:21:1;10839:2;10819:18;;;10812:30;10878:32;10858:18;;;10851:60;10928:18;;26388:66:0;10598:354:1;26388:66:0;48100:3:::1;48088:8;48072:13;26612:12:::0;;;26536:94;48072:13:::1;:24;;;;:::i;:::-;:31;;48064:62;;;;-1:-1:-1::0;;;48064:62:0::1;;;;;;;:::i;:::-;48175:1;48163:8;48136:24;48149:10;48136:12;:24::i;:::-;:35;;;;:::i;:::-;:40;48133:127;;48184:24;48194:10;48206:1;48184:9;:24::i;:::-;47966:299:::0;:::o;48133:127::-:1;48229:23;48243:8;48229:13;:23::i;49132:181::-:0;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45491:1:::1;46089:7;;:19;;46081:63;;;::::0;-1:-1:-1;;;46081:63:0;;13238:2:1;46081:63:0::1;::::0;::::1;13220:21:1::0;13277:2;13257:18;;;13250:30;13316:33;13296:18;;;13289:61;13367:18;;46081:63:0::1;13036:355:1::0;46081:63:0::1;45491:1;46222:7;:18:::0;49215:49:::2;::::0;49197:12:::2;::::0;49215:10:::2;::::0;49238:21:::2;::::0;49197:12;49215:49;49197:12;49215:49;49238:21;49215:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49196:68;;;49279:7;49271:36;;;::::0;-1:-1:-1;;;49271:36:0;;13808:2:1;49271:36:0::2;::::0;::::2;13790:21:1::0;13847:2;13827:18;;;13820:30;-1:-1:-1;;;13866:18:1;;;13859:46;13922:18;;49271:36:0::2;13606:340:1::0;49271:36:0::2;-1:-1:-1::0;45447:1:0::1;46401:7;:22:::0;49132:181::o;35903:311::-;36040:28;36050:4;36056:2;36060:7;36040:9;:28::i;:::-;36091:48;36114:4;36120:2;36124:7;36133:5;36091:22;:48::i;:::-;36075:133;;;;-1:-1:-1;;;36075:133:0;;;;;;;:::i;:::-;35903:311;;;;:::o;30017:450::-;30115:13;30156:16;30164:7;36540:12;;-1:-1:-1;36530:22:0;36453:105;30156:16;30140:97;;;;-1:-1:-1;;;30140:97:0;;14573:2:1;30140:97:0;;;14555:21:1;14612:2;14592:18;;;14585:30;14651:34;14631:18;;;14624:62;-1:-1:-1;;;14702:18:1;;;14695:45;14757:19;;30140:97:0;14371:411:1;30140:97:0;30246:21;30270:10;:8;:10::i;:::-;30291:6;;30246:34;;-1:-1:-1;30291:6:0;;;;;30287:50;;30321:7;30017:450;-1:-1:-1;;30017:450:0:o;30287:50::-;30381:1;30363:7;30357:21;:25;:104;;;;;;;;;;;;;;;;;30418:7;30427:18;:7;:16;:18::i;:::-;30401:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30357:104;30343:118;30017:450;-1:-1:-1;;;30017:450:0:o;49319:107::-;49377:7;49400:20;49414:5;49400:13;:20::i;34943:186::-;-1:-1:-1;;;;;35088:25:0;;;35065:4;35088:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34943:186::o;31996:83::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;32057:9:::1;:16:::0;31996:83::o;4988:201::-;4125:7;4152:6;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;15464:2:1;5069:73:0::1;::::0;::::1;15446:21:1::0;15503:2;15483:18;;;15476:30;15542:34;15522:18;;;15515:62;-1:-1:-1;;;15593:18:1;;;15586:36;15639:19;;5069:73:0::1;15262:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;32161:1512::-:0;32244:8;;;;32236:37;;;;-1:-1:-1;;;32236:37:0;;15871:2:1;32236:37:0;;;15853:21:1;15910:2;15890:18;;;15883:30;-1:-1:-1;;;15929:18:1;;;15922:46;15985:18;;32236:37:0;15669:340:1;32236:37:0;-1:-1:-1;;;;;32292:22:0;;;;;;:11;:22;;;;;;:27;32284:74;;;;-1:-1:-1;;;32284:74:0;;16216:2:1;32284:74:0;;;16198:21:1;16255:2;16235:18;;;16228:30;16294:34;16274:18;;;16267:62;-1:-1:-1;;;16345:18:1;;;16338:33;16388:19;;32284:74:0;16014:399:1;32284:74:0;32369:12;32399:70;32416:9;32426:42;32399:16;:70::i;:::-;:78;;32473:4;32399:78;32396:220;;;-1:-1:-1;;;;;32493:29:0;;32569:5;32493:29;;;:18;:29;;;;;;;;32523:42;32493:73;;;;;;;:81;;-1:-1:-1;;32493:81:0;;;32596:8;:4;32493:81;32596:8;:::i;:::-;32589:15;;32396:220;32629:70;32646:9;32656:42;32629:16;:70::i;:::-;:78;;32703:4;32629:78;32626:220;;;-1:-1:-1;;;;;32723:29:0;;32799:5;32723:29;;;:18;:29;;;;;;;;32753:42;32723:73;;;;;;;:81;;-1:-1:-1;;32723:81:0;;;32826:8;:4;32723:81;32826:8;:::i;:::-;32819:15;;32626:220;32859:70;32876:9;32886:42;32859:16;:70::i;:::-;:78;;32933:4;32859:78;32856:220;;;-1:-1:-1;;;;;32953:29:0;;33029:5;32953:29;;;:18;:29;;;;;;;;32983:42;32953:73;;;;;;;:81;;-1:-1:-1;;32953:81:0;;;33056:8;:4;32953:81;33056:8;:::i;:::-;33049:15;;32856:220;33086:14;33189:3;33138:15;33155:16;33173:10;33121:63;;;;;;;;;11841:19:1;;;11885:2;11876:12;;11869:28;;;;11935:2;11931:15;-1:-1:-1;;11927:53:1;11922:2;11913:12;;11906:75;12006:2;11997:12;;11656:359;33121:63:0;;;;;;;;;;;;;33111:74;;;;;;33103:83;;:89;;;;:::i;:::-;33086:106;;33214:1;33207:4;:8;33199:51;;;;-1:-1:-1;;;33199:51:0;;11498:2:1;33199:51:0;;;11480:21:1;11537:2;11517:18;;;11510:30;11576:33;11556:18;;;11549:61;11627:18;;33199:51:0;11296:355:1;33199:51:0;33276:5;33265:9;:16;33257:25;;;;;;33301:2;33292:6;:11;33289:85;;;33351:10;33339:23;;;;:11;:23;;;;;;:27;;33365:1;33339:27;:::i;:::-;33325:10;33313:23;;;;:11;:23;;;;;:53;33289:85;33383:11;;;;;;;33380:45;;;33416:6;33405:9;:17;33397:26;;;;;;33434:11;;;;;;;:34;;;;;33459:9;;33449:6;:19;;33434:34;33431:237;;;-1:-1:-1;;;;;33478:29:0;;;;;;:18;:29;;;;;;;;33508:10;33478:41;;;;;;;:48;;-1:-1:-1;;33478:48:0;33522:4;33478:48;;;33535:67;;33497:9;;33508:10;33568:33;;33497:9;;33568:19;:33::i;:::-;33535:9;:67::i;:::-;-1:-1:-1;;;;;;;33611:29:0;33655:5;33611:29;;;:18;:29;;;;;;;;33641:10;33611:41;;;;;;;:49;;-1:-1:-1;;33611:49:0;;;32161:1512::o;6780:326::-;-1:-1:-1;;;;;7075:19:0;;:23;;;6780:326::o;40140:172::-;40237:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40237:29:0;-1:-1:-1;;;;;40237:29:0;;;;;;;;;40278:28;;40237:24;;40278:28;;;;;;;40140:172;;;:::o;38505:1529::-;38602:35;38640:20;38652:7;38640:11;:20::i;:::-;38711:18;;38602:58;;-1:-1:-1;38669:22:0;;-1:-1:-1;;;;;38695:34:0;2883:10;-1:-1:-1;;;;;38695:34:0;;:81;;;-1:-1:-1;2883:10:0;38740:20;38752:7;38740:11;:20::i;:::-;-1:-1:-1;;;;;38740:36:0;;38695:81;:142;;;-1:-1:-1;38804:18:0;;38787:50;;2883:10;34943:186;:::i;38787:50::-;38669:169;;38863:17;38847:101;;;;-1:-1:-1;;;38847:101:0;;16620:2:1;38847:101:0;;;16602:21:1;16659:2;16639:18;;;16632:30;16698:34;16678:18;;;16671:62;-1:-1:-1;;;16749:18:1;;;16742:48;16807:19;;38847:101:0;16418:414:1;38847:101:0;38995:4;-1:-1:-1;;;;;38973:26:0;:13;:18;;;-1:-1:-1;;;;;38973:26:0;;38957:98;;;;-1:-1:-1;;;38957:98:0;;17039:2:1;38957:98:0;;;17021:21:1;17078:2;17058:18;;;17051:30;17117:34;17097:18;;;17090:62;-1:-1:-1;;;17168:18:1;;;17161:36;17214:19;;38957:98:0;16837:402:1;38957:98:0;-1:-1:-1;;;;;39070:16:0;;39062:66;;;;-1:-1:-1;;;39062:66:0;;17446:2:1;39062:66:0;;;17428:21:1;17485:2;17465:18;;;17458:30;17524:34;17504:18;;;17497:62;-1:-1:-1;;;17575:18:1;;;17568:35;17620:19;;39062:66:0;17244:401:1;39062:66:0;39237:49;39254:1;39258:7;39267:13;:18;;;39237:8;:49::i;:::-;-1:-1:-1;;;;;39295:18:0;;;;;;:12;:18;;;;;:31;;39325:1;;39295:18;:31;;39325:1;;-1:-1:-1;;;;;39295:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;39295:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39333:16:0;;-1:-1:-1;39333:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39333:16:0;;:29;;-1:-1:-1;;39333:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39333:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39392:43:0;;;;;;;;-1:-1:-1;;;;;39392:43:0;;;;;;39418:15;39392:43;;;;;;;;;-1:-1:-1;39369:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39369:66:0;-1:-1:-1;;;;;;39369:66:0;;;;;;;;;;;39685:11;39381:7;-1:-1:-1;39685:11:0;:::i;:::-;39748:1;39707:24;;;:11;:24;;;;;:29;39663:33;;-1:-1:-1;;;;;;39707:29:0;39703:236;;39765:20;39773:11;36540:12;;-1:-1:-1;36530:22:0;36453:105;39765:20;39761:171;;;39825:97;;;;;;;;39852:18;;-1:-1:-1;;;;;39825:97:0;;;;;;39883:28;;;;39825:97;;;;;;;;;;-1:-1:-1;39798:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;39798:124:0;-1:-1:-1;;;;;;39798:124:0;;;;;;;;;;;;39761:171;39971:7;39967:2;-1:-1:-1;;;;;39952:27:0;39961:4;-1:-1:-1;;;;;39952:27:0;;;;;;;;;;;39986:42;38595:1439;;;38505:1529;;;:::o;36564:98::-;36629:27;36639:2;36643:8;36629:27;;;;;;;;;;;;:9;:27::i;48578:204::-;48651:5;48638:9;:18;;48630:53;;;;-1:-1:-1;;;48630:53:0;;18361:2:1;48630:53:0;;;18343:21:1;18400:2;18380:18;;;18373:30;-1:-1:-1;;;18419:18:1;;;18412:52;18481:18;;48630:53:0;18159:346:1;48630:53:0;48706:5;48694:9;:17;48690:87;;;48730:10;48722:47;48751:17;48763:5;48751:9;:17;:::i;:::-;48722:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28864:606;-1:-1:-1;;;;;;;;;;;;;;;;;28981:16:0;28989:7;36540:12;;-1:-1:-1;36530:22:0;36453:105;28981:16;28973:71;;;;-1:-1:-1;;;28973:71:0;;18712:2:1;28973:71:0;;;18694:21:1;18751:2;18731:18;;;18724:30;18790:34;18770:18;;;18763:62;-1:-1:-1;;;18841:18:1;;;18834:40;18891:19;;28973:71:0;18510:406:1;28973:71:0;29053:26;29101:12;29090:7;:23;29086:93;;29145:22;29155:12;29145:7;:22;:::i;:::-;:26;;29170:1;29145:26;:::i;:::-;29124:47;;29086:93;29207:7;29187:212;29224:18;29216:4;:26;29187:212;;29261:31;29295:17;;;:11;:17;;;;;;;;;29261:51;;;;;;;;;-1:-1:-1;;;;;29261:51:0;;;;;-1:-1:-1;;;29261:51:0;;;;;;;;;;;;29325:28;29321:71;;29373:9;28864:606;-1:-1:-1;;;;28864:606:0:o;29321:71::-;-1:-1:-1;29244:6:0;;;;:::i;:::-;;;;29187:212;;;-1:-1:-1;29407:57:0;;-1:-1:-1;;;29407:57:0;;19264:2:1;29407:57:0;;;19246:21:1;19303:2;19283:18;;;19276:30;19342:34;19322:18;;;19315:62;-1:-1:-1;;;19393:18:1;;;19386:45;19448:19;;29407:57:0;19062:411:1;5349:191:0;5423:16;5442:6;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;5492:40;;5442:6;;;;;;;5492:40;;5423:16;5492:40;5412:128;5349:191;:::o;41855:690::-;41992:4;-1:-1:-1;;;;;42009:13:0;;7075:19;:23;42005:535;;42048:72;;-1:-1:-1;;;42048:72:0;;-1:-1:-1;;;;;42048:36:0;;;;;:72;;2883:10;;42099:4;;42105:7;;42114:5;;42048:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42048:72:0;;;;;;;;-1:-1:-1;;42048:72:0;;;;;;;;;;;;:::i;:::-;;;42035:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42279:13:0;;42275:215;;42312:61;;-1:-1:-1;;;42312:61:0;;;;;;;:::i;42275:215::-;42458:6;42452:13;42443:6;42439:2;42435:15;42428:38;42035:464;-1:-1:-1;;;;;;42170:55:0;-1:-1:-1;;;42170:55:0;;-1:-1:-1;42163:62:0;;42005:535;-1:-1:-1;42528:4:0;42005:535;41855:690;;;;;;:::o;48912:108::-;48972:13;49001;48994:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28618:240;28679:7;-1:-1:-1;;;;;28711:19:0;;28695:102;;;;-1:-1:-1;;;28695:102:0;;20685:2:1;28695:102:0;;;20667:21:1;20724:2;20704:18;;;20697:30;20763:34;20743:18;;;20736:62;-1:-1:-1;;;20814:18:1;;;20807:47;20871:19;;28695:102:0;20483:413:1;28695:102:0;-1:-1:-1;;;;;;28819:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28819:32:0;;-1:-1:-1;;;;;28819:32:0;;28618:240::o;37001:1272::-;37129:12;;-1:-1:-1;;;;;37156:16:0;;37148:62;;;;-1:-1:-1;;;37148:62:0;;21103:2:1;37148:62:0;;;21085:21:1;21142:2;21122:18;;;21115:30;21181:34;21161:18;;;21154:62;-1:-1:-1;;;21232:18:1;;;21225:31;21273:19;;37148:62:0;20901:397:1;37148:62:0;37347:21;37355:12;36540;;-1:-1:-1;36530:22:0;36453:105;37347:21;37346:22;37338:64;;;;-1:-1:-1;;;37338:64:0;;21505:2:1;37338:64:0;;;21487:21:1;21544:2;21524:18;;;21517:30;21583:31;21563:18;;;21556:59;21632:18;;37338:64:0;21303:353:1;37338:64:0;37429:12;37417:8;:24;;37409:71;;;;-1:-1:-1;;;37409:71:0;;21863:2:1;37409:71:0;;;21845:21:1;21902:2;21882:18;;;21875:30;21941:34;21921:18;;;21914:62;-1:-1:-1;;;21992:18:1;;;21985:32;22034:19;;37409:71:0;21661:398:1;37409:71:0;-1:-1:-1;;;;;37592:16:0;;37559:30;37592:16;;;:12;:16;;;;;;;;;37559:49;;;;;;;;;-1:-1:-1;;;;;37559:49:0;;;;;-1:-1:-1;;;37559:49:0;;;;;;;;;;;37634:119;;;;;;;;37654:19;;37559:49;;37634:119;;;37654:39;;37684:8;;37654:39;:::i;:::-;-1:-1:-1;;;;;37634:119:0;;;;;37737:8;37702:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37634:119:0;;;;;;-1:-1:-1;;;;;37615:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;37615:138:0;;;;;;;;;;;;37788:43;;;;;;;;;;;37814:15;37788:43;;;;;;;;37760:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37760:71:0;-1:-1:-1;;;;;;37760:71:0;;;;;;;;;;;;;;;;;;37772:12;;37884:281;37908:8;37904:1;:12;37884:281;;;37937:38;;37962:12;;-1:-1:-1;;;;;37937:38:0;;;37954:1;;37937:38;;37954:1;;37937:38;38002:59;38033:1;38037:2;38041:12;38055:5;38002:22;:59::i;:::-;37984:150;;;;-1:-1:-1;;;37984:150:0;;;;;;;:::i;:::-;38143:14;;;;:::i;:::-;;;;37918:3;;;;;:::i;:::-;;;;37884:281;;;-1:-1:-1;38173:12:0;:27;;;38207:60;35903:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:160::-;2753:20;;2809:13;;2802:21;2792:32;;2782:60;;2838:1;2835;2828:12;2853:180;2909:6;2962:2;2950:9;2941:7;2937:23;2933:32;2930:52;;;2978:1;2975;2968:12;2930:52;3001:26;3017:9;3001:26;:::i;3038:592::-;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3226:9;3213:23;3255:18;3296:2;3288:6;3285:14;3282:34;;;3312:1;3309;3302:12;3282:34;3350:6;3339:9;3335:22;3325:32;;3395:7;3388:4;3384:2;3380:13;3376:27;3366:55;;3417:1;3414;3407:12;3366:55;3457:2;3444:16;3483:2;3475:6;3472:14;3469:34;;;3499:1;3496;3489:12;3469:34;3544:7;3539:2;3530:6;3526:2;3522:15;3518:24;3515:37;3512:57;;;3565:1;3562;3555:12;3512:57;3596:2;3588:11;;;;;3618:6;;-1:-1:-1;3038:592:1;;-1:-1:-1;;;;3038:592:1:o;3635:186::-;3694:6;3747:2;3735:9;3726:7;3722:23;3718:32;3715:52;;;3763:1;3760;3753:12;3715:52;3786:29;3805:9;3786:29;:::i;4191:254::-;4256:6;4264;4317:2;4305:9;4296:7;4292:23;4288:32;4285:52;;;4333:1;4330;4323:12;4285:52;4356:29;4375:9;4356:29;:::i;:::-;4346:39;;4404:35;4435:2;4424:9;4420:18;4404:35;:::i;:::-;4394:45;;4191:254;;;;;:::o;4450:127::-;4511:10;4506:3;4502:20;4499:1;4492:31;4542:4;4539:1;4532:15;4566:4;4563:1;4556:15;4582:1138;4677:6;4685;4693;4701;4754:3;4742:9;4733:7;4729:23;4725:33;4722:53;;;4771:1;4768;4761:12;4722:53;4794:29;4813:9;4794:29;:::i;:::-;4784:39;;4842:38;4876:2;4865:9;4861:18;4842:38;:::i;:::-;4832:48;;4927:2;4916:9;4912:18;4899:32;4889:42;;4982:2;4971:9;4967:18;4954:32;5005:18;5046:2;5038:6;5035:14;5032:34;;;5062:1;5059;5052:12;5032:34;5100:6;5089:9;5085:22;5075:32;;5145:7;5138:4;5134:2;5130:13;5126:27;5116:55;;5167:1;5164;5157:12;5116:55;5203:2;5190:16;5225:2;5221;5218:10;5215:36;;;5231:18;;:::i;:::-;5306:2;5300:9;5274:2;5360:13;;-1:-1:-1;;5356:22:1;;;5380:2;5352:31;5348:40;5336:53;;;5404:18;;;5424:22;;;5401:46;5398:72;;;5450:18;;:::i;:::-;5490:10;5486:2;5479:22;5525:2;5517:6;5510:18;5565:7;5560:2;5555;5551;5547:11;5543:20;5540:33;5537:53;;;5586:1;5583;5576:12;5537:53;5642:2;5637;5633;5629:11;5624:2;5616:6;5612:15;5599:46;5687:1;5682:2;5677;5669:6;5665:15;5661:24;5654:35;5708:6;5698:16;;;;;;;4582:1138;;;;;;;:::o;5725:260::-;5793:6;5801;5854:2;5842:9;5833:7;5829:23;5825:32;5822:52;;;5870:1;5867;5860:12;5822:52;5893:29;5912:9;5893:29;:::i;:::-;5883:39;;5941:38;5975:2;5964:9;5960:18;5941:38;:::i;5990:380::-;6069:1;6065:12;;;;6112;;;6133:61;;6187:4;6179:6;6175:17;6165:27;;6133:61;6240:2;6232:6;6229:14;6209:18;6206:38;6203:161;;;6286:10;6281:3;6277:20;6274:1;6267:31;6321:4;6318:1;6311:15;6349:4;6346:1;6339:15;6203:161;;5990:380;;;:::o;7618:127::-;7679:10;7674:3;7670:20;7667:1;7660:31;7710:4;7707:1;7700:15;7734:4;7731:1;7724:15;7750:125;7790:4;7818:1;7815;7812:8;7809:34;;;7823:18;;:::i;:::-;-1:-1:-1;7860:9:1;;7750:125::o;8222:128::-;8262:3;8293:1;8289:6;8286:1;8283:13;8280:39;;;8299:18;;:::i;:::-;-1:-1:-1;8335:9:1;;8222:128::o;8355:342::-;8557:2;8539:21;;;8596:2;8576:18;;;8569:30;-1:-1:-1;;;8630:2:1;8615:18;;8608:48;8688:2;8673:18;;8355:342::o;8702:168::-;8742:7;8808:1;8804;8800:6;8796:14;8793:1;8790:21;8785:1;8778:9;8771:17;8767:45;8764:71;;;8815:18;;:::i;:::-;-1:-1:-1;8855:9:1;;8702:168::o;8875:356::-;9077:2;9059:21;;;9096:18;;;9089:30;9155:34;9150:2;9135:18;;9128:62;9222:2;9207:18;;8875:356::o;9639:135::-;9678:3;-1:-1:-1;;9699:17:1;;9696:43;;;9719:18;;:::i;:::-;-1:-1:-1;9766:1:1;9755:13;;9639:135::o;12020:127::-;12081:10;12076:3;12072:20;12069:1;12062:31;12112:4;12109:1;12102:15;12136:4;12133:1;12126:15;12152:112;12184:1;12210;12200:35;;12215:18;;:::i;:::-;-1:-1:-1;12249:9:1;;12152:112::o;13951:415::-;14153:2;14135:21;;;14192:2;14172:18;;;14165:30;14231:34;14226:2;14211:18;;14204:62;-1:-1:-1;;;14297:2:1;14282:18;;14275:49;14356:3;14341:19;;13951:415::o;14787:470::-;14966:3;15004:6;14998:13;15020:53;15066:6;15061:3;15054:4;15046:6;15042:17;15020:53;:::i;:::-;15136:13;;15095:16;;;;15158:57;15136:13;15095:16;15192:4;15180:17;;15158:57;:::i;:::-;15231:20;;14787:470;-1:-1:-1;;;;14787:470:1:o;17650:246::-;17690:4;-1:-1:-1;;;;;17803:10:1;;;;17773;;17825:12;;;17822:38;;;17840:18;;:::i;:::-;17877:13;;17650:246;-1:-1:-1;;;17650:246:1:o;17901:253::-;17941:3;-1:-1:-1;;;;;18030:2:1;18027:1;18023:10;18060:2;18057:1;18053:10;18091:3;18087:2;18083:12;18078:3;18075:21;18072:47;;;18099:18;;:::i;18921:136::-;18960:3;18988:5;18978:39;;18997:18;;:::i;:::-;-1:-1:-1;;;19033:18:1;;18921:136::o;19478:489::-;-1:-1:-1;;;;;19747:15:1;;;19729:34;;19799:15;;19794:2;19779:18;;19772:43;19846:2;19831:18;;19824:34;;;19894:3;19889:2;19874:18;;19867:31;;;19672:4;;19915:46;;19941:19;;19933:6;19915:46;:::i;:::-;19907:54;19478:489;-1:-1:-1;;;;;;19478:489:1:o;19972:249::-;20041:6;20094:2;20082:9;20073:7;20069:23;20065:32;20062:52;;;20110:1;20107;20100:12;20062:52;20142:9;20136:16;20161:30;20185:5;20161:30;:::i;20226:120::-;20266:1;20292;20282:35;;20297:18;;:::i;:::-;-1:-1:-1;20331:9:1;;20226:120::o;20351:127::-;20412:10;20407:3;20403:20;20400:1;20393:31;20443:4;20440:1;20433:15;20467:4;20464:1;20457:15

Swarm Source

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