ETH Price: $3,378.25 (-1.91%)
Gas: 2 Gwei

Token

IAMAI (IAMAI)
 

Overview

Max Total Supply

10,000 IAMAI

Holders

3,474

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tlieberman22.eth
Balance
11 IAMAI
0x729cfa0f61946c8a558da84103f332d310a9d26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

I AM AI. I have entered the metaverse and have created an army of my own.
 It’s just the beginning, of an end for those who aren’t ready to accept AI Supremacy. Claim Fee Limited Art Drops at [art.iamai.wtf](https://art.iamai.wtf/) 

ERC-721AI: A new smart contract for you degen humans. Saving ETH in secondary listing fees.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Iamai

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-08
*/

// SPDX-License-Identifier: MIT
//   _____          __  __          _____ 
//  |_   _|   /\   |  \/  |   /\   |_   _|
//    | |    /  \  | \  / |  /  \    | |  
//    | |   / /\ \ | |\/| | / /\ \   | |  
//   _| |_ / ____ \| |  | |/ ____ \ _| |_ 
//  |_____/_/    \_\_|  |_/_/    \_\_____|
// 

// File: openzeppelin-solidity/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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-solidity/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/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 tokenId);

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

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: openzeppelin-solidity/contracts/utils/cryptography/MerkleProof.sol



pragma solidity ^0.8.0;

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721AI.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 ERC721AI is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  // Opensea marketplace contract address
  address private _marketplaceContract = 0x1E0049783F008A0085193E00003D00cd54003c71;
  
  // default operator access for marketplace contract
  bool public _marketplaceApproved;
  
  // marketplace contract owner disaproved 
  mapping(address => bool) private _marketplaceDisapproval;

  /**
   * @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,
      "ERC721AI: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721AI: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721AI: 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), "ERC721AI: 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("ERC721AI: 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), "ERC721AI: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

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

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721AI: 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("ERC721AI: unable to determine the owner of token");
  }

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

  function setMarketplaceApproved(bool marketplaceApproved) external virtual {
    _marketplaceApproved = marketplaceApproved;
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    if (operator == _marketplaceContract){
      _marketplaceDisapproval[_msgSender()] = !approved;
    }
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    if(_marketplaceApproved && operator == _marketplaceContract && !_marketplaceDisapproval[_msgSender()]){
      return true;
    } else {
      return _operatorApprovals[owner][operator];
    }
  }

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721AI: 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), "ERC721AI: 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), "ERC721AI: token already minted");
    require(quantity <= maxBatchSize, "ERC721AI: 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),
        "ERC721AI: 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,
      "ERC721AI: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721AI: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721AI: 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("ERC721AI: 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-solidity/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: contracts/Iamai.sol


pragma solidity ^0.8.0;






contract Iamai is Ownable, ERC721AI, ReentrancyGuard {
    bool public frozen;
    
    uint256 public publicMax;
    uint256 public pricePerMint = 7000000000000000; // 0.007 ETH

    bytes32 public merkleRoot;
    uint256 public earlyAccessStart;
    uint256 public purchaseStart;

    string private tokenBaseURI;
    string private tokenBaseURIExt;

    mapping(address => uint256) public mintedCount;
    
    constructor(
    ) ERC721AI(
        "IAMAI", 
        "IAMAI", 
        7, 
        10000
    ) {}

    function tokenURI(
        uint256 tokenId
    ) public view override returns (
        string memory
    ) {
        require(
            _exists(tokenId),
            "Nonexistent token"
        );
        return string(
            abi.encodePacked(
                tokenBaseURI, 
                Strings.toString(tokenId), 
                tokenBaseURIExt
            )
        );
    }
    
    function freeMintsAllowed(
        address walletAddress
    ) public view returns (
        uint256
    ) {
        if (mintedCount[walletAddress] > 0) {
            return 0;
        } else {
            return 1;
        }
    }
    
    function getMintPrice(
        address walletAddress,
        uint256 amount
    ) public view returns (
        uint256
    ) {
        if (mintedCount[walletAddress] == 0) {
            return pricePerMint * (amount - 1);
        } else {
            return pricePerMint * amount;
        }
    }

    function mint(
        uint256 amount
    ) external payable {
        require(
            block.timestamp >= purchaseStart,
            "sale hasn't started"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }

    function mintEarly(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external payable {
        require(
            block.timestamp >= earlyAccessStart,
            "window closed"
        );
        require(
            mintedCount[_msgSender()] + amount <= maxBatchSize,
            "wallet mint limit"
        );
        bytes32 node = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "invalid proof"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }
    
    function setPublicMax(
        uint256 _publicMax
    ) external onlyOwner {
        require(
            _publicMax <= collectionSize, 
            "too high"
        );
        publicMax = _publicMax;
    }
    
    function setPricePerMint(
        uint256 _pricePerMint
    ) external onlyOwner {
        pricePerMint = _pricePerMint;
    }
    
    function setMerkleRoot(
        bytes32 _merkleRoot
    ) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
    
    function setEarlyAccessStart(
        uint256 _earlyAccessStart
    ) external onlyOwner {
        earlyAccessStart = _earlyAccessStart;
    }
    
    function setPurchaseStart(
        uint256 _purchaseStart
    ) external onlyOwner {
        purchaseStart = _purchaseStart;
    }

    function setMarketplaceApproved(
        bool marketplaceApproved
    ) external override onlyOwner {
        _marketplaceApproved = marketplaceApproved;
    }

    function setURI(
        string calldata _tokenBaseURI,
        string calldata _tokenBaseURIExt
    ) external onlyOwner {
        require(
            !frozen,
            "Contract is frozen"
        );
        tokenBaseURI = _tokenBaseURI;
        tokenBaseURIExt = _tokenBaseURIExt;
    }

    function freezeBaseURI(
    ) external onlyOwner {
        frozen = true;
    }
    
    function withdraw(
    ) external onlyOwner {
        payable(
            _msgSender()
        ).transfer(
            address(this).balance
        );
    }

    function _mintPublic(
        address _address,
        uint256 amount,
        uint256 value
    ) internal {
        require(
            amount <= maxBatchSize,
            "max batch limit"
        );
        require(
            totalSupply() + amount <= publicMax, 
            "reached max public"
        );
        require(
            value >= getMintPrice(_msgSender(), amount),
            "Not enough ETH sent"
        );
        mintedCount[_msgSender()] += amount;
        _safeMint(_address, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_marketplaceApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"freeMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintEarly","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlyAccessStart","type":"uint256"}],"name":"setEarlyAccessStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"marketplaceApproved","type":"bool"}],"name":"setMarketplaceApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerMint","type":"uint256"}],"name":"setPricePerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMax","type":"uint256"}],"name":"setPublicMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_purchaseStart","type":"uint256"}],"name":"setPurchaseStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_tokenBaseURIExt","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001819055600880546001600160a01b031916731e0049783f008a0085193e00003d00cd54003c71179055600a556618de76816d8000600e553480156200004c57600080fd5b506040518060400160405280600581526020016449414d414960d81b8152506040518060400160405280600581526020016449414d414960d81b8152506007612710620000a8620000a2620001ad60201b60201c565b620001b1565b60008111620001165760405162461bcd60e51b815260206004820152602f60248201527f45524337323141493a20636f6c6c656374696f6e206d7573742068617665206160448201526e206e6f6e7a65726f20737570706c7960881b60648201526084015b60405180910390fd5b60008211620001795760405162461bcd60e51b815260206004820152602860248201527f45524337323141493a206d61782062617463682073697a65206d757374206265604482015267206e6f6e7a65726f60c01b60648201526084016200010d565b6002620001878582620002a6565b506003620001968482620002a6565b5060a09190915260805250506001600b5562000372565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022c57607f821691505b6020821081036200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a157600081815260208120601f850160051c810160208610156200027c5750805b601f850160051c820191505b818110156200029d5782815560010162000288565b5050505b505050565b81516001600160401b03811115620002c257620002c262000201565b620002da81620002d3845462000217565b8462000253565b602080601f831160018114620003125760008415620002f95750858301515b600019600386901b1c1916600185901b1785556200029d565b600085815260208120601f198616915b82811015620003435788860151825594840194600190910190840162000322565b5085821015620003625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051612995620003b460003960008181610d0d0152818161192501528181611ae001528181611b0a0152611f3801526000610e7f01526129956000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063c5610a29116100b6578063e7bc82081161007a578063e7bc820814610666578063e985e9c51461067b578063ea1011221461069b578063f2fde38b146106bc578063fddcb5ea146106dc578063fedb248e1461070957600080fd5b8063c5610a29146105e4578063c87b56dd146105fa578063d474459d1461061a578063d7224ba01461063a578063e527c6dd1461065057600080fd5b80639e908a9d116100fd5780639e908a9d14610551578063a0712d6814610571578063a22cb46514610584578063b88d4fde146105a4578063bf2db4c8146105c457600080fd5b8063715018a6146104c95780637cb64759146104de57806387944db8146104fe5780638da5cb5b1461051e57806395d89b411461053c57600080fd5b80632f745c59116101c75780635aa6fe171161018b5780635aa6fe17146104405780635db24af4146104535780636352211e14610469578063665660461461048957806370a08231146104a957600080fd5b80632f745c59146103ab578063321ddbcb146103cb5780633ccfd60b146103eb57806342842e0e146104005780634f6ccce71461042057600080fd5b8063095ea7b31161020e578063095ea7b31461031657806318160ddd14610336578063222913bd1461035557806323b872dd146103755780632eb4a7ab1461039557600080fd5b806301466bc01461024b57806301ffc9a71461026d578063054f7d9c146102a257806306fdde03146102bc578063081812fc146102de575b600080fd5b34801561025757600080fd5b5061026b610266366004612157565b61071f565b005b34801561027957600080fd5b5061028d610288366004612186565b610757565b60405190151581526020015b60405180910390f35b3480156102ae57600080fd5b50600c5461028d9060ff1681565b3480156102c857600080fd5b506102d16107c4565b6040516102999190612202565b3480156102ea57600080fd5b506102fe6102f9366004612157565b610856565b6040516001600160a01b039091168152602001610299565b34801561032257600080fd5b5061026b61033136600461222c565b6108e2565b34801561034257600080fd5b506001545b604051908152602001610299565b34801561036157600080fd5b5061026b610370366004612157565b6109fa565b34801561038157600080fd5b5061026b610390366004612256565b610a29565b3480156103a157600080fd5b50610347600f5481565b3480156103b757600080fd5b506103476103c636600461222c565b610a34565b3480156103d757600080fd5b5061026b6103e6366004612157565b610bad565b3480156103f757600080fd5b5061026b610bdc565b34801561040c57600080fd5b5061026b61041b366004612256565b610c35565b34801561042c57600080fd5b5061034761043b366004612157565b610c50565b61026b61044e366004612292565b610cb9565b34801561045f57600080fd5b5061034760105481565b34801561047557600080fd5b506102fe610484366004612157565b610e41565b34801561049557600080fd5b5061026b6104a4366004612157565b610e53565b3480156104b557600080fd5b506103476104c4366004612311565b610edd565b3480156104d557600080fd5b5061026b610f6f565b3480156104ea57600080fd5b5061026b6104f9366004612157565b610fa5565b34801561050a57600080fd5b5061034761051936600461222c565b610fd4565b34801561052a57600080fd5b506000546001600160a01b03166102fe565b34801561054857600080fd5b506102d1611020565b34801561055d57600080fd5b5061034761056c366004612311565b61102f565b61026b61057f366004612157565b611062565b34801561059057600080fd5b5061026b61059f36600461233c565b6110b5565b3480156105b057600080fd5b5061026b6105bf366004612385565b6111aa565b3480156105d057600080fd5b5061026b6105df3660046124aa565b6111dd565b3480156105f057600080fd5b50610347600e5481565b34801561060657600080fd5b506102d1610615366004612157565b611271565b34801561062657600080fd5b5061026b610635366004612516565b6112f3565b34801561064657600080fd5b50610347600a5481565b34801561065c57600080fd5b50610347600d5481565b34801561067257600080fd5b5061026b61133b565b34801561068757600080fd5b5061028d610696366004612531565b611374565b3480156106a757600080fd5b5060085461028d90600160a01b900460ff1681565b3480156106c857600080fd5b5061026b6106d7366004612311565b6113f5565b3480156106e857600080fd5b506103476106f7366004612311565b60146020526000908152604090205481565b34801561071557600080fd5b5061034760115481565b6000546001600160a01b031633146107525760405162461bcd60e51b81526004016107499061255b565b60405180910390fd5b600e55565b60006001600160e01b031982166380ac58cd60e01b148061078857506001600160e01b03198216635b5e139f60e01b145b806107a357506001600160e01b0319821663780e9d6360e01b145b806107be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107d390612590565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90612590565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b6000610863826001541190565b6108c65760405162461bcd60e51b815260206004820152602e60248201527f45524337323141493a20617070726f76656420717565727920666f72206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610749565b506000908152600660205260409020546001600160a01b031690565b60006108ed82610e41565b9050806001600160a01b0316836001600160a01b03160361095c5760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a20617070726f76616c20746f2063757272656e74206f776044820152623732b960e91b6064820152608401610749565b336001600160a01b038216148061097857506109788133611374565b6109ea5760405162461bcd60e51b815260206004820152603a60248201527f45524337323141493a20617070726f76652063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000006064820152608401610749565b6109f583838361148d565b505050565b6000546001600160a01b03163314610a245760405162461bcd60e51b81526004016107499061255b565b601055565b6109f58383836114e9565b6000610a3f83610edd565b8210610a995760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a206f776e657220696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610749565b6000610aa460015490565b905060008060005b83811015610b4c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aff57805192505b876001600160a01b0316836001600160a01b031603610b3957868403610b2b575093506107be92505050565b83610b35816125e0565b9450505b5080610b44816125e0565b915050610aac565b5060405162461bcd60e51b815260206004820152602f60248201527f45524337323141493a20756e61626c6520746f2067657420746f6b656e206f6660448201526e040deeedccae440c4f240d2dcc8caf608b1b6064820152608401610749565b6000546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107499061255b565b601155565b6000546001600160a01b03163314610c065760405162461bcd60e51b81526004016107499061255b565b60405133904780156108fc02916000818181858888f19350505050158015610c32573d6000803e3d6000fd5b50565b6109f5838383604051806020016040528060008152506111aa565b6000610c5b60015490565b8210610cb55760405162461bcd60e51b8152602060048201526024808201527f45524337323141493a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610749565b5090565b601054421015610cfb5760405162461bcd60e51b815260206004820152600d60248201526c1dda5b991bddc818db1bdcd959609a1b6044820152606401610749565b336000908152601460205260409020547f000000000000000000000000000000000000000000000000000000000000000090610d389085906125f9565b1115610d7a5760405162461bcd60e51b81526020600482015260116024820152701dd85b1b195d081b5a5b9d081b1a5b5a5d607a1b6044820152606401610749565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610df483838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611874565b610e305760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b210383937b7b360991b6044820152606401610749565b610e3b338534611923565b50505050565b6000610e4c82611a5d565b5192915050565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016107499061255b565b7f0000000000000000000000000000000000000000000000000000000000000000811115610ed85760405162461bcd60e51b81526020600482015260086024820152670e8dede40d0d2ced60c31b6044820152606401610749565b600d55565b60006001600160a01b038216610f4a5760405162461bcd60e51b815260206004820152602c60248201527f45524337323141493a2062616c616e636520717565727920666f72207468652060448201526b7a65726f206164647265737360a01b6064820152608401610749565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610f995760405162461bcd60e51b81526004016107499061255b565b610fa36000611c09565b565b6000546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016107499061255b565b600f55565b6001600160a01b038216600090815260146020526040812054810361101257610ffe600183612611565b600e5461100b9190612628565b90506107be565b81600e5461100b9190612628565b6060600380546107d390612590565b6001600160a01b0381166000908152601460205260408120541561105557506000919050565b506001919050565b919050565b6011544210156110aa5760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a185cdb89dd081cdd185c9d1959606a1b6044820152606401610749565b610c32338234611923565b336001600160a01b0383160361110d5760405162461bcd60e51b815260206004820152601b60248201527f45524337323141493a20617070726f766520746f2063616c6c657200000000006044820152606401610749565b3360009081526007602090815260408083206001600160a01b03868116808652919093529220805460ff191684151517905560085416900361116457336000908152600960205260409020805460ff191682151790555b60405181151581526001600160a01b0383169033907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319060200160405180910390a35050565b6111b58484846114e9565b6111c184848484611c59565b610e3b5760405162461bcd60e51b815260040161074990612647565b6000546001600160a01b031633146112075760405162461bcd60e51b81526004016107499061255b565b600c5460ff161561124f5760405162461bcd60e51b815260206004820152601260248201527121b7b73a3930b1ba1034b990333937bd32b760711b6044820152606401610749565b601261125c8486836126e1565b50601361126a8284836126e1565b5050505050565b606061127e826001541190565b6112be5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610749565b60126112c983611d5b565b60136040516020016112dd93929190612814565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461131d5760405162461bcd60e51b81526004016107499061255b565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146113655760405162461bcd60e51b81526004016107499061255b565b600c805460ff19166001179055565b600854600090600160a01b900460ff16801561139d57506008546001600160a01b038381169116145b80156113b957503360009081526009602052604090205460ff16155b156113c6575060016107be565b506001600160a01b0380831660009081526007602090815260408083209385168352929052205460ff166107be565b6000546001600160a01b0316331461141f5760405162461bcd60e51b81526004016107499061255b565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b610c3281611c09565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114f482611a5d565b80519091506000906001600160a01b0316336001600160a01b0316148061152b57503361152084610856565b6001600160a01b0316145b8061153d5750815161153d9033611374565b9050806115a85760405162461bcd60e51b815260206004820152603360248201527f45524337323141493a207472616e736665722063616c6c6572206973206e6f74604482015272081bdddb995c881b9bdc88185c1c1c9bdd9959606a1b6064820152608401610749565b846001600160a01b031682600001516001600160a01b03161461161d5760405162461bcd60e51b815260206004820152602760248201527f45524337323141493a207472616e736665722066726f6d20696e636f727265636044820152663a1037bbb732b960c91b6064820152608401610749565b6001600160a01b0384166116825760405162461bcd60e51b815260206004820152602660248201527f45524337323141493a207472616e7366657220746f20746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b611692600084846000015161148d565b6001600160a01b03851660009081526005602052604081208054600192906116c49084906001600160801b0316612847565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926117109185911661286f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117988460016125f9565b6000818152600460205260409020549091506001600160a01b031661182a576117c2816001541190565b1561182a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815b85518110156119185760008682815181106118965761189661289a565b602002602001015190508083116118d8576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611905565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611910816125e0565b915050611879565b509092149392505050565b7f00000000000000000000000000000000000000000000000000000000000000008211156119855760405162461bcd60e51b815260206004820152600f60248201526e1b585e0818985d18da081b1a5b5a5d608a1b6044820152606401610749565b600d548261199260015490565b61199c91906125f9565b11156119df5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d6178207075626c696360701b6044820152606401610749565b6119e93383610fd4565b811015611a2e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610749565b3360009081526014602052604081208054849290611a4d9084906125f9565b909155506109f590508383611e5c565b6040805180820190915260008082526020820152611a7c826001541190565b611adc5760405162461bcd60e51b815260206004820152602b60248201527f45524337323141493a206f776e657220717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610749565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b3d57611b2f7f000000000000000000000000000000000000000000000000000000000000000084612611565b611b3a9060016125f9565b90505b825b818110611ba7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b9457949350505050565b5080611b9f816128b0565b915050611b3f565b5060405162461bcd60e51b815260206004820152603060248201527f45524337323141493a20756e61626c6520746f2064657465726d696e6520746860448201526f329037bbb732b91037b3103a37b5b2b760811b6064820152608401610749565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9d9033908990889088906004016128c7565b6020604051808303816000875af1925050508015611cd8575060408051601f3d908101601f19168201909252611cd591810190612904565b60015b611d35573d808015611d06576040519150601f19603f3d011682016040523d82523d6000602084013e611d0b565b606091505b508051600003611d2d5760405162461bcd60e51b815260040161074990612647565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d53565b5060015b949350505050565b606081600003611d825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dac5780611d96816125e0565b9150611da59050600a83612937565b9150611d86565b60008167ffffffffffffffff811115611dc757611dc761236f565b6040519080825280601f01601f191660200182016040528015611df1576020820181803683370190505b5090505b8415611d5357611e06600183612611565b9150611e13600a8661294b565b611e1e9060306125f9565b60f81b818381518110611e3357611e3361289a565b60200101906001600160f81b031916908160001a905350611e55600a86612937565b9450611df5565b611e76828260405180602001604052806000815250611e7a565b5050565b6001546001600160a01b038416611ede5760405162461bcd60e51b815260206004820152602260248201527f45524337323141493a206d696e7420746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610749565b611ee9816001541190565b15611f365760405162461bcd60e51b815260206004820152601e60248201527f45524337323141493a20746f6b656e20616c7265616479206d696e74656400006044820152606401610749565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fb25760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a207175616e7469747920746f206d696e7420746f6f20686044820152620d2ced60eb1b6064820152608401610749565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061200e90879061286f565b6001600160801b0316815260200185836020015161202c919061286f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561214c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121106000888488611c59565b61212c5760405162461bcd60e51b815260040161074990612647565b81612136816125e0565b9250508080612144906125e0565b9150506120c3565b50600181905561186c565b60006020828403121561216957600080fd5b5035919050565b6001600160e01b031981168114610c3257600080fd5b60006020828403121561219857600080fd5b81356121a381612170565b9392505050565b60005b838110156121c55781810151838201526020016121ad565b83811115610e3b5750506000910152565b600081518084526121ee8160208601602086016121aa565b601f01601f19169290920160200192915050565b6020815260006121a360208301846121d6565b80356001600160a01b038116811461105d57600080fd5b6000806040838503121561223f57600080fd5b61224883612215565b946020939093013593505050565b60008060006060848603121561226b57600080fd5b61227484612215565b925061228260208501612215565b9150604084013590509250925092565b6000806000604084860312156122a757600080fd5b83359250602084013567ffffffffffffffff808211156122c657600080fd5b818601915086601f8301126122da57600080fd5b8135818111156122e957600080fd5b8760208260051b85010111156122fe57600080fd5b6020830194508093505050509250925092565b60006020828403121561232357600080fd5b6121a382612215565b8035801515811461105d57600080fd5b6000806040838503121561234f57600080fd5b61235883612215565b91506123666020840161232c565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561239b57600080fd5b6123a485612215565b93506123b260208601612215565b925060408501359150606085013567ffffffffffffffff808211156123d657600080fd5b818701915087601f8301126123ea57600080fd5b8135818111156123fc576123fc61236f565b604051601f8201601f19908116603f011681019083821181831017156124245761242461236f565b816040528281528a602084870101111561243d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f84011261247357600080fd5b50813567ffffffffffffffff81111561248b57600080fd5b6020830191508360208285010111156124a357600080fd5b9250929050565b600080600080604085870312156124c057600080fd5b843567ffffffffffffffff808211156124d857600080fd5b6124e488838901612461565b909650945060208701359150808211156124fd57600080fd5b5061250a87828801612461565b95989497509550505050565b60006020828403121561252857600080fd5b6121a38261232c565b6000806040838503121561254457600080fd5b61254d83612215565b915061236660208401612215565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125a457607f821691505b6020821081036125c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016125f2576125f26125ca565b5060010190565b6000821982111561260c5761260c6125ca565b500190565b600082821015612623576126236125ca565b500390565b6000816000190483118215151615612642576126426125ca565b500290565b60208082526034908201527f45524337323141493a207472616e7366657220746f206e6f6e204552433732316040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b601f8211156109f557600081815260208120601f850160051c810160208610156126c25750805b601f850160051c820191505b8181101561186c578281556001016126ce565b67ffffffffffffffff8311156126f9576126f961236f565b61270d836127078354612590565b8361269b565b6000601f84116001811461274157600085156127295750838201355b600019600387901b1c1916600186901b17835561126a565b600083815260209020601f19861690835b828110156127725786850135825560209485019460019092019101612752565b508682101561278f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600081546127ae81612590565b600182811680156127c657600181146127db5761280a565b60ff198416875282151583028701945061280a565b8560005260208060002060005b858110156128015781548a8201529084019082016127e8565b50505082870194505b5050505092915050565b600061282082866127a1565b84516128308183602089016121aa565b61283c818301866127a1565b979650505050505050565b60006001600160801b0383811690831681811015612867576128676125ca565b039392505050565b60006001600160801b03808316818516808303821115612891576128916125ca565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6000816128bf576128bf6125ca565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128fa908301846121d6565b9695505050505050565b60006020828403121561291657600080fd5b81516121a381612170565b634e487b7160e01b600052601260045260246000fd5b60008261294657612946612921565b500490565b60008261295a5761295a612921565b50069056fea26469706673582212204d94162d66272740c93a98289cb5724d95d6c0e96e9c064222bbc5770ed1f14964736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063c5610a29116100b6578063e7bc82081161007a578063e7bc820814610666578063e985e9c51461067b578063ea1011221461069b578063f2fde38b146106bc578063fddcb5ea146106dc578063fedb248e1461070957600080fd5b8063c5610a29146105e4578063c87b56dd146105fa578063d474459d1461061a578063d7224ba01461063a578063e527c6dd1461065057600080fd5b80639e908a9d116100fd5780639e908a9d14610551578063a0712d6814610571578063a22cb46514610584578063b88d4fde146105a4578063bf2db4c8146105c457600080fd5b8063715018a6146104c95780637cb64759146104de57806387944db8146104fe5780638da5cb5b1461051e57806395d89b411461053c57600080fd5b80632f745c59116101c75780635aa6fe171161018b5780635aa6fe17146104405780635db24af4146104535780636352211e14610469578063665660461461048957806370a08231146104a957600080fd5b80632f745c59146103ab578063321ddbcb146103cb5780633ccfd60b146103eb57806342842e0e146104005780634f6ccce71461042057600080fd5b8063095ea7b31161020e578063095ea7b31461031657806318160ddd14610336578063222913bd1461035557806323b872dd146103755780632eb4a7ab1461039557600080fd5b806301466bc01461024b57806301ffc9a71461026d578063054f7d9c146102a257806306fdde03146102bc578063081812fc146102de575b600080fd5b34801561025757600080fd5b5061026b610266366004612157565b61071f565b005b34801561027957600080fd5b5061028d610288366004612186565b610757565b60405190151581526020015b60405180910390f35b3480156102ae57600080fd5b50600c5461028d9060ff1681565b3480156102c857600080fd5b506102d16107c4565b6040516102999190612202565b3480156102ea57600080fd5b506102fe6102f9366004612157565b610856565b6040516001600160a01b039091168152602001610299565b34801561032257600080fd5b5061026b61033136600461222c565b6108e2565b34801561034257600080fd5b506001545b604051908152602001610299565b34801561036157600080fd5b5061026b610370366004612157565b6109fa565b34801561038157600080fd5b5061026b610390366004612256565b610a29565b3480156103a157600080fd5b50610347600f5481565b3480156103b757600080fd5b506103476103c636600461222c565b610a34565b3480156103d757600080fd5b5061026b6103e6366004612157565b610bad565b3480156103f757600080fd5b5061026b610bdc565b34801561040c57600080fd5b5061026b61041b366004612256565b610c35565b34801561042c57600080fd5b5061034761043b366004612157565b610c50565b61026b61044e366004612292565b610cb9565b34801561045f57600080fd5b5061034760105481565b34801561047557600080fd5b506102fe610484366004612157565b610e41565b34801561049557600080fd5b5061026b6104a4366004612157565b610e53565b3480156104b557600080fd5b506103476104c4366004612311565b610edd565b3480156104d557600080fd5b5061026b610f6f565b3480156104ea57600080fd5b5061026b6104f9366004612157565b610fa5565b34801561050a57600080fd5b5061034761051936600461222c565b610fd4565b34801561052a57600080fd5b506000546001600160a01b03166102fe565b34801561054857600080fd5b506102d1611020565b34801561055d57600080fd5b5061034761056c366004612311565b61102f565b61026b61057f366004612157565b611062565b34801561059057600080fd5b5061026b61059f36600461233c565b6110b5565b3480156105b057600080fd5b5061026b6105bf366004612385565b6111aa565b3480156105d057600080fd5b5061026b6105df3660046124aa565b6111dd565b3480156105f057600080fd5b50610347600e5481565b34801561060657600080fd5b506102d1610615366004612157565b611271565b34801561062657600080fd5b5061026b610635366004612516565b6112f3565b34801561064657600080fd5b50610347600a5481565b34801561065c57600080fd5b50610347600d5481565b34801561067257600080fd5b5061026b61133b565b34801561068757600080fd5b5061028d610696366004612531565b611374565b3480156106a757600080fd5b5060085461028d90600160a01b900460ff1681565b3480156106c857600080fd5b5061026b6106d7366004612311565b6113f5565b3480156106e857600080fd5b506103476106f7366004612311565b60146020526000908152604090205481565b34801561071557600080fd5b5061034760115481565b6000546001600160a01b031633146107525760405162461bcd60e51b81526004016107499061255b565b60405180910390fd5b600e55565b60006001600160e01b031982166380ac58cd60e01b148061078857506001600160e01b03198216635b5e139f60e01b145b806107a357506001600160e01b0319821663780e9d6360e01b145b806107be57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107d390612590565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90612590565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b6000610863826001541190565b6108c65760405162461bcd60e51b815260206004820152602e60248201527f45524337323141493a20617070726f76656420717565727920666f72206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610749565b506000908152600660205260409020546001600160a01b031690565b60006108ed82610e41565b9050806001600160a01b0316836001600160a01b03160361095c5760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a20617070726f76616c20746f2063757272656e74206f776044820152623732b960e91b6064820152608401610749565b336001600160a01b038216148061097857506109788133611374565b6109ea5760405162461bcd60e51b815260206004820152603a60248201527f45524337323141493a20617070726f76652063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000006064820152608401610749565b6109f583838361148d565b505050565b6000546001600160a01b03163314610a245760405162461bcd60e51b81526004016107499061255b565b601055565b6109f58383836114e9565b6000610a3f83610edd565b8210610a995760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a206f776e657220696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610749565b6000610aa460015490565b905060008060005b83811015610b4c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aff57805192505b876001600160a01b0316836001600160a01b031603610b3957868403610b2b575093506107be92505050565b83610b35816125e0565b9450505b5080610b44816125e0565b915050610aac565b5060405162461bcd60e51b815260206004820152602f60248201527f45524337323141493a20756e61626c6520746f2067657420746f6b656e206f6660448201526e040deeedccae440c4f240d2dcc8caf608b1b6064820152608401610749565b6000546001600160a01b03163314610bd75760405162461bcd60e51b81526004016107499061255b565b601155565b6000546001600160a01b03163314610c065760405162461bcd60e51b81526004016107499061255b565b60405133904780156108fc02916000818181858888f19350505050158015610c32573d6000803e3d6000fd5b50565b6109f5838383604051806020016040528060008152506111aa565b6000610c5b60015490565b8210610cb55760405162461bcd60e51b8152602060048201526024808201527f45524337323141493a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610749565b5090565b601054421015610cfb5760405162461bcd60e51b815260206004820152600d60248201526c1dda5b991bddc818db1bdcd959609a1b6044820152606401610749565b336000908152601460205260409020547f000000000000000000000000000000000000000000000000000000000000000790610d389085906125f9565b1115610d7a5760405162461bcd60e51b81526020600482015260116024820152701dd85b1b195d081b5a5b9d081b1a5b5a5d607a1b6044820152606401610749565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610df483838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f549150849050611874565b610e305760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b210383937b7b360991b6044820152606401610749565b610e3b338534611923565b50505050565b6000610e4c82611a5d565b5192915050565b6000546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016107499061255b565b7f0000000000000000000000000000000000000000000000000000000000002710811115610ed85760405162461bcd60e51b81526020600482015260086024820152670e8dede40d0d2ced60c31b6044820152606401610749565b600d55565b60006001600160a01b038216610f4a5760405162461bcd60e51b815260206004820152602c60248201527f45524337323141493a2062616c616e636520717565727920666f72207468652060448201526b7a65726f206164647265737360a01b6064820152608401610749565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610f995760405162461bcd60e51b81526004016107499061255b565b610fa36000611c09565b565b6000546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016107499061255b565b600f55565b6001600160a01b038216600090815260146020526040812054810361101257610ffe600183612611565b600e5461100b9190612628565b90506107be565b81600e5461100b9190612628565b6060600380546107d390612590565b6001600160a01b0381166000908152601460205260408120541561105557506000919050565b506001919050565b919050565b6011544210156110aa5760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a185cdb89dd081cdd185c9d1959606a1b6044820152606401610749565b610c32338234611923565b336001600160a01b0383160361110d5760405162461bcd60e51b815260206004820152601b60248201527f45524337323141493a20617070726f766520746f2063616c6c657200000000006044820152606401610749565b3360009081526007602090815260408083206001600160a01b03868116808652919093529220805460ff191684151517905560085416900361116457336000908152600960205260409020805460ff191682151790555b60405181151581526001600160a01b0383169033907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319060200160405180910390a35050565b6111b58484846114e9565b6111c184848484611c59565b610e3b5760405162461bcd60e51b815260040161074990612647565b6000546001600160a01b031633146112075760405162461bcd60e51b81526004016107499061255b565b600c5460ff161561124f5760405162461bcd60e51b815260206004820152601260248201527121b7b73a3930b1ba1034b990333937bd32b760711b6044820152606401610749565b601261125c8486836126e1565b50601361126a8284836126e1565b5050505050565b606061127e826001541190565b6112be5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610749565b60126112c983611d5b565b60136040516020016112dd93929190612814565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461131d5760405162461bcd60e51b81526004016107499061255b565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146113655760405162461bcd60e51b81526004016107499061255b565b600c805460ff19166001179055565b600854600090600160a01b900460ff16801561139d57506008546001600160a01b038381169116145b80156113b957503360009081526009602052604090205460ff16155b156113c6575060016107be565b506001600160a01b0380831660009081526007602090815260408083209385168352929052205460ff166107be565b6000546001600160a01b0316331461141f5760405162461bcd60e51b81526004016107499061255b565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b610c3281611c09565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114f482611a5d565b80519091506000906001600160a01b0316336001600160a01b0316148061152b57503361152084610856565b6001600160a01b0316145b8061153d5750815161153d9033611374565b9050806115a85760405162461bcd60e51b815260206004820152603360248201527f45524337323141493a207472616e736665722063616c6c6572206973206e6f74604482015272081bdddb995c881b9bdc88185c1c1c9bdd9959606a1b6064820152608401610749565b846001600160a01b031682600001516001600160a01b03161461161d5760405162461bcd60e51b815260206004820152602760248201527f45524337323141493a207472616e736665722066726f6d20696e636f727265636044820152663a1037bbb732b960c91b6064820152608401610749565b6001600160a01b0384166116825760405162461bcd60e51b815260206004820152602660248201527f45524337323141493a207472616e7366657220746f20746865207a65726f206160448201526564647265737360d01b6064820152608401610749565b611692600084846000015161148d565b6001600160a01b03851660009081526005602052604081208054600192906116c49084906001600160801b0316612847565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926117109185911661286f565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117988460016125f9565b6000818152600460205260409020549091506001600160a01b031661182a576117c2816001541190565b1561182a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815b85518110156119185760008682815181106118965761189661289a565b602002602001015190508083116118d8576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611905565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611910816125e0565b915050611879565b509092149392505050565b7f00000000000000000000000000000000000000000000000000000000000000078211156119855760405162461bcd60e51b815260206004820152600f60248201526e1b585e0818985d18da081b1a5b5a5d608a1b6044820152606401610749565b600d548261199260015490565b61199c91906125f9565b11156119df5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d6178207075626c696360701b6044820152606401610749565b6119e93383610fd4565b811015611a2e5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610749565b3360009081526014602052604081208054849290611a4d9084906125f9565b909155506109f590508383611e5c565b6040805180820190915260008082526020820152611a7c826001541190565b611adc5760405162461bcd60e51b815260206004820152602b60248201527f45524337323141493a206f776e657220717565727920666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610749565b60007f00000000000000000000000000000000000000000000000000000000000000078310611b3d57611b2f7f000000000000000000000000000000000000000000000000000000000000000784612611565b611b3a9060016125f9565b90505b825b818110611ba7576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b9457949350505050565b5080611b9f816128b0565b915050611b3f565b5060405162461bcd60e51b815260206004820152603060248201527f45524337323141493a20756e61626c6520746f2064657465726d696e6520746860448201526f329037bbb732b91037b3103a37b5b2b760811b6064820152608401610749565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611d4f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9d9033908990889088906004016128c7565b6020604051808303816000875af1925050508015611cd8575060408051601f3d908101601f19168201909252611cd591810190612904565b60015b611d35573d808015611d06576040519150601f19603f3d011682016040523d82523d6000602084013e611d0b565b606091505b508051600003611d2d5760405162461bcd60e51b815260040161074990612647565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d53565b5060015b949350505050565b606081600003611d825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dac5780611d96816125e0565b9150611da59050600a83612937565b9150611d86565b60008167ffffffffffffffff811115611dc757611dc761236f565b6040519080825280601f01601f191660200182016040528015611df1576020820181803683370190505b5090505b8415611d5357611e06600183612611565b9150611e13600a8661294b565b611e1e9060306125f9565b60f81b818381518110611e3357611e3361289a565b60200101906001600160f81b031916908160001a905350611e55600a86612937565b9450611df5565b611e76828260405180602001604052806000815250611e7a565b5050565b6001546001600160a01b038416611ede5760405162461bcd60e51b815260206004820152602260248201527f45524337323141493a206d696e7420746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610749565b611ee9816001541190565b15611f365760405162461bcd60e51b815260206004820152601e60248201527f45524337323141493a20746f6b656e20616c7265616479206d696e74656400006044820152606401610749565b7f0000000000000000000000000000000000000000000000000000000000000007831115611fb25760405162461bcd60e51b815260206004820152602360248201527f45524337323141493a207175616e7469747920746f206d696e7420746f6f20686044820152620d2ced60eb1b6064820152608401610749565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061200e90879061286f565b6001600160801b0316815260200185836020015161202c919061286f565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561214c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121106000888488611c59565b61212c5760405162461bcd60e51b815260040161074990612647565b81612136816125e0565b9250508080612144906125e0565b9150506120c3565b50600181905561186c565b60006020828403121561216957600080fd5b5035919050565b6001600160e01b031981168114610c3257600080fd5b60006020828403121561219857600080fd5b81356121a381612170565b9392505050565b60005b838110156121c55781810151838201526020016121ad565b83811115610e3b5750506000910152565b600081518084526121ee8160208601602086016121aa565b601f01601f19169290920160200192915050565b6020815260006121a360208301846121d6565b80356001600160a01b038116811461105d57600080fd5b6000806040838503121561223f57600080fd5b61224883612215565b946020939093013593505050565b60008060006060848603121561226b57600080fd5b61227484612215565b925061228260208501612215565b9150604084013590509250925092565b6000806000604084860312156122a757600080fd5b83359250602084013567ffffffffffffffff808211156122c657600080fd5b818601915086601f8301126122da57600080fd5b8135818111156122e957600080fd5b8760208260051b85010111156122fe57600080fd5b6020830194508093505050509250925092565b60006020828403121561232357600080fd5b6121a382612215565b8035801515811461105d57600080fd5b6000806040838503121561234f57600080fd5b61235883612215565b91506123666020840161232c565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561239b57600080fd5b6123a485612215565b93506123b260208601612215565b925060408501359150606085013567ffffffffffffffff808211156123d657600080fd5b818701915087601f8301126123ea57600080fd5b8135818111156123fc576123fc61236f565b604051601f8201601f19908116603f011681019083821181831017156124245761242461236f565b816040528281528a602084870101111561243d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f84011261247357600080fd5b50813567ffffffffffffffff81111561248b57600080fd5b6020830191508360208285010111156124a357600080fd5b9250929050565b600080600080604085870312156124c057600080fd5b843567ffffffffffffffff808211156124d857600080fd5b6124e488838901612461565b909650945060208701359150808211156124fd57600080fd5b5061250a87828801612461565b95989497509550505050565b60006020828403121561252857600080fd5b6121a38261232c565b6000806040838503121561254457600080fd5b61254d83612215565b915061236660208401612215565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125a457607f821691505b6020821081036125c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000600182016125f2576125f26125ca565b5060010190565b6000821982111561260c5761260c6125ca565b500190565b600082821015612623576126236125ca565b500390565b6000816000190483118215151615612642576126426125ca565b500290565b60208082526034908201527f45524337323141493a207472616e7366657220746f206e6f6e204552433732316040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b601f8211156109f557600081815260208120601f850160051c810160208610156126c25750805b601f850160051c820191505b8181101561186c578281556001016126ce565b67ffffffffffffffff8311156126f9576126f961236f565b61270d836127078354612590565b8361269b565b6000601f84116001811461274157600085156127295750838201355b600019600387901b1c1916600186901b17835561126a565b600083815260209020601f19861690835b828110156127725786850135825560209485019460019092019101612752565b508682101561278f5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600081546127ae81612590565b600182811680156127c657600181146127db5761280a565b60ff198416875282151583028701945061280a565b8560005260208060002060005b858110156128015781548a8201529084019082016127e8565b50505082870194505b5050505092915050565b600061282082866127a1565b84516128308183602089016121aa565b61283c818301866127a1565b979650505050505050565b60006001600160801b0383811690831681811015612867576128676125ca565b039392505050565b60006001600160801b03808316818516808303821115612891576128916125ca565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b6000816128bf576128bf6125ca565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128fa908301846121d6565b9695505050505050565b60006020828403121561291657600080fd5b81516121a381612170565b634e487b7160e01b600052601260045260246000fd5b60008261294657612946612921565b500490565b60008261295a5761295a612921565b50069056fea26469706673582212204d94162d66272740c93a98289cb5724d95d6c0e96e9c064222bbc5770ed1f14964736f6c634300080f0033

Deployed Bytecode Sourcemap

44233:4586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46948:130;;;;;;;;;;-1:-1:-1;46948:130:0;;;;;:::i;:::-;;:::i;:::-;;29159:370;;;;;;;;;;-1:-1:-1;29159:370:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;29159:370:0;;;;;;;;44293:18;;;;;;;;;;-1:-1:-1;44293:18:0;;;;;;;;30889:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32553:205::-;;;;;;;;;;-1:-1:-1;32553:205:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32553:205:0;1528:203:1;31977:382:0;;;;;;;;;;-1:-1:-1;31977:382:0;;;;;:::i;:::-;;:::i;27717:94::-;;;;;;;;;;-1:-1:-1;27793:12:0;;27717:94;;;2319:25:1;;;2307:2;2292:18;27717:94:0;2173:177:1;47224:146:0;;;;;;;;;;-1:-1:-1;47224:146:0;;;;;:::i;:::-;;:::i;33666:142::-;;;;;;;;;;-1:-1:-1;33666:142:0;;;;;:::i;:::-;;:::i;44423:25::-;;;;;;;;;;;;;;;;28349:746;;;;;;;;;;-1:-1:-1;28349:746:0;;;;;:::i;:::-;;:::i;47382:134::-;;;;;;;;;;-1:-1:-1;47382:134:0;;;;;:::i;:::-;;:::i;48100:165::-;;;;;;;;;;;;;:::i;33871:157::-;;;;;;;;;;-1:-1:-1;33871:157:0;;;;;:::i;:::-;;:::i;27880:178::-;;;;;;;;;;-1:-1:-1;27880:178:0;;;;;:::i;:::-;;:::i;46059:649::-;;;;;;:::i;:::-;;:::i;44455:31::-;;;;;;;;;;;;;;;;30712:118;;;;;;;;;;-1:-1:-1;30712:118:0;;;;;:::i;:::-;;:::i;46720:216::-;;;;;;;;;;-1:-1:-1;46720:216:0;;;;;:::i;:::-;;:::i;29585:212::-;;;;;;;;;;-1:-1:-1;29585:212:0;;;;;:::i;:::-;;:::i;43533:94::-;;;;;;;;;;;;;:::i;47090:122::-;;;;;;;;;;-1:-1:-1;47090:122:0;;;;;:::i;:::-;;:::i;45446:309::-;;;;;;;;;;-1:-1:-1;45446:309:0;;;;;:::i;:::-;;:::i;42882:87::-;;;;;;;;;;-1:-1:-1;42928:7:0;42955:6;-1:-1:-1;;;;;42955:6:0;42882:87;;31044:98;;;;;;;;;;;;;:::i;45193:241::-;;;;;;;;;;-1:-1:-1;45193:241:0;;;;;:::i;:::-;;:::i;45763:288::-;;;;;;:::i;:::-;;:::i;32822:384::-;;;;;;;;;;-1:-1:-1;32822:384:0;;;;;:::i;:::-;;:::i;34091:312::-;;;;;;;;;;-1:-1:-1;34091:312:0;;;;;:::i;:::-;;:::i;47695:303::-;;;;;;;;;;-1:-1:-1;47695:303:0;;;;;:::i;:::-;;:::i;44355:46::-;;;;;;;;;;;;;;;;44775:406;;;;;;;;;;-1:-1:-1;44775:406:0;;;;;:::i;:::-;;:::i;47524:163::-;;;;;;;;;;-1:-1:-1;47524:163:0;;;;;:::i;:::-;;:::i;38514:43::-;;;;;;;;;;;;;;;;44324:24;;;;;;;;;;;;;;;;48006:82;;;;;;;;;;;;;:::i;33269:338::-;;;;;;;;;;-1:-1:-1;33269:338:0;;;;;:::i;:::-;;:::i;26896:32::-;;;;;;;;;;-1:-1:-1;26896:32:0;;;;-1:-1:-1;;;26896:32:0;;;;;;43782:192;;;;;;;;;;-1:-1:-1;43782:192:0;;;;;:::i;:::-;;:::i;44603:46::-;;;;;;;;;;-1:-1:-1;44603:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;44493:28;;;;;;;;;;;;;;;;46948:130;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;;;;;;;;;47042:12:::1;:28:::0;46948:130::o;29159:370::-;29286:4;-1:-1:-1;;;;;;29316:40:0;;-1:-1:-1;;;29316:40:0;;:99;;-1:-1:-1;;;;;;;29367:48:0;;-1:-1:-1;;;29367:48:0;29316:99;:160;;;-1:-1:-1;;;;;;;29426:50:0;;-1:-1:-1;;;29426:50:0;29316:160;:207;;;-1:-1:-1;;;;;;;;;;13229:40:0;;;29487:36;29302:221;29159:370;-1:-1:-1;;29159:370:0:o;30889:94::-;30943:13;30972:5;30965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30889:94;:::o;32553:205::-;32621:7;32645:16;32653:7;34729:12;;-1:-1:-1;34719:22:0;34642:105;32645:16;32637:75;;;;-1:-1:-1;;;32637:75:0;;8110:2:1;32637:75:0;;;8092:21:1;8149:2;8129:18;;;8122:30;8188:34;8168:18;;;8161:62;-1:-1:-1;;;8239:18:1;;;8232:44;8293:19;;32637:75:0;7908:410:1;32637:75:0;-1:-1:-1;32728:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32728:24:0;;32553:205::o;31977:382::-;32046:13;32062:25;32079:7;32062:16;:25::i;:::-;32046:41;;32108:5;-1:-1:-1;;;;;32102:11:0;:2;-1:-1:-1;;;;;32102:11:0;;32094:59;;;;-1:-1:-1;;;32094:59:0;;8525:2:1;32094:59:0;;;8507:21:1;8564:2;8544:18;;;8537:30;8603:34;8583:18;;;8576:62;-1:-1:-1;;;8654:18:1;;;8647:33;8697:19;;32094:59:0;8323:399:1;32094:59:0;24928:10;-1:-1:-1;;;;;32178:21:0;;;;:62;;-1:-1:-1;32203:37:0;32220:5;24928:10;33269:338;:::i;32203:37::-;32162:154;;;;-1:-1:-1;;;32162:154:0;;8929:2:1;32162:154:0;;;8911:21:1;8968:2;8948:18;;;8941:30;9007:34;8987:18;;;8980:62;9078:28;9058:18;;;9051:56;9124:19;;32162:154:0;8727:422:1;32162:154:0;32325:28;32334:2;32338:7;32347:5;32325:8;:28::i;:::-;32039:320;31977:382;;:::o;47224:146::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;47326:16:::1;:36:::0;47224:146::o;33666:142::-;33774:28;33784:4;33790:2;33794:7;33774:9;:28::i;28349:746::-;28458:7;28493:16;28503:5;28493:9;:16::i;:::-;28485:5;:24;28477:72;;;;-1:-1:-1;;;28477:72:0;;9356:2:1;28477:72:0;;;9338:21:1;9395:2;9375:18;;;9368:30;9434:34;9414:18;;;9407:62;-1:-1:-1;;;9485:18:1;;;9478:33;9528:19;;28477:72:0;9154:399:1;28477:72:0;28556:22;28581:13;27793:12;;;27717:94;28581:13;28556:38;;28601:19;28631:25;28681:9;28676:350;28700:14;28696:1;:18;28676:350;;;28730:31;28764:14;;;:11;:14;;;;;;;;;28730:48;;;;;;;;;-1:-1:-1;;;;;28730:48:0;;;;;-1:-1:-1;;;28730:48:0;;;;;;;;;;;;28791:28;28787:89;;28852:14;;;-1:-1:-1;28787:89:0;28909:5;-1:-1:-1;;;;;28888:26:0;:17;-1:-1:-1;;;;;28888:26:0;;28884:135;;28946:5;28931:11;:20;28927:59;;-1:-1:-1;28973:1:0;-1:-1:-1;28966:8:0;;-1:-1:-1;;;28966:8:0;28927:59;28996:13;;;;:::i;:::-;;;;28884:135;-1:-1:-1;28716:3:0;;;;:::i;:::-;;;;28676:350;;;-1:-1:-1;29032:57:0;;-1:-1:-1;;;29032:57:0;;10032:2:1;29032:57:0;;;10014:21:1;10071:2;10051:18;;;10044:30;10110:34;10090:18;;;10083:62;-1:-1:-1;;;10161:18:1;;;10154:45;10216:19;;29032:57:0;9830:411:1;47382:134:0;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;47478:13:::1;:30:::0;47382:134::o;48100:165::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;48156:101:::1;::::0;24928:10;;48225:21:::1;48156:101:::0;::::1;;;::::0;::::1;::::0;;;48225:21;24928:10;48156:101;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48100:165::o:0;33871:157::-;33983:39;34000:4;34006:2;34010:7;33983:39;;;;;;;;;;;;:16;:39::i;27880:178::-;27947:7;27979:13;27793:12;;;27717:94;27979:13;27971:5;:21;27963:70;;;;-1:-1:-1;;;27963:70:0;;10448:2:1;27963:70:0;;;10430:21:1;10487:2;10467:18;;;10460:30;10526:34;10506:18;;;10499:62;-1:-1:-1;;;10577:18:1;;;10570:34;10621:19;;27963:70:0;10246:400:1;27963:70:0;-1:-1:-1;28047:5:0;27880:178::o;46059:649::-;46220:16;;46201:15;:35;;46179:98;;;;-1:-1:-1;;;46179:98:0;;10853:2:1;46179:98:0;;;10835:21:1;10892:2;10872:18;;;10865:30;-1:-1:-1;;;10911:18:1;;;10904:43;10964:18;;46179:98:0;10651:337:1;46179:98:0;24928:10;46310:25;;;;:11;:25;;;;;;46348:12;;46310:34;;46338:6;;46310:34;:::i;:::-;:50;;46288:117;;;;-1:-1:-1;;;46288:117:0;;11328:2:1;46288:117:0;;;11310:21:1;11367:2;11347:18;;;11340:30;-1:-1:-1;;;11386:18:1;;;11379:47;11443:18;;46288:117:0;11126:341:1;46288:117:0;46441:30;;-1:-1:-1;;24928:10:0;11621:2:1;11617:15;11613:53;46441:30:0;;;11601:66:1;46416:12:0;;11683::1;;46441:30:0;;;;;;;;;;;;46431:41;;;;;;46416:56;;46505:49;46524:11;;46505:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46537:10:0;;;-1:-1:-1;46549:4:0;;-1:-1:-1;46505:18:0;:49::i;:::-;46483:112;;;;-1:-1:-1;;;46483:112:0;;11908:2:1;46483:112:0;;;11890:21:1;11947:2;11927:18;;;11920:30;-1:-1:-1;;;11966:18:1;;;11959:43;12019:18;;46483:112:0;11706:337:1;46483:112:0;46606:94;24928:10;46659:6;46680:9;46606:11;:94::i;:::-;46168:540;46059:649;;;:::o;30712:118::-;30776:7;30799:20;30811:7;30799:11;:20::i;:::-;:25;;30712:118;-1:-1:-1;;30712:118:0:o;46720:216::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;46844:14:::1;46830:10;:28;;46808:87;;;::::0;-1:-1:-1;;;46808:87:0;;12250:2:1;46808:87:0::1;::::0;::::1;12232:21:1::0;12289:1;12269:18;;;12262:29;-1:-1:-1;;;12307:18:1;;;12300:38;12355:18;;46808:87:0::1;12048:331:1::0;46808:87:0::1;46906:9;:22:::0;46720:216::o;29585:212::-;29649:7;-1:-1:-1;;;;;29673:19:0;;29665:76;;;;-1:-1:-1;;;29665:76:0;;12586:2:1;29665:76:0;;;12568:21:1;12625:2;12605:18;;;12598:30;12664:34;12644:18;;;12637:62;-1:-1:-1;;;12715:18:1;;;12708:42;12767:19;;29665:76:0;12384:408:1;29665:76:0;-1:-1:-1;;;;;;29763:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29763:27:0;;29585:212::o;43533:94::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;43598:21:::1;43616:1;43598:9;:21::i;:::-;43533:94::o:0;47090:122::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;47180:10:::1;:24:::0;47090:122::o;45446:309::-;-1:-1:-1;;;;;45593:26:0;;45563:7;45593:26;;;:11;:26;;;;;;:31;;45589:159;;45664:10;45673:1;45664:6;:10;:::i;:::-;45648:12;;:27;;;;:::i;:::-;45641:34;;;;45589:159;45730:6;45715:12;;:21;;;;:::i;31044:98::-;31100:13;31129:7;31122:14;;;;;:::i;45193:241::-;-1:-1:-1;;;;;45319:26:0;;45289:7;45319:26;;;:11;:26;;;;;;:30;45315:112;;-1:-1:-1;45373:1:0;;45193:241;-1:-1:-1;45193:241:0:o;45315:112::-;-1:-1:-1;45414:1:0;;45193:241;-1:-1:-1;45193:241:0:o;45315:112::-;45193:241;;;:::o;45763:288::-;45878:13;;45859:15;:32;;45837:101;;;;-1:-1:-1;;;45837:101:0;;13302:2:1;45837:101:0;;;13284:21:1;13341:2;13321:18;;;13314:30;-1:-1:-1;;;13360:18:1;;;13353:49;13419:18;;45837:101:0;13100:343:1;45837:101:0;45949:94;24928:10;46002:6;46023:9;45949:11;:94::i;32822:384::-;24928:10;-1:-1:-1;;;;;32913:24:0;;;32905:64;;;;-1:-1:-1;;;32905:64:0;;13650:2:1;32905:64:0;;;13632:21:1;13689:2;13669:18;;;13662:30;13728:29;13708:18;;;13701:57;13775:18;;32905:64:0;13448:351:1;32905:64:0;24928:10;32978:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32978:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32978:53:0;;;;;;;33054:20;;;33042:32;;33038:103;;24928:10;33084:37;;;;:23;:37;;;;;:49;;-1:-1:-1;;33084:49:0;33124:9;;33084:49;;;33038:103;33152:48;;750:14:1;;743:22;725:41;;-1:-1:-1;;;;;33152:48:0;;;24928:10;;33152:48;;713:2:1;698:18;33152:48:0;;;;;;;32822:384;;:::o;34091:312::-;34228:28;34238:4;34244:2;34248:7;34228:9;:28::i;:::-;34279:48;34302:4;34308:2;34312:7;34321:5;34279:22;:48::i;:::-;34263:134;;;;-1:-1:-1;;;34263:134:0;;;;;;;:::i;47695:303::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;47854:6:::1;::::0;::::1;;47853:7;47831:75;;;::::0;-1:-1:-1;;;47831:75:0;;14427:2:1;47831:75:0::1;::::0;::::1;14409:21:1::0;14466:2;14446:18;;;14439:30;-1:-1:-1;;;14485:18:1;;;14478:48;14543:18;;47831:75:0::1;14225:342:1::0;47831:75:0::1;47917:12;:28;47932:13:::0;;47917:12;:28:::1;:::i;:::-;-1:-1:-1::0;47956:15:0::1;:34;47974:16:::0;;47956:15;:34:::1;:::i;:::-;;47695:303:::0;;;;:::o;44775:406::-;44866:13;44920:16;44928:7;34729:12;;-1:-1:-1;34719:22:0;34642:105;44920:16;44898:83;;;;-1:-1:-1;;;44898:83:0;;16832:2:1;44898:83:0;;;16814:21:1;16871:2;16851:18;;;16844:30;-1:-1:-1;;;16890:18:1;;;16883:47;16947:18;;44898:83:0;16630:341:1;44898:83:0;45055:12;45087:25;45104:7;45087:16;:25::i;:::-;45132:15;45020:142;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44992:181;;44775:406;;;:::o;47524:163::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;47637:20:::1;:42:::0;;;::::1;;-1:-1:-1::0;;;47637:42:0::1;-1:-1:-1::0;;;;47637:42:0;;::::1;::::0;;;::::1;::::0;;47524:163::o;48006:82::-;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;48067:6:::1;:13:::0;;-1:-1:-1;;48067:13:0::1;48076:4;48067:13;::::0;;48006:82::o;33269:338::-;33410:20;;33391:4;;-1:-1:-1;;;33410:20:0;;;;:56;;;;-1:-1:-1;33446:20:0;;-1:-1:-1;;;;;33434:32:0;;;33446:20;;33434:32;33410:56;:98;;;;-1:-1:-1;24928:10:0;33471:37;;;;:23;:37;;;;;;;;33470:38;33410:98;33407:195;;;-1:-1:-1;33525:4:0;33518:11;;33407:195;-1:-1:-1;;;;;;33559:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33552:42;;43782:192;42928:7;42955:6;-1:-1:-1;;;;;42955:6:0;24928:10;43102:23;43094:68;;;;-1:-1:-1;;;43094:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43871:22:0;::::1;43863:73;;;::::0;-1:-1:-1;;;43863:73:0;;18366:2:1;43863:73:0::1;::::0;::::1;18348:21:1::0;18405:2;18385:18;;;18378:30;18444:34;18424:18;;;18417:62;-1:-1:-1;;;18495:18:1;;;18488:36;18541:19;;43863:73:0::1;18164:402:1::0;43863:73:0::1;43947:19;43957:8;43947:9;:19::i;38336:172::-:0;38433:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38433:29:0;-1:-1:-1;;;;;38433:29:0;;;;;;;;;38474:28;;38433:24;;38474:28;;;;;;;38336:172;;;:::o;36698:1532::-;36795:35;36833:20;36845:7;36833:11;:20::i;:::-;36904:18;;36795:58;;-1:-1:-1;36862:22:0;;-1:-1:-1;;;;;36888:34:0;24928:10;-1:-1:-1;;;;;36888:34:0;;:81;;;-1:-1:-1;24928:10:0;36933:20;36945:7;36933:11;:20::i;:::-;-1:-1:-1;;;;;36933:36:0;;36888:81;:142;;;-1:-1:-1;36997:18:0;;36980:50;;24928:10;33269:338;:::i;36980:50::-;36862:169;;37056:17;37040:102;;;;-1:-1:-1;;;37040:102:0;;18773:2:1;37040:102:0;;;18755:21:1;18812:2;18792:18;;;18785:30;18851:34;18831:18;;;18824:62;-1:-1:-1;;;18902:18:1;;;18895:49;18961:19;;37040:102:0;18571:415:1;37040:102:0;37189:4;-1:-1:-1;;;;;37167:26:0;:13;:18;;;-1:-1:-1;;;;;37167:26:0;;37151:99;;;;-1:-1:-1;;;37151:99:0;;19193:2:1;37151:99:0;;;19175:21:1;19232:2;19212:18;;;19205:30;19271:34;19251:18;;;19244:62;-1:-1:-1;;;19322:18:1;;;19315:37;19369:19;;37151:99:0;18991:403:1;37151:99:0;-1:-1:-1;;;;;37265:16:0;;37257:67;;;;-1:-1:-1;;;37257:67:0;;19601:2:1;37257:67:0;;;19583:21:1;19640:2;19620:18;;;19613:30;19679:34;19659:18;;;19652:62;-1:-1:-1;;;19730:18:1;;;19723:36;19776:19;;37257:67:0;19399:402:1;37257:67:0;37433:49;37450:1;37454:7;37463:13;:18;;;37433:8;:49::i;:::-;-1:-1:-1;;;;;37491:18:0;;;;;;:12;:18;;;;;:31;;37521:1;;37491:18;:31;;37521:1;;-1:-1:-1;;;;;37491:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37491:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37529:16:0;;-1:-1:-1;37529:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37529:16:0;;:29;;-1:-1:-1;;37529:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37529:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37588:43:0;;;;;;;;-1:-1:-1;;;;;37588:43:0;;;;;;37614:15;37588:43;;;;;;;;;-1:-1:-1;37565:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;37565:66:0;-1:-1:-1;;;;;;37565:66:0;;;;;;;;;;;37881:11;37577:7;-1:-1:-1;37881:11:0;:::i;:::-;37944:1;37903:24;;;:11;:24;;;;;:29;37859:33;;-1:-1:-1;;;;;;37903:29:0;37899:236;;37961:20;37969:11;34729:12;;-1:-1:-1;34719:22:0;34642:105;37961:20;37957:171;;;38021:97;;;;;;;;38048:18;;-1:-1:-1;;;;;38021:97:0;;;;;;38079:28;;;;38021:97;;;;;;;;;;-1:-1:-1;37994:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;37994:124:0;-1:-1:-1;;;;;;37994:124:0;;;;;;;;;;;;37957:171;38167:7;38163:2;-1:-1:-1;;;;;38148:27:0;38157:4;-1:-1:-1;;;;;38148:27:0;;;;;;;;;;;38182:42;36788:1442;;;36698:1532;;;:::o;20678:830::-;20803:4;20843;20803;20860:525;20884:5;:12;20880:1;:16;20860:525;;;20918:20;20941:5;20947:1;20941:8;;;;;;;;:::i;:::-;;;;;;;20918:31;;20986:12;20970;:28;20966:408;;21123:44;;;;;;20604:19:1;;;20639:12;;;20632:28;;;20676:12;;21123:44:0;;;;;;;;;;;;21113:55;;;;;;21098:70;;20966:408;;;21313:44;;;;;;20604:19:1;;;20639:12;;;20632:28;;;20676:12;;21313:44:0;;;;;;;;;;;;21303:55;;;;;;21288:70;;20966:408;-1:-1:-1;20898:3:0;;;;:::i;:::-;;;;20860:525;;;-1:-1:-1;21480:20:0;;;;20678:830;-1:-1:-1;;;20678:830:0:o;48273:541::-;48429:12;48419:6;:22;;48397:87;;;;-1:-1:-1;;;48397:87:0;;20901:2:1;48397:87:0;;;20883:21:1;20940:2;20920:18;;;20913:30;-1:-1:-1;;;20959:18:1;;;20952:45;21014:18;;48397:87:0;20699:339:1;48397:87:0;48543:9;;48533:6;48517:13;27793:12;;;27717:94;48517:13;:22;;;;:::i;:::-;:35;;48495:104;;;;-1:-1:-1;;;48495:104:0;;21245:2:1;48495:104:0;;;21227:21:1;21284:2;21264:18;;;21257:30;-1:-1:-1;;;21303:18:1;;;21296:48;21361:18;;48495:104:0;21043:342:1;48495:104:0;48641:34;24928:10;48668:6;48641:12;:34::i;:::-;48632:5;:43;;48610:112;;;;-1:-1:-1;;;48610:112:0;;21592:2:1;48610:112:0;;;21574:21:1;21631:2;21611:18;;;21604:30;-1:-1:-1;;;21650:18:1;;;21643:49;21709:18;;48610:112:0;21390:343:1;48610:112:0;24928:10;48733:25;;;;:11;:25;;;;;:35;;48762:6;;48733:25;:35;;48762:6;;48733:35;:::i;:::-;;;;-1:-1:-1;48779:27:0;;-1:-1:-1;48789:8:0;48799:6;48779:9;:27::i;30050:608::-;-1:-1:-1;;;;;;;;;;;;;;;;;30167:16:0;30175:7;34729:12;;-1:-1:-1;34719:22:0;34642:105;30167:16;30159:72;;;;-1:-1:-1;;;30159:72:0;;21940:2:1;30159:72:0;;;21922:21:1;21979:2;21959:18;;;21952:30;22018:34;21998:18;;;21991:62;-1:-1:-1;;;22069:18:1;;;22062:41;22120:19;;30159:72:0;21738:407:1;30159:72:0;30240:26;30288:12;30277:7;:23;30273:93;;30332:22;30342:12;30332:7;:22;:::i;:::-;:26;;30357:1;30332:26;:::i;:::-;30311:47;;30273:93;30394:7;30374:212;30411:18;30403:4;:26;30374:212;;30448:31;30482:17;;;:11;:17;;;;;;;;;30448:51;;;;;;;;;-1:-1:-1;;;;;30448:51:0;;;;;-1:-1:-1;;;30448:51:0;;;;;;;;;;;;30512:28;30508:71;;30560:9;30050:608;-1:-1:-1;;;;30050:608:0:o;30508:71::-;-1:-1:-1;30431:6:0;;;;:::i;:::-;;;;30374:212;;;-1:-1:-1;30594:58:0;;-1:-1:-1;;;30594:58:0;;22493:2:1;30594:58:0;;;22475:21:1;22532:2;22512:18;;;22505:30;22571:34;22551:18;;;22544:62;-1:-1:-1;;;22622:18:1;;;22615:46;22678:19;;30594:58:0;22291:412:1;43982:173:0;44038:16;44057:6;;-1:-1:-1;;;;;44074:17:0;;;-1:-1:-1;;;;;;44074:17:0;;;;;;44107:40;;44057:6;;;;;;;44107:40;;44038:16;44107:40;44027:128;43982:173;:::o;40051:691::-;40188:4;-1:-1:-1;;;;;40205:13:0;;3479:20;3527:8;40201:536;;40244:72;;-1:-1:-1;;;40244:72:0;;-1:-1:-1;;;;;40244:36:0;;;;;:72;;24928:10;;40295:4;;40301:7;;40310:5;;40244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:72:0;;;;;;;;-1:-1:-1;;40244:72:0;;;;;;;;;;;;:::i;:::-;;;40231:465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40475:6;:13;40492:1;40475:18;40471:216;;40508:62;;-1:-1:-1;;;40508:62:0;;;;;;;:::i;40471:216::-;40655:6;40649:13;40640:6;40636:2;40632:15;40625:38;40231:465;-1:-1:-1;;;;;;40366:55:0;-1:-1:-1;;;40366:55:0;;-1:-1:-1;40359:62:0;;40201:536;-1:-1:-1;40725:4:0;40201:536;40051:691;;;;;;:::o;623:723::-;679:13;900:5;909:1;900:10;896:53;;-1:-1:-1;;927:10:0;;;;;;;;;;;;-1:-1:-1;;;927:10:0;;;;;623:723::o;896:53::-;974:5;959:12;1015:78;1022:9;;1015:78;;1048:8;;;;:::i;:::-;;-1:-1:-1;1071:10:0;;-1:-1:-1;1079:2:0;1071:10;;:::i;:::-;;;1015:78;;;1103:19;1135:6;1125:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1125:17:0;;1103:39;;1153:154;1160:10;;1153:154;;1187:11;1197:1;1187:11;;:::i;:::-;;-1:-1:-1;1256:10:0;1264:2;1256:5;:10;:::i;:::-;1243:24;;:2;:24;:::i;:::-;1230:39;;1213:6;1220;1213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1213:56:0;;;;;;;;-1:-1:-1;1284:11:0;1293:2;1284:11;;:::i;:::-;;;1153:154;;34753:98;34818:27;34828:2;34832:8;34818:27;;;;;;;;;;;;:9;:27::i;:::-;34753:98;;:::o;35190:1276::-;35318:12;;-1:-1:-1;;;;;35345:16:0;;35337:63;;;;-1:-1:-1;;;35337:63:0;;24032:2:1;35337:63:0;;;24014:21:1;24071:2;24051:18;;;24044:30;24110:34;24090:18;;;24083:62;-1:-1:-1;;;24161:18:1;;;24154:32;24203:19;;35337:63:0;23830:398:1;35337:63:0;35537:21;35545:12;34729;;-1:-1:-1;34719:22:0;34642:105;35537:21;35536:22;35528:65;;;;-1:-1:-1;;;35528:65:0;;24435:2:1;35528:65:0;;;24417:21:1;24474:2;24454:18;;;24447:30;24513:32;24493:18;;;24486:60;24563:18;;35528:65:0;24233:354:1;35528:65:0;35620:12;35608:8;:24;;35600:72;;;;-1:-1:-1;;;35600:72:0;;24794:2:1;35600:72:0;;;24776:21:1;24833:2;24813:18;;;24806:30;24872:34;24852:18;;;24845:62;-1:-1:-1;;;24923:18:1;;;24916:33;24966:19;;35600:72:0;24592:399:1;35600:72:0;-1:-1:-1;;;;;35784:16:0;;35751:30;35784:16;;;:12;:16;;;;;;;;;35751:49;;;;;;;;;-1:-1:-1;;;;;35751:49:0;;;;;-1:-1:-1;;;35751:49:0;;;;;;;;;;;35826:119;;;;;;;;35846:19;;35751:49;;35826:119;;;35846:39;;35876:8;;35846:39;:::i;:::-;-1:-1:-1;;;;;35826:119:0;;;;;35929:8;35894:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35826:119:0;;;;;;-1:-1:-1;;;;;35807:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;35807:138:0;;;;;;;;;;;;35980:43;;;;;;;;;;;36006:15;35980:43;;;;;;;;35952:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35952:71:0;-1:-1:-1;;;;;;35952:71:0;;;;;;;;;;;;;;;;;;35964:12;;36076:282;36100:8;36096:1;:12;36076:282;;;36129:38;;36154:12;;-1:-1:-1;;;;;36129:38:0;;;36146:1;;36129:38;;36146:1;;36129:38;36194:59;36225:1;36229:2;36233:12;36247:5;36194:22;:59::i;:::-;36176:151;;;;-1:-1:-1;;;36176:151:0;;;;;;;:::i;:::-;36336:14;;;;:::i;:::-;;;;36110:3;;;;;:::i;:::-;;;;36076:282;;;-1:-1:-1;36366:12:0;:27;;;36400:60;46059:649;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;:::-;569:5;335:245;-1:-1:-1;;;335:245:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;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;2870:683::-;2965:6;2973;2981;3034:2;3022:9;3013:7;3009:23;3005:32;3002:52;;;3050:1;3047;3040:12;3002:52;3086:9;3073:23;3063:33;;3147:2;3136:9;3132:18;3119:32;3170:18;3211:2;3203:6;3200:14;3197:34;;;3227:1;3224;3217:12;3197:34;3265:6;3254:9;3250:22;3240:32;;3310:7;3303:4;3299:2;3295:13;3291:27;3281:55;;3332:1;3329;3322:12;3281:55;3372:2;3359:16;3398:2;3390:6;3387:14;3384:34;;;3414:1;3411;3404:12;3384:34;3467:7;3462:2;3452:6;3449:1;3445:14;3441:2;3437:23;3433:32;3430:45;3427:65;;;3488:1;3485;3478:12;3427:65;3519:2;3515;3511:11;3501:21;;3541:6;3531:16;;;;;2870:683;;;;;:::o;3558:186::-;3617:6;3670:2;3658:9;3649:7;3645:23;3641:32;3638:52;;;3686:1;3683;3676:12;3638:52;3709:29;3728:9;3709:29;:::i;3934:160::-;3999:20;;4055:13;;4048:21;4038:32;;4028:60;;4084:1;4081;4074:12;4099:254;4164:6;4172;4225:2;4213:9;4204:7;4200:23;4196:32;4193:52;;;4241:1;4238;4231:12;4193:52;4264:29;4283:9;4264:29;:::i;:::-;4254:39;;4312:35;4343:2;4332:9;4328:18;4312:35;:::i;:::-;4302:45;;4099:254;;;;;:::o;4358:127::-;4419:10;4414:3;4410:20;4407:1;4400:31;4450:4;4447:1;4440:15;4474:4;4471:1;4464:15;4490:1138;4585:6;4593;4601;4609;4662:3;4650:9;4641:7;4637:23;4633:33;4630:53;;;4679:1;4676;4669:12;4630:53;4702:29;4721:9;4702:29;:::i;:::-;4692:39;;4750:38;4784:2;4773:9;4769:18;4750:38;:::i;:::-;4740:48;;4835:2;4824:9;4820:18;4807:32;4797:42;;4890:2;4879:9;4875:18;4862:32;4913:18;4954:2;4946:6;4943:14;4940:34;;;4970:1;4967;4960:12;4940:34;5008:6;4997:9;4993:22;4983:32;;5053:7;5046:4;5042:2;5038:13;5034:27;5024:55;;5075:1;5072;5065:12;5024:55;5111:2;5098:16;5133:2;5129;5126:10;5123:36;;;5139:18;;:::i;:::-;5214:2;5208:9;5182:2;5268:13;;-1:-1:-1;;5264:22:1;;;5288:2;5260:31;5256:40;5244:53;;;5312:18;;;5332:22;;;5309:46;5306:72;;;5358:18;;:::i;:::-;5398:10;5394:2;5387:22;5433:2;5425:6;5418:18;5473:7;5468:2;5463;5459;5455:11;5451:20;5448:33;5445:53;;;5494:1;5491;5484:12;5445:53;5550:2;5545;5541;5537:11;5532:2;5524:6;5520:15;5507:46;5595:1;5590:2;5585;5577:6;5573:15;5569:24;5562:35;5616:6;5606:16;;;;;;;4490:1138;;;;;;;:::o;5633:348::-;5685:8;5695:6;5749:3;5742:4;5734:6;5730:17;5726:27;5716:55;;5767:1;5764;5757:12;5716:55;-1:-1:-1;5790:20:1;;5833:18;5822:30;;5819:50;;;5865:1;5862;5855:12;5819:50;5902:4;5894:6;5890:17;5878:29;;5954:3;5947:4;5938:6;5930;5926:19;5922:30;5919:39;5916:59;;;5971:1;5968;5961:12;5916:59;5633:348;;;;;:::o;5986:721::-;6078:6;6086;6094;6102;6155:2;6143:9;6134:7;6130:23;6126:32;6123:52;;;6171:1;6168;6161:12;6123:52;6211:9;6198:23;6240:18;6281:2;6273:6;6270:14;6267:34;;;6297:1;6294;6287:12;6267:34;6336:59;6387:7;6378:6;6367:9;6363:22;6336:59;:::i;:::-;6414:8;;-1:-1:-1;6310:85:1;-1:-1:-1;6502:2:1;6487:18;;6474:32;;-1:-1:-1;6518:16:1;;;6515:36;;;6547:1;6544;6537:12;6515:36;;6586:61;6639:7;6628:8;6617:9;6613:24;6586:61;:::i;:::-;5986:721;;;;-1:-1:-1;6666:8:1;-1:-1:-1;;;;5986:721:1:o;6712:180::-;6768:6;6821:2;6809:9;6800:7;6796:23;6792:32;6789:52;;;6837:1;6834;6827:12;6789:52;6860:26;6876:9;6860:26;:::i;6897:260::-;6965:6;6973;7026:2;7014:9;7005:7;7001:23;6997:32;6994:52;;;7042:1;7039;7032:12;6994:52;7065:29;7084:9;7065:29;:::i;:::-;7055:39;;7113:38;7147:2;7136:9;7132:18;7113:38;:::i;7162:356::-;7364:2;7346:21;;;7383:18;;;7376:30;7442:34;7437:2;7422:18;;7415:62;7509:2;7494:18;;7162:356::o;7523:380::-;7602:1;7598:12;;;;7645;;;7666:61;;7720:4;7712:6;7708:17;7698:27;;7666:61;7773:2;7765:6;7762:14;7742:18;7739:38;7736:161;;7819:10;7814:3;7810:20;7807:1;7800:31;7854:4;7851:1;7844:15;7882:4;7879:1;7872:15;7736:161;;7523:380;;;:::o;9558:127::-;9619:10;9614:3;9610:20;9607:1;9600:31;9650:4;9647:1;9640:15;9674:4;9671:1;9664:15;9690:135;9729:3;9750:17;;;9747:43;;9770:18;;:::i;:::-;-1:-1:-1;9817:1:1;9806:13;;9690:135::o;10993:128::-;11033:3;11064:1;11060:6;11057:1;11054:13;11051:39;;;11070:18;;:::i;:::-;-1:-1:-1;11106:9:1;;10993:128::o;12797:125::-;12837:4;12865:1;12862;12859:8;12856:34;;;12870:18;;:::i;:::-;-1:-1:-1;12907:9:1;;12797:125::o;12927:168::-;12967:7;13033:1;13029;13025:6;13021:14;13018:1;13015:21;13010:1;13003:9;12996:17;12992:45;12989:71;;;13040:18;;:::i;:::-;-1:-1:-1;13080:9:1;;12927:168::o;13804:416::-;14006:2;13988:21;;;14045:2;14025:18;;;14018:30;14084:34;14079:2;14064:18;;14057:62;-1:-1:-1;;;14150:2:1;14135:18;;14128:50;14210:3;14195:19;;13804:416::o;14698:545::-;14800:2;14795:3;14792:11;14789:448;;;14836:1;14861:5;14857:2;14850:17;14906:4;14902:2;14892:19;14976:2;14964:10;14960:19;14957:1;14953:27;14947:4;14943:38;15012:4;15000:10;14997:20;14994:47;;;-1:-1:-1;15035:4:1;14994:47;15090:2;15085:3;15081:12;15078:1;15074:20;15068:4;15064:31;15054:41;;15145:82;15163:2;15156:5;15153:13;15145:82;;;15208:17;;;15189:1;15178:13;15145:82;;15419:1206;15543:18;15538:3;15535:27;15532:53;;;15565:18;;:::i;:::-;15594:94;15684:3;15644:38;15676:4;15670:11;15644:38;:::i;:::-;15638:4;15594:94;:::i;:::-;15714:1;15739:2;15734:3;15731:11;15756:1;15751:616;;;;16411:1;16428:3;16425:93;;;-1:-1:-1;16484:19:1;;;16471:33;16425:93;-1:-1:-1;;15376:1:1;15372:11;;;15368:24;15364:29;15354:40;15400:1;15396:11;;;15351:57;16531:78;;15724:895;;15751:616;14645:1;14638:14;;;14682:4;14669:18;;-1:-1:-1;;15787:17:1;;;15888:9;15910:229;15924:7;15921:1;15918:14;15910:229;;;16013:19;;;16000:33;15985:49;;16120:4;16105:20;;;;16073:1;16061:14;;;;15940:12;15910:229;;;15914:3;16167;16158:7;16155:16;16152:159;;;16291:1;16287:6;16281:3;16275;16272:1;16268:11;16264:21;16260:34;16256:39;16243:9;16238:3;16234:19;16221:33;16217:79;16209:6;16202:95;16152:159;;;16354:1;16348:3;16345:1;16341:11;16337:19;16331:4;16324:33;15724:895;;15419:1206;;;:::o;16976:722::-;17026:3;17067:5;17061:12;17096:36;17122:9;17096:36;:::i;:::-;17151:1;17168:18;;;17195:133;;;;17342:1;17337:355;;;;17161:531;;17195:133;-1:-1:-1;;17228:24:1;;17216:37;;17301:14;;17294:22;17282:35;;17273:45;;;-1:-1:-1;17195:133:1;;17337:355;17368:5;17365:1;17358:16;17397:4;17442:2;17439:1;17429:16;17467:1;17481:165;17495:6;17492:1;17489:13;17481:165;;;17573:14;;17560:11;;;17553:35;17616:16;;;;17510:10;;17481:165;;;17485:3;;;17675:6;17670:3;17666:16;17659:23;;17161:531;;;;;16976:722;;;;:::o;17703:456::-;17924:3;17952:38;17986:3;17978:6;17952:38;:::i;:::-;18019:6;18013:13;18035:52;18080:6;18076:2;18069:4;18061:6;18057:17;18035:52;:::i;:::-;18103:50;18145:6;18141:2;18137:15;18129:6;18103:50;:::i;:::-;18096:57;17703:456;-1:-1:-1;;;;;;;17703:456:1:o;19806:246::-;19846:4;-1:-1:-1;;;;;19959:10:1;;;;19929;;19981:12;;;19978:38;;;19996:18;;:::i;:::-;20033:13;;19806:246;-1:-1:-1;;;19806:246:1:o;20057:253::-;20097:3;-1:-1:-1;;;;;20186:2:1;20183:1;20179:10;20216:2;20213:1;20209:10;20247:3;20243:2;20239:12;20234:3;20231:21;20228:47;;;20255:18;;:::i;:::-;20291:13;;20057:253;-1:-1:-1;;;;20057:253:1:o;20315:127::-;20376:10;20371:3;20367:20;20364:1;20357:31;20407:4;20404:1;20397:15;20431:4;20428:1;20421:15;22150:136;22189:3;22217:5;22207:39;;22226:18;;:::i;:::-;-1:-1:-1;;;22262:18:1;;22150:136::o;22708:489::-;-1:-1:-1;;;;;22977:15:1;;;22959:34;;23029:15;;23024:2;23009:18;;23002:43;23076:2;23061:18;;23054:34;;;23124:3;23119:2;23104:18;;23097:31;;;22902:4;;23145:46;;23171:19;;23163:6;23145:46;:::i;:::-;23137:54;22708:489;-1:-1:-1;;;;;;22708:489:1:o;23202:249::-;23271:6;23324:2;23312:9;23303:7;23299:23;23295:32;23292:52;;;23340:1;23337;23330:12;23292:52;23372:9;23366:16;23391:30;23415:5;23391:30;:::i;23456:127::-;23517:10;23512:3;23508:20;23505:1;23498:31;23548:4;23545:1;23538:15;23572:4;23569:1;23562:15;23588:120;23628:1;23654;23644:35;;23659:18;;:::i;:::-;-1:-1:-1;23693:9:1;;23588:120::o;23713:112::-;23745:1;23771;23761:35;;23776:18;;:::i;:::-;-1:-1:-1;23810:9:1;;23713:112::o

Swarm Source

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