ETH Price: $2,531.79 (+0.93%)

Token

Y00ts Ethereum (YTS)
 

Overview

Max Total Supply

5,000 YTS

Holders

557

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xlukebelmar.eth
Balance
1 YTS
0xC541BC01c71D83f10f42f5040094cdFfED5741b1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Y00ts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// ╭╮╱╱╭┳━━━┳━━━╮╭╮╱╱╱╱╭━━━┳╮╭╮
// ┃╰╮╭╯┃╭━╮┃╭━╮┣╯╰╮╱╱╱┃╭━┳╯╰┫┃
// ╰╮╰╯╭┫┃┃┃┃┃┃┃┣╮╭╋━━╮┃╰━┻╮╭┫╰━┳━━┳━┳━━┳╮╭┳╮╭╮
// ╱╰╮╭╯┃┃┃┃┃┃┃┃┃┃┃┃━━┫┃╭━━┫┃┃╭╮┃┃━┫╭┫┃━┫┃┃┃╰╯┃
// ╱╱┃┃╱┃╰━╯┃╰━╯┃┃╰╋━━┃┃╰━━┫╰┫┃┃┃┃━┫┃┃┃━┫╰╯┃┃┃┃
// ╱╱╰╯╱╰━━━┻━━━╯╰━┻━━╯╰━━━┻━┻╯╰┻━━┻╯╰━━┻━━┻┻┻╯
// File: contracts/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: contracts/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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: contracts/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/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: contracts/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/Y00ts.sol



pragma solidity ^0.8.0;





contract Y00ts is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public immutable amountForDevs;
  mapping(address => uint256) public allowlist;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForDevs_
  ) ERC721A("Y00ts Ethereum", "YTS", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
    amountForDevs = amountForDevs_;
  }

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



  function mint(uint256 quantity) external callerIsUser {

    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(
      totalSupply() + quantity <= amountForDevs,
      "too many already minted before dev mint"
    );
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060015560006008553480156200001c57600080fd5b5060405162002927380380620029278339810160408190526200003f91620002b3565b6040518060400160405280600e81526020016d593030747320457468657265756d60901b8152506040518060400160405280600381526020016259545360e81b81525084846200009e62000098620001b960201b60201c565b620001bd565b600081116200010b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000102565b8351620001829060029060208701906200020d565b508251620001989060039060208601906200020d565b5060a0919091526080525050600160095560c0929092525060e0526200031f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200021b90620002e2565b90600052602060002090601f0160209004810192826200023f57600085556200028a565b82601f106200025a57805160ff19168380011785556200028a565b828001600101855582156200028a579182015b828111156200028a5782518255916020019190600101906200026d565b50620002989291506200029c565b5090565b5b808211156200029857600081556001016200029d565b600080600060608486031215620002c957600080fd5b8351925060208401519150604084015190509250925092565b600181811c90821680620002f757607f821691505b602082108114156200031957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161258f620003986000396000818161048601526109920152600081816103260152610dac015260008181610a2801528181610ab601528181610aee0152818161181c015281816118460152611d0a015260008181610d34015281816116030152611635015261258f6000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638bc35c2f11610104578063ac446002116100a2578063dc33e68111610071578063dc33e6811461041f578063e985e9c514610432578063f2fde38b1461046e578063fbe1aa511461048157600080fd5b8063ac446002146103e8578063b88d4fde146103f0578063c87b56dd14610403578063d7224ba01461041657600080fd5b806395d89b41116100de57806395d89b411461039a578063a0712d68146103a2578063a22cb465146103b5578063a7cd52cb146103c857600080fd5b80638bc35c2f146103215780638da5cb5b146103485780639231ab2a1461035957600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102e05780636352211e146102f357806370a0823114610306578063715018a61461031957600080fd5b80632f745c5914610294578063375a069a146102a757806342842e0e146102ba5780634f6ccce7146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632d20fb601461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046121a0565b6104a8565b60405190151581526020015b60405180910390f35b61020f610515565b6040516101fe919061230d565b61022f61022a36600461224c565b6105a7565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004612176565b610637565b005b6001545b6040519081526020016101fe565b61025a61027c366004612022565b61074f565b61025a61028f36600461224c565b61075a565b6102606102a2366004612176565b6107ed565b61025a6102b536600461224c565b610966565b61025a6102c8366004612022565b610b24565b6102606102db36600461224c565b610b3f565b61025a6102ee3660046121da565b610ba8565b61022f61030136600461224c565b610bde565b610260610314366004611fd4565b610bf0565b61025a610c81565b6102607f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031661022f565b61036c61036736600461224c565b610cb7565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fe565b61020f610cd4565b61025a6103b036600461224c565b610ce3565b61025a6103c336600461213a565b610e33565b6102606103d6366004611fd4565b600a6020526000908152604090205481565b61025a610ef8565b61025a6103fe36600461205e565b611005565b61020f61041136600461224c565b61103e565b61026060085481565b61026061042d366004611fd4565b61110b565b6101f2610440366004611fef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a61047c366004611fd4565b611116565b6102607f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806104d957506001600160e01b03198216635b5e139f60e01b145b806104f457506001600160e01b0319821663780e9d6360e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490612481565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612481565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b4826001541190565b61061b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610bde565b9050806001600160a01b0316836001600160a01b031614156106b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610612565b336001600160a01b03821614806106cd57506106cd8133610440565b61073f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610612565b61074a8383836111ae565b505050565b61074a83838361120a565b6000546001600160a01b031633146107845760405162461bcd60e51b815260040161061290612320565b600260095414156107d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60026009556107e581611592565b506001600955565b60006107f883610bf0565b82106108515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610612565b600061085c60015490565b905060008060005b83811015610906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108b757805192505b876001600160a01b0316836001600160a01b031614156108f357868414156108e55750935061050f92505050565b836108ef816124bc565b9450505b50806108fe816124bc565b915050610864565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610612565b6000546001600160a01b031633146109905760405162461bcd60e51b815260040161061290612320565b7f0000000000000000000000000000000000000000000000000000000000000000816109bb60015490565b6109c591906123d3565b1115610a235760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610612565b610a4d7f0000000000000000000000000000000000000000000000000000000000000000826124d7565b15610aaf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610612565b6000610adb7f0000000000000000000000000000000000000000000000000000000000000000836123eb565b905060005b8181101561074a57610b12337f000000000000000000000000000000000000000000000000000000000000000061177c565b80610b1c816124bc565b915050610ae0565b61074a83838360405180602001604052806000815250611005565b6000610b4a60015490565b8210610ba45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610612565b5090565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161061290612320565b61074a600b8383611f28565b6000610be98261179a565b5192915050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610612565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cab5760405162461bcd60e51b815260040161061290612320565b610cb56000611944565b565b604080518082019091526000808252602082015261050f8261179a565b60606003805461052490612481565b323314610d325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000081610d5d60015490565b610d6791906123d3565b1115610daa5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000081610dd53361110b565b610ddf91906123d3565b1115610e265760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610612565b610e30338261177c565b50565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610612565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f225760405162461bcd60e51b815260040161061290612320565b60026009541415610f755760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002600955604051600090339047908381818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50509050806107e55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610612565b61101084848461120a565b61101c84848484611994565b6110385760405162461bcd60e51b815260040161061290612355565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60006110b9611aa2565b905060008151116110d95760405180602001604052806000815250611104565b806110e384611ab1565b6040516020016110f4929190612291565b6040516020818303038152906040525b9392505050565b600061050f82611baf565b6000546001600160a01b031633146111405760405162461bcd60e51b815260040161061290612320565b6001600160a01b0381166111a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610e3081611944565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112158261179a565b80519091506000906001600160a01b0316336001600160a01b0316148061124c575033611241846105a7565b6001600160a01b0316145b8061125e5750815161125e9033610440565b9050806112c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610612565b846001600160a01b031682600001516001600160a01b03161461133c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610612565b6001600160a01b0384166113a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b6113b060008484600001516111ae565b6001600160a01b03851660009081526005602052604081208054600192906113e29084906001600160801b03166123ff565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142e918591166123a8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b68460016123d3565b6000818152600460205260409020549091506001600160a01b0316611548576114e0816001541190565b156115485760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115e25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610612565b600060016115f084846123d3565b6115fa9190612427565b905061162760017f0000000000000000000000000000000000000000000000000000000000000000612427565b81111561165c5761165960017f0000000000000000000000000000000000000000000000000000000000000000612427565b90505b611667816001541190565b6116c25760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610612565b815b818111611768576000818152600460205260409020546001600160a01b03166117565760006116f28261179a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611760816124bc565b9150506116c4565b506117748160016123d3565b600855505050565b611796828260405180602001604052806000815250611c4d565b5050565b60408051808201909152600080825260208201526117b9826001541190565b6118185760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610612565b60007f000000000000000000000000000000000000000000000000000000000000000083106118795761186b7f000000000000000000000000000000000000000000000000000000000000000084612427565b6118769060016123d3565b90505b825b8181106118e3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d057949350505050565b50806118db8161246a565b91505061187b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610612565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d89033908990889088906004016122d0565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f918101906121bd565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b815260040161061290612355565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b5060015b949350505050565b6060600b805461052490612481565b606081611ad55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aff5780611ae9816124bc565b9150611af89050600a836123eb565b9150611ad9565b60008167ffffffffffffffff811115611b1a57611b1a61252d565b6040519080825280601f01601f191660200182016040528015611b44576020820181803683370190505b5090505b8415611a9a57611b59600183612427565b9150611b66600a866124d7565b611b719060306123d3565b60f81b818381518110611b8657611b86612517565b60200101906001600160f81b031916908160001a905350611ba8600a866123eb565b9450611b48565b60006001600160a01b038216611c215760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610612565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611cb05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610612565b611cbb816001541190565b15611d085760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610612565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d835760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610612565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ddf9087906123a8565b6001600160801b03168152602001858360200151611dfd91906123a8565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000888488611994565b611efd5760405162461bcd60e51b815260040161061290612355565b81611f07816124bc565b9250508080611f15906124bc565b915050611e94565b50600181905561158a565b828054611f3490612481565b90600052602060002090601f016020900481019282611f565760008555611f9c565b82601f10611f6f5782800160ff19823516178555611f9c565b82800160010185558215611f9c579182015b82811115611f9c578235825591602001919060010190611f81565b50610ba49291505b80821115610ba45760008155600101611fa4565b80356001600160a01b0381168114611fcf57600080fd5b919050565b600060208284031215611fe657600080fd5b61110482611fb8565b6000806040838503121561200257600080fd5b61200b83611fb8565b915061201960208401611fb8565b90509250929050565b60008060006060848603121561203757600080fd5b61204084611fb8565b925061204e60208501611fb8565b9150604084013590509250925092565b6000806000806080858703121561207457600080fd5b61207d85611fb8565b935061208b60208601611fb8565b925060408501359150606085013567ffffffffffffffff808211156120af57600080fd5b818701915087601f8301126120c357600080fd5b8135818111156120d5576120d561252d565b604051601f8201601f19908116603f011681019083821181831017156120fd576120fd61252d565b816040528281528a602084870101111561211657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561214d57600080fd5b61215683611fb8565b91506020830135801515811461216b57600080fd5b809150509250929050565b6000806040838503121561218957600080fd5b61219283611fb8565b946020939093013593505050565b6000602082840312156121b257600080fd5b813561110481612543565b6000602082840312156121cf57600080fd5b815161110481612543565b600080602083850312156121ed57600080fd5b823567ffffffffffffffff8082111561220557600080fd5b818501915085601f83011261221957600080fd5b81358181111561222857600080fd5b86602082850101111561223a57600080fd5b60209290920196919550909350505050565b60006020828403121561225e57600080fd5b5035919050565b6000815180845261227d81602086016020860161243e565b601f01601f19169290920160200192915050565b600083516122a381846020880161243e565b8351908301906122b781836020880161243e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230390830184612265565b9695505050505050565b6020815260006111046020830184612265565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156123ca576123ca6124eb565b01949350505050565b600082198211156123e6576123e66124eb565b500190565b6000826123fa576123fa612501565b500490565b60006001600160801b038381169083168181101561241f5761241f6124eb565b039392505050565b600082821015612439576124396124eb565b500390565b60005b83811015612459578181015183820152602001612441565b838111156110385750506000910152565b600081612479576124796124eb565b506000190190565b600181811c9082168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124d0576124d06124eb565b5060010190565b6000826124e6576124e6612501565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3057600080fdfea2646970667358221220b36376be405208a3ad214e41c71f31357f3a592111b3cd64bf92d044af8a500264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000014

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638bc35c2f11610104578063ac446002116100a2578063dc33e68111610071578063dc33e6811461041f578063e985e9c514610432578063f2fde38b1461046e578063fbe1aa511461048157600080fd5b8063ac446002146103e8578063b88d4fde146103f0578063c87b56dd14610403578063d7224ba01461041657600080fd5b806395d89b41116100de57806395d89b411461039a578063a0712d68146103a2578063a22cb465146103b5578063a7cd52cb146103c857600080fd5b80638bc35c2f146103215780638da5cb5b146103485780639231ab2a1461035957600080fd5b80632f745c591161017c57806355f804b31161014b57806355f804b3146102e05780636352211e146102f357806370a0823114610306578063715018a61461031957600080fd5b80632f745c5914610294578063375a069a146102a757806342842e0e146102ba5780634f6ccce7146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632d20fb601461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046121a0565b6104a8565b60405190151581526020015b60405180910390f35b61020f610515565b6040516101fe919061230d565b61022f61022a36600461224c565b6105a7565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004612176565b610637565b005b6001545b6040519081526020016101fe565b61025a61027c366004612022565b61074f565b61025a61028f36600461224c565b61075a565b6102606102a2366004612176565b6107ed565b61025a6102b536600461224c565b610966565b61025a6102c8366004612022565b610b24565b6102606102db36600461224c565b610b3f565b61025a6102ee3660046121da565b610ba8565b61022f61030136600461224c565b610bde565b610260610314366004611fd4565b610bf0565b61025a610c81565b6102607f000000000000000000000000000000000000000000000000000000000000000a81565b6000546001600160a01b031661022f565b61036c61036736600461224c565b610cb7565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101fe565b61020f610cd4565b61025a6103b036600461224c565b610ce3565b61025a6103c336600461213a565b610e33565b6102606103d6366004611fd4565b600a6020526000908152604090205481565b61025a610ef8565b61025a6103fe36600461205e565b611005565b61020f61041136600461224c565b61103e565b61026060085481565b61026061042d366004611fd4565b61110b565b6101f2610440366004611fef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a61047c366004611fd4565b611116565b6102607f000000000000000000000000000000000000000000000000000000000000001481565b60006001600160e01b031982166380ac58cd60e01b14806104d957506001600160e01b03198216635b5e139f60e01b145b806104f457506001600160e01b0319821663780e9d6360e01b145b8061050f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052490612481565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612481565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b4826001541190565b61061b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610bde565b9050806001600160a01b0316836001600160a01b031614156106b15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610612565b336001600160a01b03821614806106cd57506106cd8133610440565b61073f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610612565b61074a8383836111ae565b505050565b61074a83838361120a565b6000546001600160a01b031633146107845760405162461bcd60e51b815260040161061290612320565b600260095414156107d75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b60026009556107e581611592565b506001600955565b60006107f883610bf0565b82106108515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610612565b600061085c60015490565b905060008060005b83811015610906576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108b757805192505b876001600160a01b0316836001600160a01b031614156108f357868414156108e55750935061050f92505050565b836108ef816124bc565b9450505b50806108fe816124bc565b915050610864565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610612565b6000546001600160a01b031633146109905760405162461bcd60e51b815260040161061290612320565b7f0000000000000000000000000000000000000000000000000000000000000014816109bb60015490565b6109c591906123d3565b1115610a235760405162461bcd60e51b815260206004820152602760248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b6064820152608401610612565b610a4d7f000000000000000000000000000000000000000000000000000000000000000a826124d7565b15610aaf5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610612565b6000610adb7f000000000000000000000000000000000000000000000000000000000000000a836123eb565b905060005b8181101561074a57610b12337f000000000000000000000000000000000000000000000000000000000000000a61177c565b80610b1c816124bc565b915050610ae0565b61074a83838360405180602001604052806000815250611005565b6000610b4a60015490565b8210610ba45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610612565b5090565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161061290612320565b61074a600b8383611f28565b6000610be98261179a565b5192915050565b60006001600160a01b038216610c5c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610612565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cab5760405162461bcd60e51b815260040161061290612320565b610cb56000611944565b565b604080518082019091526000808252602082015261050f8261179a565b60606003805461052490612481565b323314610d325760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000138881610d5d60015490565b610d6791906123d3565b1115610daa5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000a81610dd53361110b565b610ddf91906123d3565b1115610e265760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610612565b610e30338261177c565b50565b6001600160a01b038216331415610e8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610612565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f225760405162461bcd60e51b815260040161061290612320565b60026009541415610f755760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610612565b6002600955604051600090339047908381818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50509050806107e55760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610612565b61101084848461120a565b61101c84848484611994565b6110385760405162461bcd60e51b815260040161061290612355565b50505050565b606061104b826001541190565b6110af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60006110b9611aa2565b905060008151116110d95760405180602001604052806000815250611104565b806110e384611ab1565b6040516020016110f4929190612291565b6040516020818303038152906040525b9392505050565b600061050f82611baf565b6000546001600160a01b031633146111405760405162461bcd60e51b815260040161061290612320565b6001600160a01b0381166111a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610e3081611944565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112158261179a565b80519091506000906001600160a01b0316336001600160a01b0316148061124c575033611241846105a7565b6001600160a01b0316145b8061125e5750815161125e9033610440565b9050806112c85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610612565b846001600160a01b031682600001516001600160a01b03161461133c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610612565b6001600160a01b0384166113a05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610612565b6113b060008484600001516111ae565b6001600160a01b03851660009081526005602052604081208054600192906113e29084906001600160801b03166123ff565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261142e918591166123a8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114b68460016123d3565b6000818152600460205260409020549091506001600160a01b0316611548576114e0816001541190565b156115485760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816115e25760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610612565b600060016115f084846123d3565b6115fa9190612427565b905061162760017f0000000000000000000000000000000000000000000000000000000000001388612427565b81111561165c5761165960017f0000000000000000000000000000000000000000000000000000000000001388612427565b90505b611667816001541190565b6116c25760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610612565b815b818111611768576000818152600460205260409020546001600160a01b03166117565760006116f28261179a565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611760816124bc565b9150506116c4565b506117748160016123d3565b600855505050565b611796828260405180602001604052806000815250611c4d565b5050565b60408051808201909152600080825260208201526117b9826001541190565b6118185760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610612565b60007f000000000000000000000000000000000000000000000000000000000000000a83106118795761186b7f000000000000000000000000000000000000000000000000000000000000000a84612427565b6118769060016123d3565b90505b825b8181106118e3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d057949350505050565b50806118db8161246a565b91505061187b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610612565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d89033908990889088906004016122d0565b602060405180830381600087803b1580156119f257600080fd5b505af1925050508015611a22575060408051601f3d908101601f19168201909252611a1f918101906121bd565b60015b611a7c573d808015611a50576040519150601f19603f3d011682016040523d82523d6000602084013e611a55565b606091505b508051611a745760405162461bcd60e51b815260040161061290612355565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9a565b5060015b949350505050565b6060600b805461052490612481565b606081611ad55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aff5780611ae9816124bc565b9150611af89050600a836123eb565b9150611ad9565b60008167ffffffffffffffff811115611b1a57611b1a61252d565b6040519080825280601f01601f191660200182016040528015611b44576020820181803683370190505b5090505b8415611a9a57611b59600183612427565b9150611b66600a866124d7565b611b719060306123d3565b60f81b818381518110611b8657611b86612517565b60200101906001600160f81b031916908160001a905350611ba8600a866123eb565b9450611b48565b60006001600160a01b038216611c215760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610612565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611cb05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610612565b611cbb816001541190565b15611d085760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610612565b7f000000000000000000000000000000000000000000000000000000000000000a831115611d835760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610612565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ddf9087906123a8565b6001600160801b03168152602001858360200151611dfd91906123a8565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ee16000888488611994565b611efd5760405162461bcd60e51b815260040161061290612355565b81611f07816124bc565b9250508080611f15906124bc565b915050611e94565b50600181905561158a565b828054611f3490612481565b90600052602060002090601f016020900481019282611f565760008555611f9c565b82601f10611f6f5782800160ff19823516178555611f9c565b82800160010185558215611f9c579182015b82811115611f9c578235825591602001919060010190611f81565b50610ba49291505b80821115610ba45760008155600101611fa4565b80356001600160a01b0381168114611fcf57600080fd5b919050565b600060208284031215611fe657600080fd5b61110482611fb8565b6000806040838503121561200257600080fd5b61200b83611fb8565b915061201960208401611fb8565b90509250929050565b60008060006060848603121561203757600080fd5b61204084611fb8565b925061204e60208501611fb8565b9150604084013590509250925092565b6000806000806080858703121561207457600080fd5b61207d85611fb8565b935061208b60208601611fb8565b925060408501359150606085013567ffffffffffffffff808211156120af57600080fd5b818701915087601f8301126120c357600080fd5b8135818111156120d5576120d561252d565b604051601f8201601f19908116603f011681019083821181831017156120fd576120fd61252d565b816040528281528a602084870101111561211657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561214d57600080fd5b61215683611fb8565b91506020830135801515811461216b57600080fd5b809150509250929050565b6000806040838503121561218957600080fd5b61219283611fb8565b946020939093013593505050565b6000602082840312156121b257600080fd5b813561110481612543565b6000602082840312156121cf57600080fd5b815161110481612543565b600080602083850312156121ed57600080fd5b823567ffffffffffffffff8082111561220557600080fd5b818501915085601f83011261221957600080fd5b81358181111561222857600080fd5b86602082850101111561223a57600080fd5b60209290920196919550909350505050565b60006020828403121561225e57600080fd5b5035919050565b6000815180845261227d81602086016020860161243e565b601f01601f19169290920160200192915050565b600083516122a381846020880161243e565b8351908301906122b781836020880161243e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230390830184612265565b9695505050505050565b6020815260006111046020830184612265565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156123ca576123ca6124eb565b01949350505050565b600082198211156123e6576123e66124eb565b500190565b6000826123fa576123fa612501565b500490565b60006001600160801b038381169083168181101561241f5761241f6124eb565b039392505050565b600082821015612439576124396124eb565b500390565b60005b83811015612459578181015183820152602001612441565b838111156110385750506000910152565b600081612479576124796124eb565b506000190190565b600181811c9082168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124d0576124d06124eb565b5060010190565b6000826124e6576124e6612501565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e3057600080fdfea2646970667358221220b36376be405208a3ad214e41c71f31357f3a592111b3cd64bf92d044af8a500264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000014

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 5000
Arg [2] : amountForDevs_ (uint256): 20

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014


Deployed Bytecode Sourcemap

41650:2226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:370;;;;;;:::i;:::-;;:::i;:::-;;;6001:14:1;;5994:22;5976:41;;5964:2;5949:18;27009:370:0;;;;;;;;28735:94;;;:::i;:::-;;;;;;;:::i;30269:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5299:32:1;;;5281:51;;5269:2;5254:18;30269:204:0;5135:203:1;29832:379:0;;;;;;:::i;:::-;;:::i;:::-;;25570:94;25646:12;;25570:94;;;18582:25:1;;;18570:2;18555:18;25570:94:0;18436:177:1;31119:142:0;;;;;;:::i;:::-;;:::i;43487:118::-;;;;;;:::i;:::-;;:::i;26201:744::-;;;;;;:::i;:::-;;:::i;42575:442::-;;;;;;:::i;:::-;;:::i;31324:157::-;;;;;;:::i;:::-;;:::i;25733:177::-;;;;;;:::i;:::-;;:::i;43194:100::-;;;;;;:::i;:::-;;:::i;28558:118::-;;;;;;:::i;:::-;;:::i;27435:211::-;;;;;;:::i;:::-;;:::i;40950:94::-;;;:::i;41707:48::-;;;;;40299:87;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;40299:87;;43724:147;;;;;;:::i;:::-;;:::i;:::-;;;;18301:13:1;;-1:-1:-1;;;;;18297:39:1;18279:58;;18397:4;18385:17;;;18379:24;18405:18;18375:49;18353:20;;;18346:79;;;;18252:18;43724:147:0;18071:360:1;28890:98:0;;;:::i;42239:305::-;;;;;;:::i;:::-;;:::i;30537:274::-;;;;;;:::i;:::-;;:::i;41803:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;43300:181;;;:::i;31544:311::-;;;;;;:::i;:::-;;:::i;29051:403::-;;;;;;:::i;:::-;;:::i;35959:43::-;;;;;;43611:107;;;;;;:::i;:::-;;:::i;30874:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31019:25:0;;;30996:4;31019:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30874:186;41199:192;;;;;;:::i;:::-;;:::i;41760:38::-;;;;;27009:370;27136:4;-1:-1:-1;;;;;;27166:40:0;;-1:-1:-1;;;27166:40:0;;:99;;-1:-1:-1;;;;;;;27217:48:0;;-1:-1:-1;;;27217:48:0;27166:99;:160;;;-1:-1:-1;;;;;;;27276:50:0;;-1:-1:-1;;;27276:50:0;27166:160;:207;;;-1:-1:-1;;;;;;;;;;13290:40:0;;;27337:36;27152:221;27009:370;-1:-1:-1;;27009:370:0:o;28735:94::-;28789:13;28818:5;28811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28735:94;:::o;30269:204::-;30337:7;30361:16;30369:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;30361:16;30353:74;;;;-1:-1:-1;;;30353:74:0;;17456:2:1;30353:74:0;;;17438:21:1;17495:2;17475:18;;;17468:30;17534:34;17514:18;;;17507:62;-1:-1:-1;;;17585:18:1;;;17578:43;17638:19;;30353:74:0;;;;;;;;;-1:-1:-1;30443:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30443:24:0;;30269:204::o;29832:379::-;29901:13;29917:24;29933:7;29917:15;:24::i;:::-;29901:40;;29962:5;-1:-1:-1;;;;;29956:11:0;:2;-1:-1:-1;;;;;29956:11:0;;;29948:58;;;;-1:-1:-1;;;29948:58:0;;13171:2:1;29948:58:0;;;13153:21:1;13210:2;13190:18;;;13183:30;13249:34;13229:18;;;13222:62;-1:-1:-1;;;13300:18:1;;;13293:32;13342:19;;29948:58:0;12969:398:1;29948:58:0;23120:10;-1:-1:-1;;;;;30031:21:0;;;;:62;;-1:-1:-1;30056:37:0;30073:5;23120:10;30874:186;:::i;30056:37::-;30015:153;;;;-1:-1:-1;;;30015:153:0;;9675:2:1;30015:153:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:34;9733:18;;;9726:62;9824:27;9804:18;;;9797:55;9869:19;;30015:153:0;9473:421:1;30015:153:0;30177:28;30186:2;30190:7;30199:5;30177:8;:28::i;:::-;29894:317;29832:379;;:::o;31119:142::-;31227:28;31237:4;31243:2;31247:7;31227:9;:28::i;43487:118::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;21491:1:::1;22087:7;;:19;;22079:63;;;::::0;-1:-1:-1;;;22079:63:0;;16680:2:1;22079:63:0::1;::::0;::::1;16662:21:1::0;16719:2;16699:18;;;16692:30;16758:33;16738:18;;;16731:61;16809:18;;22079:63:0::1;16478:355:1::0;22079:63:0::1;21491:1;22220:7;:18:::0;43571:28:::2;43590:8:::0;43571:18:::2;:28::i;:::-;-1:-1:-1::0;21447:1:0::1;22399:7;:22:::0;43487:118::o;26201:744::-;26310:7;26345:16;26355:5;26345:9;:16::i;:::-;26337:5;:24;26329:71;;;;-1:-1:-1;;;26329:71:0;;6454:2:1;26329:71:0;;;6436:21:1;6493:2;6473:18;;;6466:30;6532:34;6512:18;;;6505:62;-1:-1:-1;;;6583:18:1;;;6576:32;6625:19;;26329:71:0;6252:398:1;26329:71:0;26407:22;26432:13;25646:12;;;25570:94;26432:13;26407:38;;26452:19;26482:25;26532:9;26527:350;26551:14;26547:1;:18;26527:350;;;26581:31;26615:14;;;:11;:14;;;;;;;;;26581:48;;;;;;;;;-1:-1:-1;;;;;26581:48:0;;;;;-1:-1:-1;;;26581:48:0;;;;;;;;;;;;26642:28;26638:89;;26703:14;;;-1:-1:-1;26638:89:0;26760:5;-1:-1:-1;;;;;26739:26:0;:17;-1:-1:-1;;;;;26739:26:0;;26735:135;;;26797:5;26782:11;:20;26778:59;;;-1:-1:-1;26824:1:0;-1:-1:-1;26817:8:0;;-1:-1:-1;;;26817:8:0;26778:59;26847:13;;;;:::i;:::-;;;;26735:135;-1:-1:-1;26567:3:0;;;;:::i;:::-;;;;26527:350;;;-1:-1:-1;26883:56:0;;-1:-1:-1;;;26883:56:0;;15858:2:1;26883:56:0;;;15840:21:1;15897:2;15877:18;;;15870:30;15936:34;15916:18;;;15909:62;-1:-1:-1;;;15987:18:1;;;15980:44;16041:19;;26883:56:0;15656:410:1;42575:442:0;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;42680:13:::1;42668:8;42652:13;25646:12:::0;;;25570:94;42652:13:::1;:24;;;;:::i;:::-;:41;;42636:114;;;::::0;-1:-1:-1;;;42636:114:0;;15450:2:1;42636:114:0::1;::::0;::::1;15432:21:1::0;15489:2;15469:18;;;15462:30;15528:34;15508:18;;;15501:62;-1:-1:-1;;;15579:18:1;;;15572:37;15626:19;;42636:114:0::1;15248:403:1::0;42636:114:0::1;42773:23;42784:12;42773:8:::0;:23:::1;:::i;:::-;:28:::0;42757:106:::1;;;::::0;-1:-1:-1;;;42757:106:0;;7675:2:1;42757:106:0::1;::::0;::::1;7657:21:1::0;7714:2;7694:18;;;7687:30;7753:34;7733:18;;;7726:62;-1:-1:-1;;;7804:18:1;;;7797:42;7856:19;;42757:106:0::1;7473:408:1::0;42757:106:0::1;42870:17;42890:23;42901:12;42890:8:::0;:23:::1;:::i;:::-;42870:43;;42925:9;42920:92;42944:9;42940:1;:13;42920:92;;;42969:35;42979:10;42991:12;42969:9;:35::i;:::-;42955:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42920:92;;31324:157:::0;31436:39;31453:4;31459:2;31463:7;31436:39;;;;;;;;;;;;:16;:39::i;25733:177::-;25800:7;25832:13;25646:12;;;25570:94;25832:13;25824:5;:21;25816:69;;;;-1:-1:-1;;;25816:69:0;;8088:2:1;25816:69:0;;;8070:21:1;8127:2;8107:18;;;8100:30;8166:34;8146:18;;;8139:62;-1:-1:-1;;;8217:18:1;;;8210:33;8260:19;;25816:69:0;7886:399:1;25816:69:0;-1:-1:-1;25899:5:0;25733:177::o;43194:100::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;43265:23:::1;:13;43281:7:::0;;43265:23:::1;:::i;28558:118::-:0;28622:7;28645:20;28657:7;28645:11;:20::i;:::-;:25;;28558:118;-1:-1:-1;;28558:118:0:o;27435:211::-;27499:7;-1:-1:-1;;;;;27523:19:0;;27515:75;;;;-1:-1:-1;;;27515:75:0;;10454:2:1;27515:75:0;;;10436:21:1;10493:2;10473:18;;;10466:30;10532:34;10512:18;;;10505:62;-1:-1:-1;;;10583:18:1;;;10576:41;10634:19;;27515:75:0;10252:407:1;27515:75:0;-1:-1:-1;;;;;;27612:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27612:27:0;;27435:211::o;40950:94::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;41015:21:::1;41033:1;41015:9;:21::i;:::-;40950:94::o:0;43724:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43845:20:0;43857:7;43845:11;:20::i;28890:98::-;28946:13;28975:7;28968:14;;;;;:::i;42239:305::-;42157:9;42170:10;42157:23;42149:66;;;;-1:-1:-1;;;42149:66:0;;9316:2:1;42149:66:0;;;9298:21:1;9355:2;9335:18;;;9328:30;9394:32;9374:18;;;9367:60;9444:18;;42149:66:0;9114:354:1;42149:66:0;42338:14:::1;42326:8;42310:13;25646:12:::0;;;25570:94;42310:13:::1;:24;;;;:::i;:::-;:42;;42302:73;;;::::0;-1:-1:-1;;;42302:73:0;;10866:2:1;42302:73:0::1;::::0;::::1;10848:21:1::0;10905:2;10885:18;;;10878:30;-1:-1:-1;;;10924:18:1;;;10917:48;10982:18;;42302:73:0::1;10664:342:1::0;42302:73:0::1;42437:23;42425:8;42398:24;42411:10;42398:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;42382:118;;;::::0;-1:-1:-1;;;42382:118:0;;15099:2:1;42382:118:0::1;::::0;::::1;15081:21:1::0;15138:2;15118:18;;;15111:30;-1:-1:-1;;;15157:18:1;;;15150:52;15219:18;;42382:118:0::1;14897:346:1::0;42382:118:0::1;42507:31;42517:10;42529:8;42507:9;:31::i;:::-;42239:305:::0;:::o;30537:274::-;-1:-1:-1;;;;;30628:24:0;;23120:10;30628:24;;30620:63;;;;-1:-1:-1;;;30620:63:0;;12397:2:1;30620:63:0;;;12379:21:1;12436:2;12416:18;;;12409:30;12475:28;12455:18;;;12448:56;12521:18;;30620:63:0;12195:350:1;30620:63:0;23120:10;30692:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30692:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30692:53:0;;;;;;;;;;30757:48;;5976:41:1;;;30692:42:0;;23120:10;30757:48;;5949:18:1;30757:48:0;;;;;;;30537:274;;:::o;43300:181::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;21491:1:::1;22087:7;;:19;;22079:63;;;::::0;-1:-1:-1;;;22079:63:0;;16680:2:1;22079:63:0::1;::::0;::::1;16662:21:1::0;16719:2;16699:18;;;16692:30;16758:33;16738:18;;;16731:61;16809:18;;22079:63:0::1;16478:355:1::0;22079:63:0::1;21491:1;22220:7;:18:::0;43383:49:::2;::::0;43365:12:::2;::::0;43383:10:::2;::::0;43406:21:::2;::::0;43365:12;43383:49;43365:12;43383:49;43406:21;43383:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43364:68;;;43447:7;43439:36;;;::::0;-1:-1:-1;;;43439:36:0;;13574:2:1;43439:36:0::2;::::0;::::2;13556:21:1::0;13613:2;13593:18;;;13586:30;-1:-1:-1;;;13632:18:1;;;13625:46;13688:18;;43439:36:0::2;13372:340:1::0;31544:311:0;31681:28;31691:4;31697:2;31701:7;31681:9;:28::i;:::-;31732:48;31755:4;31761:2;31765:7;31774:5;31732:22;:48::i;:::-;31716:133;;;;-1:-1:-1;;;31716:133:0;;;;;;;:::i;:::-;31544:311;;;;:::o;29051:403::-;29149:13;29190:16;29198:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;29190:16;29174:97;;;;-1:-1:-1;;;29174:97:0;;11981:2:1;29174:97:0;;;11963:21:1;12020:2;12000:18;;;11993:30;12059:34;12039:18;;;12032:62;-1:-1:-1;;;12110:18:1;;;12103:45;12165:19;;29174:97:0;11779:411:1;29174:97:0;29280:21;29304:10;:8;:10::i;:::-;29280:34;;29359:1;29341:7;29335:21;:25;:113;;;;;;;;;;;;;;;;;29396:7;29405:18;:7;:16;:18::i;:::-;29379:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29335:113;29321:127;29051:403;-1:-1:-1;;;29051:403:0:o;43611:107::-;43669:7;43692:20;43706:5;43692:13;:20::i;41199:192::-;40345:7;40372:6;-1:-1:-1;;;;;40372:6:0;23120:10;40519:23;40511:68;;;;-1:-1:-1;;;40511:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41288:22:0;::::1;41280:73;;;::::0;-1:-1:-1;;;41280:73:0;;6857:2:1;41280:73:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:34;6915:18;;;6908:62;-1:-1:-1;;;6986:18:1;;;6979:36;7032:19;;41280:73:0::1;6655:402:1::0;41280:73:0::1;41364:19;41374:8;41364:9;:19::i;35781:172::-:0;35878:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35878:29:0;-1:-1:-1;;;;;35878:29:0;;;;;;;;;35919:28;;35878:24;;35919:28;;;;;;;35781:172;;;:::o;34146:1529::-;34243:35;34281:20;34293:7;34281:11;:20::i;:::-;34352:18;;34243:58;;-1:-1:-1;34310:22:0;;-1:-1:-1;;;;;34336:34:0;23120:10;-1:-1:-1;;;;;34336:34:0;;:81;;;-1:-1:-1;23120:10:0;34381:20;34393:7;34381:11;:20::i;:::-;-1:-1:-1;;;;;34381:36:0;;34336:81;:142;;;-1:-1:-1;34445:18:0;;34428:50;;23120:10;30874:186;:::i;34428:50::-;34310:169;;34504:17;34488:101;;;;-1:-1:-1;;;34488:101:0;;12752:2:1;34488:101:0;;;12734:21:1;12791:2;12771:18;;;12764:30;12830:34;12810:18;;;12803:62;-1:-1:-1;;;12881:18:1;;;12874:48;12939:19;;34488:101:0;12550:414:1;34488:101:0;34636:4;-1:-1:-1;;;;;34614:26:0;:13;:18;;;-1:-1:-1;;;;;34614:26:0;;34598:98;;;;-1:-1:-1;;;34598:98:0;;11213:2:1;34598:98:0;;;11195:21:1;11252:2;11232:18;;;11225:30;11291:34;11271:18;;;11264:62;-1:-1:-1;;;11342:18:1;;;11335:36;11388:19;;34598:98:0;11011:402:1;34598:98:0;-1:-1:-1;;;;;34711:16:0;;34703:66;;;;-1:-1:-1;;;34703:66:0;;8492:2:1;34703:66:0;;;8474:21:1;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:35;8666:19;;34703:66:0;8290:401:1;34703:66:0;34878:49;34895:1;34899:7;34908:13;:18;;;34878:8;:49::i;:::-;-1:-1:-1;;;;;34936:18:0;;;;;;:12;:18;;;;;:31;;34966:1;;34936:18;:31;;34966:1;;-1:-1:-1;;;;;34936:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34936:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34974:16:0;;-1:-1:-1;34974:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34974:16:0;;:29;;-1:-1:-1;;34974:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34974:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35033:43:0;;;;;;;;-1:-1:-1;;;;;35033:43:0;;;;;;35059:15;35033:43;;;;;;;;;-1:-1:-1;35010:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35010:66:0;-1:-1:-1;;;;;;35010:66:0;;;;;;;;;;;35326:11;35022:7;-1:-1:-1;35326:11:0;:::i;:::-;35389:1;35348:24;;;:11;:24;;;;;:29;35304:33;;-1:-1:-1;;;;;;35348:29:0;35344:236;;35406:20;35414:11;32181:12;;-1:-1:-1;32171:22:0;32094:105;35406:20;35402:171;;;35466:97;;;;;;;;35493:18;;-1:-1:-1;;;;;35466:97:0;;;;;;35524:28;;;;35466:97;;;;;;;;;;-1:-1:-1;35439:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35439:124:0;-1:-1:-1;;;;;;35439:124:0;;;;;;;;;;;;35402:171;35612:7;35608:2;-1:-1:-1;;;;;35593:27:0;35602:4;-1:-1:-1;;;;;35593:27:0;;;;;;;;;;;35627:42;34236:1439;;;34146:1529;;;:::o;36107:846::-;36197:24;;36236:12;36228:49;;;;-1:-1:-1;;;36228:49:0;;10101:2:1;36228:49:0;;;10083:21:1;10140:2;10120:18;;;10113:30;10179:26;10159:18;;;10152:54;10223:18;;36228:49:0;9899:348:1;36228:49:0;36284:16;36334:1;36303:28;36323:8;36303:17;:28;:::i;:::-;:32;;;;:::i;:::-;36284:51;-1:-1:-1;36357:18:0;36374:1;36357:14;:18;:::i;:::-;36346:8;:29;36342:81;;;36397:18;36414:1;36397:14;:18;:::i;:::-;36386:29;;36342:81;36538:17;36546:8;32181:12;;-1:-1:-1;32171:22:0;32094:105;36538:17;36530:68;;;;-1:-1:-1;;;36530:68:0;;16273:2:1;36530:68:0;;;16255:21:1;16312:2;16292:18;;;16285:30;16351:34;16331:18;;;16324:62;-1:-1:-1;;;16402:18:1;;;16395:36;16448:19;;36530:68:0;16071:402:1;36530:68:0;36622:17;36605:297;36646:8;36641:1;:13;36605:297;;36705:1;36674:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;36674:19:0;36670:225;;36720:31;36754:14;36766:1;36754:11;:14::i;:::-;36796:89;;;;;;;;36823:14;;-1:-1:-1;;;;;36796:89:0;;;;;;36850:24;;;;36796:89;;;;;;;;;;-1:-1:-1;36779:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36779:106:0;-1:-1:-1;;;;;;36779:106:0;;;;;;;;;;;;-1:-1:-1;36670:225:0;36656:3;;;;:::i;:::-;;;;36605:297;;;-1:-1:-1;36935:12:0;:8;36946:1;36935:12;:::i;:::-;36908:24;:39;-1:-1:-1;;;36107:846:0:o;32205:98::-;32270:27;32280:2;32284:8;32270:27;;;;;;;;;;;;:9;:27::i;:::-;32205:98;;:::o;27898:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28015:16:0;28023:7;32181:12;;-1:-1:-1;32171:22:0;32094:105;28015:16;28007:71;;;;-1:-1:-1;;;28007:71:0;;7264:2:1;28007:71:0;;;7246:21:1;7303:2;7283:18;;;7276:30;7342:34;7322:18;;;7315:62;-1:-1:-1;;;7393:18:1;;;7386:40;7443:19;;28007:71:0;7062:406:1;28007:71:0;28087:26;28135:12;28124:7;:23;28120:93;;28179:22;28189:12;28179:7;:22;:::i;:::-;:26;;28204:1;28179:26;:::i;:::-;28158:47;;28120:93;28241:7;28221:212;28258:18;28250:4;:26;28221:212;;28295:31;28329:17;;;:11;:17;;;;;;;;;28295:51;;;;;;;;;-1:-1:-1;;;;;28295:51:0;;;;;-1:-1:-1;;;28295:51:0;;;;;;;;;;;;28359:28;28355:71;;28407:9;27898:606;-1:-1:-1;;;;27898:606:0:o;28355:71::-;-1:-1:-1;28278:6:0;;;;:::i;:::-;;;;28221:212;;;-1:-1:-1;28441:57:0;;-1:-1:-1;;;28441:57:0;;17040:2:1;28441:57:0;;;17022:21:1;17079:2;17059:18;;;17052:30;17118:34;17098:18;;;17091:62;-1:-1:-1;;;17169:18:1;;;17162:45;17224:19;;28441:57:0;16838:411:1;41399:173:0;41455:16;41474:6;;-1:-1:-1;;;;;41491:17:0;;;-1:-1:-1;;;;;;41491:17:0;;;;;;41524:40;;41474:6;;;;;;;41524:40;;41455:16;41524:40;41444:128;41399:173;:::o;37496:690::-;37633:4;-1:-1:-1;;;;;37650:13:0;;3876:20;3924:8;37646:535;;37689:72;;-1:-1:-1;;;37689:72:0;;-1:-1:-1;;;;;37689:36:0;;;;;:72;;23120:10;;37740:4;;37746:7;;37755:5;;37689:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37689:72:0;;;;;;;;-1:-1:-1;;37689:72:0;;;;;;;;;;;;:::i;:::-;;;37676:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37920:13:0;;37916:215;;37953:61;;-1:-1:-1;;;37953:61:0;;;;;;;:::i;37916:215::-;38099:6;38093:13;38084:6;38080:2;38076:15;38069:38;37676:464;-1:-1:-1;;;;;;37811:55:0;-1:-1:-1;;;37811:55:0;;-1:-1:-1;37804:62:0;;37646:535;-1:-1:-1;38169:4:0;37646:535;37496:690;;;;;;:::o;43080:108::-;43140:13;43169;43162:20;;;;;:::i;1048:723::-;1104:13;1325:10;1321:53;;-1:-1:-1;;1352:10:0;;;;;;;;;;;;-1:-1:-1;;;1352:10:0;;;;;1048:723::o;1321:53::-;1399:5;1384:12;1440:78;1447:9;;1440:78;;1473:8;;;;:::i;:::-;;-1:-1:-1;1496:10:0;;-1:-1:-1;1504:2:0;1496:10;;:::i;:::-;;;1440:78;;;1528:19;1560:6;1550:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1550:17:0;;1528:39;;1578:154;1585:10;;1578:154;;1612:11;1622:1;1612:11;;:::i;:::-;;-1:-1:-1;1681:10:0;1689:2;1681:5;:10;:::i;:::-;1668:24;;:2;:24;:::i;:::-;1655:39;;1638:6;1645;1638:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1638:56:0;;;;;;;;-1:-1:-1;1709:11:0;1718:2;1709:11;;:::i;:::-;;;1578:154;;27652:240;27713:7;-1:-1:-1;;;;;27745:19:0;;27729:102;;;;-1:-1:-1;;;27729:102:0;;8898:2:1;27729:102:0;;;8880:21:1;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:47;9084:19;;27729:102:0;8696:413:1;27729:102:0;-1:-1:-1;;;;;;27853:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27853:32:0;;-1:-1:-1;;;;;27853:32:0;;27652:240::o;32642:1272::-;32770:12;;-1:-1:-1;;;;;32797:16:0;;32789:62;;;;-1:-1:-1;;;32789:62:0;;14697:2:1;32789:62:0;;;14679:21:1;14736:2;14716:18;;;14709:30;14775:34;14755:18;;;14748:62;-1:-1:-1;;;14826:18:1;;;14819:31;14867:19;;32789:62:0;14495:397:1;32789:62:0;32988:21;32996:12;32181;;-1:-1:-1;32171:22:0;32094:105;32988:21;32987:22;32979:64;;;;-1:-1:-1;;;32979:64:0;;14339:2:1;32979:64:0;;;14321:21:1;14378:2;14358:18;;;14351:30;14417:31;14397:18;;;14390:59;14466:18;;32979:64:0;14137:353:1;32979:64:0;33070:12;33058:8;:24;;33050:71;;;;-1:-1:-1;;;33050:71:0;;17870:2:1;33050:71:0;;;17852:21:1;17909:2;17889:18;;;17882:30;17948:34;17928:18;;;17921:62;-1:-1:-1;;;17999:18:1;;;17992:32;18041:19;;33050:71:0;17668:398:1;33050:71:0;-1:-1:-1;;;;;33233:16:0;;33200:30;33233:16;;;:12;:16;;;;;;;;;33200:49;;;;;;;;;-1:-1:-1;;;;;33200:49:0;;;;;-1:-1:-1;;;33200:49:0;;;;;;;;;;;33275:119;;;;;;;;33295:19;;33200:49;;33275:119;;;33295:39;;33325:8;;33295:39;:::i;:::-;-1:-1:-1;;;;;33275:119:0;;;;;33378:8;33343:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33275:119:0;;;;;;-1:-1:-1;;;;;33256:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33256:138:0;;;;;;;;;;;;33429:43;;;;;;;;;;;33455:15;33429:43;;;;;;;;33401:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33401:71:0;-1:-1:-1;;;;;;33401:71:0;;;;;;;;;;;;;;;;;;33413:12;;33525:281;33549:8;33545:1;:12;33525:281;;;33578:38;;33603:12;;-1:-1:-1;;;;;33578:38:0;;;33595:1;;33578:38;;33595:1;;33578:38;33643:59;33674:1;33678:2;33682:12;33696:5;33643:22;:59::i;:::-;33625:150;;;;-1:-1:-1;;;33625:150:0;;;;;;;:::i;:::-;33784:14;;;;:::i;:::-;;;;33559:3;;;;;:::i;:::-;;;;33525:281;;;-1:-1:-1;33814:12:0;:27;;;33848:60;31544:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:637::-;4563:3;4601:6;4595:13;4617:53;4663:6;4658:3;4651:4;4643:6;4639:17;4617:53;:::i;:::-;4733:13;;4692:16;;;;4755:57;4733:13;4692:16;4789:4;4777:17;;4755:57;:::i;:::-;-1:-1:-1;;;4834:20:1;;4863:22;;;4912:1;4901:13;;4283:637;-1:-1:-1;;;;4283:637:1:o;5343:488::-;-1:-1:-1;;;;;5612:15:1;;;5594:34;;5664:15;;5659:2;5644:18;;5637:43;5711:2;5696:18;;5689:34;;;5759:3;5754:2;5739:18;;5732:31;;;5537:4;;5780:45;;5805:19;;5797:6;5780:45;:::i;:::-;5772:53;5343:488;-1:-1:-1;;;;;;5343:488:1:o;6028:219::-;6177:2;6166:9;6159:21;6140:4;6197:44;6237:2;6226:9;6222:18;6214:6;6197:44;:::i;11418:356::-;11620:2;11602:21;;;11639:18;;;11632:30;11698:34;11693:2;11678:18;;11671:62;11765:2;11750:18;;11418:356::o;13717:415::-;13919:2;13901:21;;;13958:2;13938:18;;;13931:30;13997:34;13992:2;13977:18;;13970:62;-1:-1:-1;;;14063:2:1;14048:18;;14041:49;14122:3;14107:19;;13717:415::o;18618:253::-;18658:3;-1:-1:-1;;;;;18747:2:1;18744:1;18740:10;18777:2;18774:1;18770:10;18808:3;18804:2;18800:12;18795:3;18792:21;18789:47;;;18816:18;;:::i;:::-;18852:13;;18618:253;-1:-1:-1;;;;18618:253:1:o;18876:128::-;18916:3;18947:1;18943:6;18940:1;18937:13;18934:39;;;18953:18;;:::i;:::-;-1:-1:-1;18989:9:1;;18876:128::o;19009:120::-;19049:1;19075;19065:35;;19080:18;;:::i;:::-;-1:-1:-1;19114:9:1;;19009:120::o;19134:246::-;19174:4;-1:-1:-1;;;;;19287:10:1;;;;19257;;19309:12;;;19306:38;;;19324:18;;:::i;:::-;19361:13;;19134:246;-1:-1:-1;;;19134:246:1:o;19385:125::-;19425:4;19453:1;19450;19447:8;19444:34;;;19458:18;;:::i;:::-;-1:-1:-1;19495:9:1;;19385:125::o;19515:258::-;19587:1;19597:113;19611:6;19608:1;19605:13;19597:113;;;19687:11;;;19681:18;19668:11;;;19661:39;19633:2;19626:10;19597:113;;;19728:6;19725:1;19722:13;19719:48;;;-1:-1:-1;;19763:1:1;19745:16;;19738:27;19515:258::o;19778:136::-;19817:3;19845:5;19835:39;;19854:18;;:::i;:::-;-1:-1:-1;;;19890:18:1;;19778:136::o;19919:380::-;19998:1;19994:12;;;;20041;;;20062:61;;20116:4;20108:6;20104:17;20094:27;;20062:61;20169:2;20161:6;20158:14;20138:18;20135:38;20132:161;;;20215:10;20210:3;20206:20;20203:1;20196:31;20250:4;20247:1;20240:15;20278:4;20275:1;20268:15;20132:161;;19919:380;;;:::o;20304:135::-;20343:3;-1:-1:-1;;20364:17:1;;20361:43;;;20384:18;;:::i;:::-;-1:-1:-1;20431:1:1;20420:13;;20304:135::o;20444:112::-;20476:1;20502;20492:35;;20507:18;;:::i;:::-;-1:-1:-1;20541:9:1;;20444:112::o;20561:127::-;20622:10;20617:3;20613:20;20610:1;20603:31;20653:4;20650:1;20643:15;20677:4;20674:1;20667:15;20693:127;20754:10;20749:3;20745:20;20742:1;20735:31;20785:4;20782:1;20775:15;20809:4;20806:1;20799:15;20825:127;20886:10;20881:3;20877:20;20874:1;20867:31;20917:4;20914:1;20907:15;20941:4;20938:1;20931:15;20957:127;21018:10;21013:3;21009:20;21006:1;20999:31;21049:4;21046:1;21039:15;21073:4;21070:1;21063:15;21089:131;-1:-1:-1;;;;;;21163:32:1;;21153:43;;21143:71;;21210:1;21207;21200:12

Swarm Source

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