ETH Price: $2,538.17 (-18.37%)
 

Overview

Max Total Supply

652 POOZ

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thatlife.eth
Balance
2 POOZ
0x2e8d1ead7ba51e04c2a8ec40a8a3ed49cc4e1cef
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:
Poodlez

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.8.2 https://hardhat.org

// 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/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/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/interfaces/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/interfaces/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/interfaces/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/interfaces/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/interfaces/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/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File 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/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/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()))
        : "";
  }

  /**
   * @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/Poodlez.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
contract Poodlez is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;
  uint256 public constant mintPrice = 0.02 ether;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("POODLEZ", "POOZ", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
  }

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

  function mint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    uint supply = totalSupply();
    require(supply + quantity <= collectionSize, "reached max supply");

    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );

    if(supply > 555) {
      require(msg.value >= quantity * mintPrice, "insufficient funds provided for mint");
    }

    _safeMint(msg.sender, quantity);
  }

  // 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 {
    uint256 sendAmount = address(this).balance;

    address a = payable(0x167aa8c25F242E7c3D263fBb21A3a36f4A9B1913);
    address b = payable(0x4Bd3BB6B1D03c8844476e525fF291627FbC3c0eA);
    address c = payable(0x66c17Dcef1B364014573Ae0F869ad1c05fe01c89);

    bool success;
    (success, ) = a.call{value: ((sendAmount * 45)/100)}("");
    require(success, "Transaction Unsuccessful");

    (success, ) = b.call{value: ((sendAmount * 45)/100)}("");
    require(success, "Transaction Unsuccessful");

    (success, ) = c.call{value: ((sendAmount * 10)/100)}("");
    require(success, "Transaction Unsuccessful");

  }

  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"}],"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":"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":"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":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60e0604052600060015560006008553480156200001b57600080fd5b5060405162002a1b38038062002a1b8339810160408190526200003e91620002a6565b604051806040016040528060078152602001662827a7a22622ad60c91b815250604051806040016040528060048152602001632827a7ad60e11b81525083836200009762000091620001ac60201b60201c565b620001b0565b60008111620001045760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001665760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fb565b83516200017b90600290602087019062000200565b5082516200019190600390602086019062000200565b5060a091909152608052505060016009555060c05262000308565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200020e90620002cb565b90600052602060002090601f0160209004810192826200023257600085556200027d565b82601f106200024d57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027d57825182559160200191906001019062000260565b506200028b9291506200028f565b5090565b5b808211156200028b576000815560010162000290565b60008060408385031215620002ba57600080fd5b505080516020909101519092909150565b600181811c90821680620002e057607f821691505b602082108114156200030257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516126c06200035b600039600081816103ce0152610ce10152600081816118f6015281816119200152611dfe015260008181610c73015281816116fb015261172d01526126c06000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063ac4460021161008a578063d7224ba011610064578063d7224ba0146104f9578063dc33e6811461050f578063e985e9c51461052f578063f2fde38b1461057857600080fd5b8063ac446002146104a4578063b88d4fde146104b9578063c87b56dd146104d957600080fd5b80639231ab2a116100c65780639231ab2a1461040e57806395d89b411461045c578063a0712d6814610471578063a22cb4651461048457600080fd5b8063715018a6146103a75780638bc35c2f146103bc5780638da5cb5b146103f057600080fd5b80632f745c591161015957806355f804b31161013357806355f804b31461032c5780636352211e1461034c5780636817c76c1461036c57806370a082311461038757600080fd5b80632f745c59146102cc57806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632d20fb60146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046120c2565b610598565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610605565b6040516101e89190612137565b34801561021f57600080fd5b5061023361022e36600461214a565b610697565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461217f565b610727565b005b34801561027957600080fd5b506001545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a73660046121a9565b61083f565b3480156102b857600080fd5b5061026b6102c736600461214a565b61084a565b3480156102d857600080fd5b5061027e6102e736600461217f565b6108dd565b3480156102f857600080fd5b5061026b6103073660046121a9565b610a56565b34801561031857600080fd5b5061027e61032736600461214a565b610a71565b34801561033857600080fd5b5061026b6103473660046121e5565b610ada565b34801561035857600080fd5b5061023361036736600461214a565b610b10565b34801561037857600080fd5b5061027e66470de4df82000081565b34801561039357600080fd5b5061027e6103a2366004612257565b610b22565b3480156103b357600080fd5b5061026b610bb3565b3480156103c857600080fd5b5061027e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103fc57600080fd5b506000546001600160a01b0316610233565b34801561041a57600080fd5b5061042e61042936600461214a565b610be9565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101e8565b34801561046857600080fd5b50610206610c06565b61026b61047f36600461214a565b610c15565b34801561049057600080fd5b5061026b61049f366004612272565b610ddf565b3480156104b057600080fd5b5061026b610ea4565b3480156104c557600080fd5b5061026b6104d43660046122c4565b6110fa565b3480156104e557600080fd5b506102066104f436600461214a565b611133565b34801561050557600080fd5b5061027e60085481565b34801561051b57600080fd5b5061027e61052a366004612257565b611200565b34801561053b57600080fd5b506101dc61054a3660046123a0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058457600080fd5b5061026b610593366004612257565b61120b565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610614906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906123d3565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826001541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073282610b10565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bd57506107bd813361054a565b61082f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083a8383836112a6565b505050565b61083a838383611302565b6000546001600160a01b031633146108745760405162461bcd60e51b81526004016107029061240e565b600260095414156108c75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b60026009556108d58161168a565b506001600955565b60006108e883610b22565b82106109415760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600061094c60015490565b905060008060005b838110156109f6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109a757805192505b876001600160a01b0316836001600160a01b031614156109e357868414156109d5575093506105ff92505050565b836109df81612459565b9450505b50806109ee81612459565b915050610954565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b61083a838383604051806020016040528060008152506110fa565b6000610a7c60015490565b8210610ad65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000546001600160a01b03163314610b045760405162461bcd60e51b81526004016107029061240e565b61083a600a838361201c565b6000610b1b82611874565b5192915050565b60006001600160a01b038216610b8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610bdd5760405162461bcd60e51b81526004016107029061240e565b610be76000611a1e565b565b60408051808201909152600080825260208201526105ff82611874565b606060038054610614906123d3565b323314610c645760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610702565b6000610c6f60015490565b90507f0000000000000000000000000000000000000000000000000000000000000000610c9c8383612474565b1115610cdf5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610702565b7f000000000000000000000000000000000000000000000000000000000000000082610d0a33611200565b610d149190612474565b1115610d5b5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610702565b61022b811115610dd157610d7666470de4df8200008361248c565b341015610dd15760405162461bcd60e51b8152602060048201526024808201527f696e73756666696369656e742066756e64732070726f766964656420666f72206044820152631b5a5b9d60e21b6064820152608401610702565b610ddb3383611a6e565b5050565b6001600160a01b038216331415610e385760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107029061240e565b60026009541415610f215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b60026009554773167aa8c25f242e7c3d263fbb21a3a36f4a9b1913734bd3bb6b1d03c8844476e525ff291627fbc3c0ea7366c17dcef1b364014573ae0f869ad1c05fe01c896000836064610f7687602d61248c565b610f8091906124c1565b604051600081818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50508091505080610fe45760405162461bcd60e51b8152600401610702906124d5565b6001600160a01b0383166064610ffb87602d61248c565b61100591906124c1565b604051600081818185875af1925050503d8060008114611041576040519150601f19603f3d011682016040523d82523d6000602084013e611046565b606091505b505080915050806110695760405162461bcd60e51b8152600401610702906124d5565b6001600160a01b038216606461108087600a61248c565b61108a91906124c1565b604051600081818185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b505080915050806110ee5760405162461bcd60e51b8152600401610702906124d5565b50506001600955505050565b611105848484611302565b61111184848484611a88565b61112d5760405162461bcd60e51b81526004016107029061250c565b50505050565b6060611140826001541190565b6111a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b60006111ae611b96565b905060008151116111ce57604051806020016040528060008152506111f9565b806111d884611ba5565b6040516020016111e992919061255f565b6040516020818303038152906040525b9392505050565b60006105ff82611ca3565b6000546001600160a01b031633146112355760405162461bcd60e51b81526004016107029061240e565b6001600160a01b03811661129a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b6112a381611a1e565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061130d82611874565b80519091506000906001600160a01b0316336001600160a01b0316148061134457503361133984610697565b6001600160a01b0316145b8061135657508151611356903361054a565b9050806113c05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b0316146114345760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166114985760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b6114a860008484600001516112a6565b6001600160a01b03851660009081526005602052604081208054600192906114da9084906001600160801b031661258e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611526918591166125b6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115ae846001612474565b6000818152600460205260409020549091506001600160a01b0316611640576115d8816001541190565b156116405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816116da5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610702565b600060016116e88484612474565b6116f291906125d8565b905061171f60017f00000000000000000000000000000000000000000000000000000000000000006125d8565b8111156117545761175160017f00000000000000000000000000000000000000000000000000000000000000006125d8565b90505b61175f816001541190565b6117ba5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610702565b815b818111611860576000818152600460205260409020546001600160a01b031661184e5760006117ea82611874565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061185881612459565b9150506117bc565b5061186c816001612474565b600855505050565b6040805180820190915260008082526020820152611893826001541190565b6118f25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b60007f00000000000000000000000000000000000000000000000000000000000000008310611953576119457f0000000000000000000000000000000000000000000000000000000000000000846125d8565b611950906001612474565b90505b825b8181106119bd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119aa57949350505050565b50806119b5816125ef565b915050611955565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610702565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ddb828260405180602001604052806000815250611d41565b60006001600160a01b0384163b15611b8a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611acc903390899088908890600401612606565b602060405180830381600087803b158015611ae657600080fd5b505af1925050508015611b16575060408051601f3d908101601f19168201909252611b1391810190612643565b60015b611b70573d808015611b44576040519150601f19603f3d011682016040523d82523d6000602084013e611b49565b606091505b508051611b685760405162461bcd60e51b81526004016107029061250c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8e565b5060015b949350505050565b6060600a8054610614906123d3565b606081611bc95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf35780611bdd81612459565b9150611bec9050600a836124c1565b9150611bcd565b60008167ffffffffffffffff811115611c0e57611c0e6122ae565b6040519080825280601f01601f191660200182016040528015611c38576020820181803683370190505b5090505b8415611b8e57611c4d6001836125d8565b9150611c5a600a86612660565b611c65906030612474565b60f81b818381518110611c7a57611c7a612674565b60200101906001600160f81b031916908160001a905350611c9c600a866124c1565b9450611c3c565b60006001600160a01b038216611d155760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610702565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611da45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b611daf816001541190565b15611dfc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610702565b7f0000000000000000000000000000000000000000000000000000000000000000831115611e775760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610702565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ed39087906125b6565b6001600160801b03168152602001858360200151611ef191906125b6565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120115760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fd56000888488611a88565b611ff15760405162461bcd60e51b81526004016107029061250c565b81611ffb81612459565b925050808061200990612459565b915050611f88565b506001819055611682565b828054612028906123d3565b90600052602060002090601f01602090048101928261204a5760008555612090565b82601f106120635782800160ff19823516178555612090565b82800160010185558215612090579182015b82811115612090578235825591602001919060010190612075565b50610ad69291505b80821115610ad65760008155600101612098565b6001600160e01b0319811681146112a357600080fd5b6000602082840312156120d457600080fd5b81356111f9816120ac565b60005b838110156120fa5781810151838201526020016120e2565b8381111561112d5750506000910152565b600081518084526121238160208601602086016120df565b601f01601f19169290920160200192915050565b6020815260006111f9602083018461210b565b60006020828403121561215c57600080fd5b5035919050565b80356001600160a01b038116811461217a57600080fd5b919050565b6000806040838503121561219257600080fd5b61219b83612163565b946020939093013593505050565b6000806000606084860312156121be57600080fd5b6121c784612163565b92506121d560208501612163565b9150604084013590509250925092565b600080602083850312156121f857600080fd5b823567ffffffffffffffff8082111561221057600080fd5b818501915085601f83011261222457600080fd5b81358181111561223357600080fd5b86602082850101111561224557600080fd5b60209290920196919550909350505050565b60006020828403121561226957600080fd5b6111f982612163565b6000806040838503121561228557600080fd5b61228e83612163565b9150602083013580151581146122a357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156122da57600080fd5b6122e385612163565b93506122f160208601612163565b925060408501359150606085013567ffffffffffffffff8082111561231557600080fd5b818701915087601f83011261232957600080fd5b81358181111561233b5761233b6122ae565b604051601f8201601f19908116603f01168101908382118183101715612363576123636122ae565b816040528281528a602084870101111561237c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123b357600080fd5b6123bc83612163565b91506123ca60208401612163565b90509250929050565b600181811c908216806123e757607f821691505b6020821081141561240857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561246d5761246d612443565b5060010190565b6000821982111561248757612487612443565b500190565b60008160001904831182151516156124a6576124a6612443565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124d0576124d06124ab565b500490565b60208082526018908201527f5472616e73616374696f6e20556e7375636365737366756c0000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516125718184602088016120df565b8351908301906125858183602088016120df565b01949350505050565b60006001600160801b03838116908316818110156125ae576125ae612443565b039392505050565b60006001600160801b0380831681851680830382111561258557612585612443565b6000828210156125ea576125ea612443565b500390565b6000816125fe576125fe612443565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126399083018461210b565b9695505050505050565b60006020828403121561265557600080fd5b81516111f9816120ac565b60008261266f5761266f6124ab565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a01dc886f50881a7cc48199c567ce10421bfac54b9dfa3ee00955e9907784e2064736f6c63430008090033000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000015b3

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063ac4460021161008a578063d7224ba011610064578063d7224ba0146104f9578063dc33e6811461050f578063e985e9c51461052f578063f2fde38b1461057857600080fd5b8063ac446002146104a4578063b88d4fde146104b9578063c87b56dd146104d957600080fd5b80639231ab2a116100c65780639231ab2a1461040e57806395d89b411461045c578063a0712d6814610471578063a22cb4651461048457600080fd5b8063715018a6146103a75780638bc35c2f146103bc5780638da5cb5b146103f057600080fd5b80632f745c591161015957806355f804b31161013357806355f804b31461032c5780636352211e1461034c5780636817c76c1461036c57806370a082311461038757600080fd5b80632f745c59146102cc57806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632d20fb60146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046120c2565b610598565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610605565b6040516101e89190612137565b34801561021f57600080fd5b5061023361022e36600461214a565b610697565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b61026636600461217f565b610727565b005b34801561027957600080fd5b506001545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a73660046121a9565b61083f565b3480156102b857600080fd5b5061026b6102c736600461214a565b61084a565b3480156102d857600080fd5b5061027e6102e736600461217f565b6108dd565b3480156102f857600080fd5b5061026b6103073660046121a9565b610a56565b34801561031857600080fd5b5061027e61032736600461214a565b610a71565b34801561033857600080fd5b5061026b6103473660046121e5565b610ada565b34801561035857600080fd5b5061023361036736600461214a565b610b10565b34801561037857600080fd5b5061027e66470de4df82000081565b34801561039357600080fd5b5061027e6103a2366004612257565b610b22565b3480156103b357600080fd5b5061026b610bb3565b3480156103c857600080fd5b5061027e7f000000000000000000000000000000000000000000000000000000000000000a81565b3480156103fc57600080fd5b506000546001600160a01b0316610233565b34801561041a57600080fd5b5061042e61042936600461214a565b610be9565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101e8565b34801561046857600080fd5b50610206610c06565b61026b61047f36600461214a565b610c15565b34801561049057600080fd5b5061026b61049f366004612272565b610ddf565b3480156104b057600080fd5b5061026b610ea4565b3480156104c557600080fd5b5061026b6104d43660046122c4565b6110fa565b3480156104e557600080fd5b506102066104f436600461214a565b611133565b34801561050557600080fd5b5061027e60085481565b34801561051b57600080fd5b5061027e61052a366004612257565b611200565b34801561053b57600080fd5b506101dc61054a3660046123a0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058457600080fd5b5061026b610593366004612257565b61120b565b60006001600160e01b031982166380ac58cd60e01b14806105c957506001600160e01b03198216635b5e139f60e01b145b806105e457506001600160e01b0319821663780e9d6360e01b145b806105ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610614906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610640906123d3565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b60006106a4826001541190565b61070b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073282610b10565b9050806001600160a01b0316836001600160a01b031614156107a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610702565b336001600160a01b03821614806107bd57506107bd813361054a565b61082f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610702565b61083a8383836112a6565b505050565b61083a838383611302565b6000546001600160a01b031633146108745760405162461bcd60e51b81526004016107029061240e565b600260095414156108c75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b60026009556108d58161168a565b506001600955565b60006108e883610b22565b82106109415760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610702565b600061094c60015490565b905060008060005b838110156109f6576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109a757805192505b876001600160a01b0316836001600160a01b031614156109e357868414156109d5575093506105ff92505050565b836109df81612459565b9450505b50806109ee81612459565b915050610954565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610702565b61083a838383604051806020016040528060008152506110fa565b6000610a7c60015490565b8210610ad65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610702565b5090565b6000546001600160a01b03163314610b045760405162461bcd60e51b81526004016107029061240e565b61083a600a838361201c565b6000610b1b82611874565b5192915050565b60006001600160a01b038216610b8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610702565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610bdd5760405162461bcd60e51b81526004016107029061240e565b610be76000611a1e565b565b60408051808201909152600080825260208201526105ff82611874565b606060038054610614906123d3565b323314610c645760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610702565b6000610c6f60015490565b90507f00000000000000000000000000000000000000000000000000000000000015b3610c9c8383612474565b1115610cdf5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610702565b7f000000000000000000000000000000000000000000000000000000000000000a82610d0a33611200565b610d149190612474565b1115610d5b5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610702565b61022b811115610dd157610d7666470de4df8200008361248c565b341015610dd15760405162461bcd60e51b8152602060048201526024808201527f696e73756666696369656e742066756e64732070726f766964656420666f72206044820152631b5a5b9d60e21b6064820152608401610702565b610ddb3383611a6e565b5050565b6001600160a01b038216331415610e385760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610702565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ece5760405162461bcd60e51b81526004016107029061240e565b60026009541415610f215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610702565b60026009554773167aa8c25f242e7c3d263fbb21a3a36f4a9b1913734bd3bb6b1d03c8844476e525ff291627fbc3c0ea7366c17dcef1b364014573ae0f869ad1c05fe01c896000836064610f7687602d61248c565b610f8091906124c1565b604051600081818185875af1925050503d8060008114610fbc576040519150601f19603f3d011682016040523d82523d6000602084013e610fc1565b606091505b50508091505080610fe45760405162461bcd60e51b8152600401610702906124d5565b6001600160a01b0383166064610ffb87602d61248c565b61100591906124c1565b604051600081818185875af1925050503d8060008114611041576040519150601f19603f3d011682016040523d82523d6000602084013e611046565b606091505b505080915050806110695760405162461bcd60e51b8152600401610702906124d5565b6001600160a01b038216606461108087600a61248c565b61108a91906124c1565b604051600081818185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b505080915050806110ee5760405162461bcd60e51b8152600401610702906124d5565b50506001600955505050565b611105848484611302565b61111184848484611a88565b61112d5760405162461bcd60e51b81526004016107029061250c565b50505050565b6060611140826001541190565b6111a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610702565b60006111ae611b96565b905060008151116111ce57604051806020016040528060008152506111f9565b806111d884611ba5565b6040516020016111e992919061255f565b6040516020818303038152906040525b9392505050565b60006105ff82611ca3565b6000546001600160a01b031633146112355760405162461bcd60e51b81526004016107029061240e565b6001600160a01b03811661129a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610702565b6112a381611a1e565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061130d82611874565b80519091506000906001600160a01b0316336001600160a01b0316148061134457503361133984610697565b6001600160a01b0316145b8061135657508151611356903361054a565b9050806113c05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610702565b846001600160a01b031682600001516001600160a01b0316146114345760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610702565b6001600160a01b0384166114985760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610702565b6114a860008484600001516112a6565b6001600160a01b03851660009081526005602052604081208054600192906114da9084906001600160801b031661258e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611526918591166125b6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115ae846001612474565b6000818152600460205260409020549091506001600160a01b0316611640576115d8816001541190565b156116405760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816116da5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610702565b600060016116e88484612474565b6116f291906125d8565b905061171f60017f00000000000000000000000000000000000000000000000000000000000015b36125d8565b8111156117545761175160017f00000000000000000000000000000000000000000000000000000000000015b36125d8565b90505b61175f816001541190565b6117ba5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610702565b815b818111611860576000818152600460205260409020546001600160a01b031661184e5760006117ea82611874565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061185881612459565b9150506117bc565b5061186c816001612474565b600855505050565b6040805180820190915260008082526020820152611893826001541190565b6118f25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610702565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611953576119457f000000000000000000000000000000000000000000000000000000000000000a846125d8565b611950906001612474565b90505b825b8181106119bd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119aa57949350505050565b50806119b5816125ef565b915050611955565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610702565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ddb828260405180602001604052806000815250611d41565b60006001600160a01b0384163b15611b8a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611acc903390899088908890600401612606565b602060405180830381600087803b158015611ae657600080fd5b505af1925050508015611b16575060408051601f3d908101601f19168201909252611b1391810190612643565b60015b611b70573d808015611b44576040519150601f19603f3d011682016040523d82523d6000602084013e611b49565b606091505b508051611b685760405162461bcd60e51b81526004016107029061250c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b8e565b5060015b949350505050565b6060600a8054610614906123d3565b606081611bc95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf35780611bdd81612459565b9150611bec9050600a836124c1565b9150611bcd565b60008167ffffffffffffffff811115611c0e57611c0e6122ae565b6040519080825280601f01601f191660200182016040528015611c38576020820181803683370190505b5090505b8415611b8e57611c4d6001836125d8565b9150611c5a600a86612660565b611c65906030612474565b60f81b818381518110611c7a57611c7a612674565b60200101906001600160f81b031916908160001a905350611c9c600a866124c1565b9450611c3c565b60006001600160a01b038216611d155760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610702565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611da45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610702565b611daf816001541190565b15611dfc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610702565b7f000000000000000000000000000000000000000000000000000000000000000a831115611e775760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610702565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ed39087906125b6565b6001600160801b03168152602001858360200151611ef191906125b6565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120115760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fd56000888488611a88565b611ff15760405162461bcd60e51b81526004016107029061250c565b81611ffb81612459565b925050808061200990612459565b915050611f88565b506001819055611682565b828054612028906123d3565b90600052602060002090601f01602090048101928261204a5760008555612090565b82601f106120635782800160ff19823516178555612090565b82800160010185558215612090579182015b82811115612090578235825591602001919060010190612075565b50610ad69291505b80821115610ad65760008155600101612098565b6001600160e01b0319811681146112a357600080fd5b6000602082840312156120d457600080fd5b81356111f9816120ac565b60005b838110156120fa5781810151838201526020016120e2565b8381111561112d5750506000910152565b600081518084526121238160208601602086016120df565b601f01601f19169290920160200192915050565b6020815260006111f9602083018461210b565b60006020828403121561215c57600080fd5b5035919050565b80356001600160a01b038116811461217a57600080fd5b919050565b6000806040838503121561219257600080fd5b61219b83612163565b946020939093013593505050565b6000806000606084860312156121be57600080fd5b6121c784612163565b92506121d560208501612163565b9150604084013590509250925092565b600080602083850312156121f857600080fd5b823567ffffffffffffffff8082111561221057600080fd5b818501915085601f83011261222457600080fd5b81358181111561223357600080fd5b86602082850101111561224557600080fd5b60209290920196919550909350505050565b60006020828403121561226957600080fd5b6111f982612163565b6000806040838503121561228557600080fd5b61228e83612163565b9150602083013580151581146122a357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156122da57600080fd5b6122e385612163565b93506122f160208601612163565b925060408501359150606085013567ffffffffffffffff8082111561231557600080fd5b818701915087601f83011261232957600080fd5b81358181111561233b5761233b6122ae565b604051601f8201601f19908116603f01168101908382118183101715612363576123636122ae565b816040528281528a602084870101111561237c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123b357600080fd5b6123bc83612163565b91506123ca60208401612163565b90509250929050565b600181811c908216806123e757607f821691505b6020821081141561240857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561246d5761246d612443565b5060010190565b6000821982111561248757612487612443565b500190565b60008160001904831182151516156124a6576124a6612443565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124d0576124d06124ab565b500490565b60208082526018908201527f5472616e73616374696f6e20556e7375636365737366756c0000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516125718184602088016120df565b8351908301906125858183602088016120df565b01949350505050565b60006001600160801b03838116908316818110156125ae576125ae612443565b039392505050565b60006001600160801b0380831681851680830382111561258557612585612443565b6000828210156125ea576125ea612443565b500390565b6000816125fe576125fe612443565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126399083018461210b565b9695505050505050565b60006020828403121561265557600080fd5b81516111f9816120ac565b60008261266f5761266f6124ab565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a01dc886f50881a7cc48199c567ce10421bfac54b9dfa3ee00955e9907784e2064736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000015b3

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3


Deployed Bytecode Sourcemap

41169:2324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28770:370;;;;;;;;;;-1:-1:-1;28770:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28770:370:0;;;;;;;;30496:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32021:204::-;;;;;;;;;;-1:-1:-1;32021:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32021:204:0;1528:203:1;31584:379:0;;;;;;;;;;-1:-1:-1;31584:379:0;;;;;:::i;:::-;;:::i;:::-;;27331:94;;;;;;;;;;-1:-1:-1;27407:12:0;;27331:94;;;2319:25:1;;;2307:2;2292:18;27331:94:0;2173:177:1;32871:142:0;;;;;;;;;;-1:-1:-1;32871:142:0;;;;;:::i;:::-;;:::i;43106:118::-;;;;;;;;;;-1:-1:-1;43106:118:0;;;;;:::i;:::-;;:::i;27962:744::-;;;;;;;;;;-1:-1:-1;27962:744:0;;;;;:::i;:::-;;:::i;33076:157::-;;;;;;;;;;-1:-1:-1;33076:157:0;;;;;:::i;:::-;;:::i;27494:177::-;;;;;;;;;;-1:-1:-1;27494:177:0;;;;;:::i;:::-;;:::i;42301:100::-;;;;;;;;;;-1:-1:-1;42301:100:0;;;;;:::i;:::-;;:::i;30319:118::-;;;;;;;;;;-1:-1:-1;30319:118:0;;;;;:::i;:::-;;:::i;41281:46::-;;;;;;;;;;;;41317:10;41281:46;;29196:211;;;;;;;;;;-1:-1:-1;29196:211:0;;;;;:::i;:::-;;:::i;2499:94::-;;;;;;;;;;;;;:::i;41228:48::-;;;;;;;;;;;;;;;1848:87;;;;;;;;;;-1:-1:-1;1894:7:0;1921:6;-1:-1:-1;;;;;1921:6:0;1848:87;;43343:147;;;;;;;;;;-1:-1:-1;43343:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3706:13:1;;-1:-1:-1;;;;;3702:39:1;3684:58;;3802:4;3790:17;;;3784:24;3810:18;3780:49;3758:20;;;3751:79;;;;3657:18;43343:147:0;3476:360:1;30651:98:0;;;;;;;;;;;;;:::i;41643:484::-;;;;;;:::i;:::-;;:::i;32289:274::-;;;;;;;;;;-1:-1:-1;32289:274:0;;;;;:::i;:::-;;:::i;42407:693::-;;;;;;;;;;;;;:::i;33296:311::-;;;;;;;;;;-1:-1:-1;33296:311:0;;;;;:::i;:::-;;:::i;30812:394::-;;;;;;;;;;-1:-1:-1;30812:394:0;;;;;:::i;:::-;;:::i;37711:43::-;;;;;;;;;;;;;;;;43230:107;;;;;;;;;;-1:-1:-1;43230:107:0;;;;;:::i;:::-;;:::i;32626:186::-;;;;;;;;;;-1:-1:-1;32626:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;32771:25:0;;;32748:4;32771:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32626:186;2748:192;;;;;;;;;;-1:-1:-1;2748:192:0;;;;;:::i;:::-;;:::i;28770:370::-;28897:4;-1:-1:-1;;;;;;28927:40:0;;-1:-1:-1;;;28927:40:0;;:99;;-1:-1:-1;;;;;;;28978:48:0;;-1:-1:-1;;;28978:48:0;28927:99;:160;;;-1:-1:-1;;;;;;;29037:50:0;;-1:-1:-1;;;29037:50:0;28927:160;:207;;;-1:-1:-1;;;;;;;;;;24981:40:0;;;29098:36;28913:221;28770:370;-1:-1:-1;;28770:370:0:o;30496:94::-;30550:13;30579:5;30572:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30496:94;:::o;32021:204::-;32089:7;32113:16;32121:7;33933:12;;-1:-1:-1;33923:22:0;33846:105;32113:16;32105:74;;;;-1:-1:-1;;;32105:74:0;;6320:2:1;32105:74:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:43;6502:19;;32105:74:0;;;;;;;;;-1:-1:-1;32195:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32195:24:0;;32021:204::o;31584:379::-;31653:13;31669:24;31685:7;31669:15;:24::i;:::-;31653:40;;31714:5;-1:-1:-1;;;;;31708:11:0;:2;-1:-1:-1;;;;;31708:11:0;;;31700:58;;;;-1:-1:-1;;;31700:58:0;;6734:2:1;31700:58:0;;;6716:21:1;6773:2;6753:18;;;6746:30;6812:34;6792:18;;;6785:62;-1:-1:-1;;;6863:18:1;;;6856:32;6905:19;;31700:58:0;6532:398:1;31700:58:0;744:10;-1:-1:-1;;;;;31783:21:0;;;;:62;;-1:-1:-1;31808:37:0;31825:5;744:10;32626:186;:::i;31808:37::-;31767:153;;;;-1:-1:-1;;;31767:153:0;;7137:2:1;31767:153:0;;;7119:21:1;7176:2;7156:18;;;7149:30;7215:34;7195:18;;;7188:62;7286:27;7266:18;;;7259:55;7331:19;;31767:153:0;6935:421:1;31767:153:0;31929:28;31938:2;31942:7;31951:5;31929:8;:28::i;:::-;31646:317;31584:379;;:::o;32871:142::-;32979:28;32989:4;32995:2;32999:7;32979:9;:28::i;43106:118::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;744:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;4849:1:::1;5445:7;;:19;;5437:63;;;::::0;-1:-1:-1;;;5437:63:0;;7924:2:1;5437:63:0::1;::::0;::::1;7906:21:1::0;7963:2;7943:18;;;7936:30;8002:33;7982:18;;;7975:61;8053:18;;5437:63:0::1;7722:355:1::0;5437:63:0::1;4849:1;5578:7;:18:::0;43190:28:::2;43209:8:::0;43190:18:::2;:28::i;:::-;-1:-1:-1::0;4805:1:0::1;5757:7;:22:::0;43106:118::o;27962:744::-;28071:7;28106:16;28116:5;28106:9;:16::i;:::-;28098:5;:24;28090:71;;;;-1:-1:-1;;;28090:71:0;;8284:2:1;28090:71:0;;;8266:21:1;8323:2;8303:18;;;8296:30;8362:34;8342:18;;;8335:62;-1:-1:-1;;;8413:18:1;;;8406:32;8455:19;;28090:71:0;8082:398:1;28090:71:0;28168:22;28193:13;27407:12;;;27331:94;28193:13;28168:38;;28213:19;28243:25;28293:9;28288:350;28312:14;28308:1;:18;28288:350;;;28342:31;28376:14;;;:11;:14;;;;;;;;;28342:48;;;;;;;;;-1:-1:-1;;;;;28342:48:0;;;;;-1:-1:-1;;;28342:48:0;;;;;;;;;;;;28403:28;28399:89;;28464:14;;;-1:-1:-1;28399:89:0;28521:5;-1:-1:-1;;;;;28500:26:0;:17;-1:-1:-1;;;;;28500:26:0;;28496:135;;;28558:5;28543:11;:20;28539:59;;;-1:-1:-1;28585:1:0;-1:-1:-1;28578:8:0;;-1:-1:-1;;;28578:8:0;28539:59;28608:13;;;;:::i;:::-;;;;28496:135;-1:-1:-1;28328:3:0;;;;:::i;:::-;;;;28288:350;;;-1:-1:-1;28644:56:0;;-1:-1:-1;;;28644:56:0;;8959:2:1;28644:56:0;;;8941:21:1;8998:2;8978:18;;;8971:30;9037:34;9017:18;;;9010:62;-1:-1:-1;;;9088:18:1;;;9081:44;9142:19;;28644:56:0;8757:410:1;33076:157:0;33188:39;33205:4;33211:2;33215:7;33188:39;;;;;;;;;;;;:16;:39::i;27494:177::-;27561:7;27593:13;27407:12;;;27331:94;27593:13;27585:5;:21;27577:69;;;;-1:-1:-1;;;27577:69:0;;9374:2:1;27577:69:0;;;9356:21:1;9413:2;9393:18;;;9386:30;9452:34;9432:18;;;9425:62;-1:-1:-1;;;9503:18:1;;;9496:33;9546:19;;27577:69:0;9172:399:1;27577:69:0;-1:-1:-1;27660:5:0;27494:177::o;42301:100::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;744:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;42372:23:::1;:13;42388:7:::0;;42372:23:::1;:::i;30319:118::-:0;30383:7;30406:20;30418:7;30406:11;:20::i;:::-;:25;;30319:118;-1:-1:-1;;30319:118:0:o;29196:211::-;29260:7;-1:-1:-1;;;;;29284:19:0;;29276:75;;;;-1:-1:-1;;;29276:75:0;;9778:2:1;29276:75:0;;;9760:21:1;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;-1:-1:-1;;;9907:18:1;;;9900:41;9958:19;;29276:75:0;9576:407:1;29276:75:0;-1:-1:-1;;;;;;29373:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29373:27:0;;29196:211::o;2499:94::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;744:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;2564:21:::1;2582:1;2564:9;:21::i;:::-;2499:94::o:0;43343:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43464:20:0;43476:7;43464:11;:20::i;30651:98::-;30707:13;30736:7;30729:14;;;;;:::i;41643:484::-;41565:9;41578:10;41565:23;41557:66;;;;-1:-1:-1;;;41557:66:0;;10190:2:1;41557:66:0;;;10172:21:1;10229:2;10209:18;;;10202:30;10268:32;10248:18;;;10241:60;10318:18;;41557:66:0;9988:354:1;41557:66:0;41730:11:::1;41744:13;27407:12:::0;;;27331:94;41744:13:::1;41730:27:::0;-1:-1:-1;41793:14:0::1;41772:17;41781:8:::0;41730:27;41772:17:::1;:::i;:::-;:35;;41764:66;;;::::0;-1:-1:-1;;;41764:66:0;;10682:2:1;41764:66:0::1;::::0;::::1;10664:21:1::0;10721:2;10701:18;;;10694:30;-1:-1:-1;;;10740:18:1;;;10733:48;10798:18;;41764:66:0::1;10480:342:1::0;41764:66:0::1;41894:23;41882:8;41855:24;41868:10;41855:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;41839:118;;;::::0;-1:-1:-1;;;41839:118:0;;11029:2:1;41839:118:0::1;::::0;::::1;11011:21:1::0;11068:2;11048:18;;;11041:30;-1:-1:-1;;;11087:18:1;;;11080:52;11149:18;;41839:118:0::1;10827:346:1::0;41839:118:0::1;41978:3;41969:6;:12;41966:116;;;42013:20;41317:10;42013:8:::0;:20:::1;:::i;:::-;42000:9;:33;;41992:82;;;::::0;-1:-1:-1;;;41992:82:0;;11553:2:1;41992:82:0::1;::::0;::::1;11535:21:1::0;11592:2;11572:18;;;11565:30;11631:34;11611:18;;;11604:62;-1:-1:-1;;;11682:18:1;;;11675:34;11726:19;;41992:82:0::1;11351:400:1::0;41992:82:0::1;42090:31;42100:10;42112:8;42090:9;:31::i;:::-;41723:404;41643:484:::0;:::o;32289:274::-;-1:-1:-1;;;;;32380:24:0;;744:10;32380:24;;32372:63;;;;-1:-1:-1;;;32372:63:0;;11958:2:1;32372:63:0;;;11940:21:1;11997:2;11977:18;;;11970:30;12036:28;12016:18;;;12009:56;12082:18;;32372:63:0;11756:350:1;32372:63:0;744:10;32444:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32444:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32444:53:0;;;;;;;;;;32509:48;;540:41:1;;;32444:42:0;;744:10;32509:48;;513:18:1;32509:48:0;;;;;;;32289:274;;:::o;42407:693::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;744:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;4849:1:::1;5445:7;;:19;;5437:63;;;::::0;-1:-1:-1;;;5437:63:0;;7924:2:1;5437:63:0::1;::::0;::::1;7906:21:1::0;7963:2;7943:18;;;7936:30;8002:33;7982:18;;;7975:61;8053:18;;5437:63:0::1;7722:355:1::0;5437:63:0::1;4849:1;5578:7;:18:::0;42492:21:::2;42542:42;42612;42682;42471:18;42542:42:::0;42800:3:::2;42783:15;42492:21:::0;42796:2:::2;42783:15;:::i;:::-;42782:21;;;;:::i;:::-;42767:42;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42753:56;;;;;42824:7;42816:44;;;;-1:-1:-1::0;;;42816:44:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42883:6:0;::::2;42916:3;42899:15;:10:::0;42912:2:::2;42899:15;:::i;:::-;42898:21;;;;:::i;:::-;42883:42;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42869:56;;;;;42940:7;42932:44;;;;-1:-1:-1::0;;;42932:44:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42999:6:0;::::2;43032:3;43015:15;:10:::0;43028:2:::2;43015:15;:::i;:::-;43014:21;;;;:::i;:::-;42999:42;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42985:56;;;;;43056:7;43048:44;;;;-1:-1:-1::0;;;43048:44:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;4805:1:0::1;5757:7;:22:::0;-1:-1:-1;;;42407:693:0:o;33296:311::-;33433:28;33443:4;33449:2;33453:7;33433:9;:28::i;:::-;33484:48;33507:4;33513:2;33517:7;33526:5;33484:22;:48::i;:::-;33468:133;;;;-1:-1:-1;;;33468:133:0;;;;;;;:::i;:::-;33296:311;;;;:::o;30812:394::-;30910:13;30951:16;30959:7;33933:12;;-1:-1:-1;33923:22:0;33846:105;30951:16;30935:97;;;;-1:-1:-1;;;30935:97:0;;13553:2:1;30935:97:0;;;13535:21:1;13592:2;13572:18;;;13565:30;13631:34;13611:18;;;13604:62;-1:-1:-1;;;13682:18:1;;;13675:45;13737:19;;30935:97:0;13351:411:1;30935:97:0;31041:21;31065:10;:8;:10::i;:::-;31041:34;;31120:1;31102:7;31096:21;:25;:104;;;;;;;;;;;;;;;;;31157:7;31166:18;:7;:16;:18::i;:::-;31140:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31096:104;31082:118;30812:394;-1:-1:-1;;;30812:394:0:o;43230:107::-;43288:7;43311:20;43325:5;43311:13;:20::i;2748:192::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;744:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2837:22:0;::::1;2829:73;;;::::0;-1:-1:-1;;;2829:73:0;;14444:2:1;2829:73:0::1;::::0;::::1;14426:21:1::0;14483:2;14463:18;;;14456:30;14522:34;14502:18;;;14495:62;-1:-1:-1;;;14573:18:1;;;14566:36;14619:19;;2829:73:0::1;14242:402:1::0;2829:73:0::1;2913:19;2923:8;2913:9;:19::i;:::-;2748:192:::0;:::o;37533:172::-;37630:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37630:29:0;-1:-1:-1;;;;;37630:29:0;;;;;;;;;37671:28;;37630:24;;37671:28;;;;;;;37533:172;;;:::o;35898:1529::-;35995:35;36033:20;36045:7;36033:11;:20::i;:::-;36104:18;;35995:58;;-1:-1:-1;36062:22:0;;-1:-1:-1;;;;;36088:34:0;744:10;-1:-1:-1;;;;;36088:34:0;;:81;;;-1:-1:-1;744:10:0;36133:20;36145:7;36133:11;:20::i;:::-;-1:-1:-1;;;;;36133:36:0;;36088:81;:142;;;-1:-1:-1;36197:18:0;;36180:50;;744:10;32626:186;:::i;36180:50::-;36062:169;;36256:17;36240:101;;;;-1:-1:-1;;;36240:101:0;;14851:2:1;36240:101:0;;;14833:21:1;14890:2;14870:18;;;14863:30;14929:34;14909:18;;;14902:62;-1:-1:-1;;;14980:18:1;;;14973:48;15038:19;;36240:101:0;14649:414:1;36240:101:0;36388:4;-1:-1:-1;;;;;36366:26:0;:13;:18;;;-1:-1:-1;;;;;36366:26:0;;36350:98;;;;-1:-1:-1;;;36350:98:0;;15270:2:1;36350:98:0;;;15252:21:1;15309:2;15289:18;;;15282:30;15348:34;15328:18;;;15321:62;-1:-1:-1;;;15399:18:1;;;15392:36;15445:19;;36350:98:0;15068:402:1;36350:98:0;-1:-1:-1;;;;;36463:16:0;;36455:66;;;;-1:-1:-1;;;36455:66:0;;15677:2:1;36455:66:0;;;15659:21:1;15716:2;15696:18;;;15689:30;15755:34;15735:18;;;15728:62;-1:-1:-1;;;15806:18:1;;;15799:35;15851:19;;36455:66:0;15475:401:1;36455:66:0;36630:49;36647:1;36651:7;36660:13;:18;;;36630:8;:49::i;:::-;-1:-1:-1;;;;;36688:18:0;;;;;;:12;:18;;;;;:31;;36718:1;;36688:18;:31;;36718:1;;-1:-1:-1;;;;;36688:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36688:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36726:16:0;;-1:-1:-1;36726:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36726:16:0;;:29;;-1:-1:-1;;36726:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36726:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36785:43:0;;;;;;;;-1:-1:-1;;;;;36785:43:0;;;;;;36811:15;36785:43;;;;;;;;;-1:-1:-1;36762:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36762:66:0;-1:-1:-1;;;;;;36762:66:0;;;;;;;;;;;37078:11;36774:7;-1:-1:-1;37078:11:0;:::i;:::-;37141:1;37100:24;;;:11;:24;;;;;:29;37056:33;;-1:-1:-1;;;;;;37100:29:0;37096:236;;37158:20;37166:11;33933:12;;-1:-1:-1;33923:22:0;33846:105;37158:20;37154:171;;;37218:97;;;;;;;;37245:18;;-1:-1:-1;;;;;37218:97:0;;;;;;37276:28;;;;37218:97;;;;;;;;;;-1:-1:-1;37191:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;37191:124:0;-1:-1:-1;;;;;;37191:124:0;;;;;;;;;;;;37154:171;37364:7;37360:2;-1:-1:-1;;;;;37345:27:0;37354:4;-1:-1:-1;;;;;37345:27:0;;;;;;;;;;;37379:42;35988:1439;;;35898:1529;;;:::o;37859:846::-;37949:24;;37988:12;37980:49;;;;-1:-1:-1;;;37980:49:0;;16592:2:1;37980:49:0;;;16574:21:1;16631:2;16611:18;;;16604:30;16670:26;16650:18;;;16643:54;16714:18;;37980:49:0;16390:348:1;37980:49:0;38036:16;38086:1;38055:28;38075:8;38055:17;:28;:::i;:::-;:32;;;;:::i;:::-;38036:51;-1:-1:-1;38109:18:0;38126:1;38109:14;:18;:::i;:::-;38098:8;:29;38094:81;;;38149:18;38166:1;38149:14;:18;:::i;:::-;38138:29;;38094:81;38290:17;38298:8;33933:12;;-1:-1:-1;33923:22:0;33846:105;38290:17;38282:68;;;;-1:-1:-1;;;38282:68:0;;17075:2:1;38282:68:0;;;17057:21:1;17114:2;17094:18;;;17087:30;17153:34;17133:18;;;17126:62;-1:-1:-1;;;17204:18:1;;;17197:36;17250:19;;38282:68:0;16873:402:1;38282:68:0;38374:17;38357:297;38398:8;38393:1;:13;38357:297;;38457:1;38426:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;38426:19:0;38422:225;;38472:31;38506:14;38518:1;38506:11;:14::i;:::-;38548:89;;;;;;;;38575:14;;-1:-1:-1;;;;;38548:89:0;;;;;;38602:24;;;;38548:89;;;;;;;;;;-1:-1:-1;38531:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;38531:106:0;-1:-1:-1;;;;;;38531:106:0;;;;;;;;;;;;-1:-1:-1;38422:225:0;38408:3;;;;:::i;:::-;;;;38357:297;;;-1:-1:-1;38687:12:0;:8;38698:1;38687:12;:::i;:::-;38660:24;:39;-1:-1:-1;;;37859:846:0:o;29659:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;29776:16:0;29784:7;33933:12;;-1:-1:-1;33923:22:0;33846:105;29776:16;29768:71;;;;-1:-1:-1;;;29768:71:0;;17482:2:1;29768:71:0;;;17464:21:1;17521:2;17501:18;;;17494:30;17560:34;17540:18;;;17533:62;-1:-1:-1;;;17611:18:1;;;17604:40;17661:19;;29768:71:0;17280:406:1;29768:71:0;29848:26;29896:12;29885:7;:23;29881:93;;29940:22;29950:12;29940:7;:22;:::i;:::-;:26;;29965:1;29940:26;:::i;:::-;29919:47;;29881:93;30002:7;29982:212;30019:18;30011:4;:26;29982:212;;30056:31;30090:17;;;:11;:17;;;;;;;;;30056:51;;;;;;;;;-1:-1:-1;;;;;30056:51:0;;;;;-1:-1:-1;;;30056:51:0;;;;;;;;;;;;30120:28;30116:71;;30168:9;29659:606;-1:-1:-1;;;;29659:606:0:o;30116:71::-;-1:-1:-1;30039:6:0;;;;:::i;:::-;;;;29982:212;;;-1:-1:-1;30202:57:0;;-1:-1:-1;;;30202:57:0;;18034:2:1;30202:57:0;;;18016:21:1;18073:2;18053:18;;;18046:30;18112:34;18092:18;;;18085:62;-1:-1:-1;;;18163:18:1;;;18156:45;18218:19;;30202:57:0;17832:411:1;2948:173:0;3004:16;3023:6;;-1:-1:-1;;;;;3040:17:0;;;-1:-1:-1;;;;;;3040:17:0;;;;;;3073:40;;3023:6;;;;;;;3073:40;;3004:16;3073:40;2993:128;2948:173;:::o;33957:98::-;34022:27;34032:2;34036:8;34022:27;;;;;;;;;;;;:9;:27::i;39248:690::-;39385:4;-1:-1:-1;;;;;39402:13:0;;15060:20;15108:8;39398:535;;39441:72;;-1:-1:-1;;;39441:72:0;;-1:-1:-1;;;;;39441:36:0;;;;;:72;;744:10;;39492:4;;39498:7;;39507:5;;39441:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39441:72:0;;;;;;;;-1:-1:-1;;39441:72:0;;;;;;;;;;;;:::i;:::-;;;39428:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39672:13:0;;39668:215;;39705:61;;-1:-1:-1;;;39705:61:0;;;;;;;:::i;39668:215::-;39851:6;39845:13;39836:6;39832:2;39828:15;39821:38;39428:464;-1:-1:-1;;;;;;39563:55:0;-1:-1:-1;;;39563:55:0;;-1:-1:-1;39556:62:0;;39398:535;-1:-1:-1;39921:4:0;39398:535;39248:690;;;;;;:::o;42187:108::-;42247:13;42276;42269:20;;;;;:::i;22356:723::-;22412:13;22633:10;22629:53;;-1:-1:-1;;22660:10:0;;;;;;;;;;;;-1:-1:-1;;;22660:10:0;;;;;22356:723::o;22629:53::-;22707:5;22692:12;22748:78;22755:9;;22748:78;;22781:8;;;;:::i;:::-;;-1:-1:-1;22804:10:0;;-1:-1:-1;22812:2:0;22804:10;;:::i;:::-;;;22748:78;;;22836:19;22868:6;22858:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22858:17:0;;22836:39;;22886:154;22893:10;;22886:154;;22920:11;22930:1;22920:11;;:::i;:::-;;-1:-1:-1;22989:10:0;22997:2;22989:5;:10;:::i;:::-;22976:24;;:2;:24;:::i;:::-;22963:39;;22946:6;22953;22946:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22946:56:0;;;;;;;;-1:-1:-1;23017:11:0;23026:2;23017:11;;:::i;:::-;;;22886:154;;29413:240;29474:7;-1:-1:-1;;;;;29506:19:0;;29490:102;;;;-1:-1:-1;;;29490:102:0;;19447:2:1;29490:102:0;;;19429:21:1;19486:2;19466:18;;;19459:30;19525:34;19505:18;;;19498:62;-1:-1:-1;;;19576:18:1;;;19569:47;19633:19;;29490:102:0;19245:413:1;29490:102:0;-1:-1:-1;;;;;;29614:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29614:32:0;;-1:-1:-1;;;;;29614:32:0;;29413:240::o;34394:1272::-;34522:12;;-1:-1:-1;;;;;34549:16:0;;34541:62;;;;-1:-1:-1;;;34541:62:0;;19865:2:1;34541:62:0;;;19847:21:1;19904:2;19884:18;;;19877:30;19943:34;19923:18;;;19916:62;-1:-1:-1;;;19994:18:1;;;19987:31;20035:19;;34541:62:0;19663:397:1;34541:62:0;34740:21;34748:12;33933;;-1:-1:-1;33923:22:0;33846:105;34740:21;34739:22;34731:64;;;;-1:-1:-1;;;34731:64:0;;20267:2:1;34731:64:0;;;20249:21:1;20306:2;20286:18;;;20279:30;20345:31;20325:18;;;20318:59;20394:18;;34731:64:0;20065:353:1;34731:64:0;34822:12;34810:8;:24;;34802:71;;;;-1:-1:-1;;;34802:71:0;;20625:2:1;34802:71:0;;;20607:21:1;20664:2;20644:18;;;20637:30;20703:34;20683:18;;;20676:62;-1:-1:-1;;;20754:18:1;;;20747:32;20796:19;;34802:71:0;20423:398:1;34802:71:0;-1:-1:-1;;;;;34985:16:0;;34952:30;34985:16;;;:12;:16;;;;;;;;;34952:49;;;;;;;;;-1:-1:-1;;;;;34952:49:0;;;;;-1:-1:-1;;;34952:49:0;;;;;;;;;;;35027:119;;;;;;;;35047:19;;34952:49;;35027:119;;;35047:39;;35077:8;;35047:39;:::i;:::-;-1:-1:-1;;;;;35027:119:0;;;;;35130:8;35095:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35027:119:0;;;;;;-1:-1:-1;;;;;35008:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;35008:138:0;;;;;;;;;;;;35181:43;;;;;;;;;;;35207:15;35181:43;;;;;;;;35153:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35153:71:0;-1:-1:-1;;;;;;35153:71:0;;;;;;;;;;;;;;;;;;35165:12;;35277:281;35301:8;35297:1;:12;35277:281;;;35330:38;;35355:12;;-1:-1:-1;;;;;35330:38:0;;;35347:1;;35330:38;;35347:1;;35330:38;35395:59;35426:1;35430:2;35434:12;35448:5;35395:22;:59::i;:::-;35377:150;;;;-1:-1:-1;;;35377:150:0;;;;;;;:::i;:::-;35536:14;;;;:::i;:::-;;;;35311:3;;;;;:::i;:::-;;;;35277:281;;;-1:-1:-1;35566:12:0;:27;;;35600:60;33296:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3841:347::-;3906:6;3914;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4006:29;4025:9;4006:29;:::i;:::-;3996:39;;4085:2;4074:9;4070:18;4057:32;4132:5;4125:13;4118:21;4111:5;4108:32;4098:60;;4154:1;4151;4144:12;4098:60;4177:5;4167:15;;;3841:347;;;;;:::o;4193:127::-;4254:10;4249:3;4245:20;4242:1;4235:31;4285:4;4282:1;4275:15;4309:4;4306:1;4299:15;4325:1138;4420:6;4428;4436;4444;4497:3;4485:9;4476:7;4472:23;4468:33;4465:53;;;4514:1;4511;4504:12;4465:53;4537:29;4556:9;4537:29;:::i;:::-;4527:39;;4585:38;4619:2;4608:9;4604:18;4585:38;:::i;:::-;4575:48;;4670:2;4659:9;4655:18;4642:32;4632:42;;4725:2;4714:9;4710:18;4697:32;4748:18;4789:2;4781:6;4778:14;4775:34;;;4805:1;4802;4795:12;4775:34;4843:6;4832:9;4828:22;4818:32;;4888:7;4881:4;4877:2;4873:13;4869:27;4859:55;;4910:1;4907;4900:12;4859:55;4946:2;4933:16;4968:2;4964;4961:10;4958:36;;;4974:18;;:::i;:::-;5049:2;5043:9;5017:2;5103:13;;-1:-1:-1;;5099:22:1;;;5123:2;5095:31;5091:40;5079:53;;;5147:18;;;5167:22;;;5144:46;5141:72;;;5193:18;;:::i;:::-;5233:10;5229:2;5222:22;5268:2;5260:6;5253:18;5308:7;5303:2;5298;5294;5290:11;5286:20;5283:33;5280:53;;;5329:1;5326;5319:12;5280:53;5385:2;5380;5376;5372:11;5367:2;5359:6;5355:15;5342:46;5430:1;5425:2;5420;5412:6;5408:15;5404:24;5397:35;5451:6;5441:16;;;;;;;4325:1138;;;;;;;:::o;5468:260::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:38;5718:2;5707:9;5703:18;5684:38;:::i;:::-;5674:48;;5468:260;;;;;:::o;5733:380::-;5812:1;5808:12;;;;5855;;;5876:61;;5930:4;5922:6;5918:17;5908:27;;5876:61;5983:2;5975:6;5972:14;5952:18;5949:38;5946:161;;;6029:10;6024:3;6020:20;6017:1;6010:31;6064:4;6061:1;6054:15;6092:4;6089:1;6082:15;5946:161;;5733:380;;;:::o;7361:356::-;7563:2;7545:21;;;7582:18;;;7575:30;7641:34;7636:2;7621:18;;7614:62;7708:2;7693:18;;7361:356::o;8485:127::-;8546:10;8541:3;8537:20;8534:1;8527:31;8577:4;8574:1;8567:15;8601:4;8598:1;8591:15;8617:135;8656:3;-1:-1:-1;;8677:17:1;;8674:43;;;8697:18;;:::i;:::-;-1:-1:-1;8744:1:1;8733:13;;8617:135::o;10347:128::-;10387:3;10418:1;10414:6;10411:1;10408:13;10405:39;;;10424:18;;:::i;:::-;-1:-1:-1;10460:9:1;;10347:128::o;11178:168::-;11218:7;11284:1;11280;11276:6;11272:14;11269:1;11266:21;11261:1;11254:9;11247:17;11243:45;11240:71;;;11291:18;;:::i;:::-;-1:-1:-1;11331:9:1;;11178:168::o;12111:127::-;12172:10;12167:3;12163:20;12160:1;12153:31;12203:4;12200:1;12193:15;12227:4;12224:1;12217:15;12243:120;12283:1;12309;12299:35;;12314:18;;:::i;:::-;-1:-1:-1;12348:9:1;;12243:120::o;12578:348::-;12780:2;12762:21;;;12819:2;12799:18;;;12792:30;12858:26;12853:2;12838:18;;12831:54;12917:2;12902:18;;12578:348::o;12931:415::-;13133:2;13115:21;;;13172:2;13152:18;;;13145:30;13211:34;13206:2;13191:18;;13184:62;-1:-1:-1;;;13277:2:1;13262:18;;13255:49;13336:3;13321:19;;12931:415::o;13767:470::-;13946:3;13984:6;13978:13;14000:53;14046:6;14041:3;14034:4;14026:6;14022:17;14000:53;:::i;:::-;14116:13;;14075:16;;;;14138:57;14116:13;14075:16;14172:4;14160:17;;14138:57;:::i;:::-;14211:20;;13767:470;-1:-1:-1;;;;13767:470:1:o;15881:246::-;15921:4;-1:-1:-1;;;;;16034:10:1;;;;16004;;16056:12;;;16053:38;;;16071:18;;:::i;:::-;16108:13;;15881:246;-1:-1:-1;;;15881:246:1:o;16132:253::-;16172:3;-1:-1:-1;;;;;16261:2:1;16258:1;16254:10;16291:2;16288:1;16284:10;16322:3;16318:2;16314:12;16309:3;16306:21;16303:47;;;16330:18;;:::i;16743:125::-;16783:4;16811:1;16808;16805:8;16802:34;;;16816:18;;:::i;:::-;-1:-1:-1;16853:9:1;;16743:125::o;17691:136::-;17730:3;17758:5;17748:39;;17767:18;;:::i;:::-;-1:-1:-1;;;17803:18:1;;17691:136::o;18248:489::-;-1:-1:-1;;;;;18517:15:1;;;18499:34;;18569:15;;18564:2;18549:18;;18542:43;18616:2;18601:18;;18594:34;;;18664:3;18659:2;18644:18;;18637:31;;;18442:4;;18685:46;;18711:19;;18703:6;18685:46;:::i;:::-;18677:54;18248:489;-1:-1:-1;;;;;;18248:489:1:o;18742:249::-;18811:6;18864:2;18852:9;18843:7;18839:23;18835:32;18832:52;;;18880:1;18877;18870:12;18832:52;18912:9;18906:16;18931:30;18955:5;18931:30;:::i;18996:112::-;19028:1;19054;19044:35;;19059:18;;:::i;:::-;-1:-1:-1;19093:9:1;;18996:112::o;19113:127::-;19174:10;19169:3;19165:20;19162:1;19155:31;19205:4;19202:1;19195:15;19229:4;19226:1;19219:15

Swarm Source

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