ETH Price: $3,051.36 (+1.20%)
Gas: 2 Gwei

Token

mpher chicks (MPHCHICK)
 

Overview

Max Total Supply

619 MPHCHICK

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goyslop.evilempire.eth
Balance
3 MPHCHICK
0xc2fd5fb90252f8f69d2646d03a9e3e9085d50714
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:
MpherChicks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : kkk.sol
/**
 *Submitted for verification at Etherscan.io on 2022-02-21
*/

// SPDX-License-Identifier: MIT

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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








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




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


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


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

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


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


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  collectionSize;
  uint256 internal  collectionSizeFree;
  uint256 internal  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_,
    uint256 collectionSizeFree_
  ) {
    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_;
    collectionSizeFree = collectionSizeFree_;
  }

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


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


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


pragma solidity ^0.8.0;


contract MpherChicks is Ownable, ERC721A, ReentrancyGuard {
  using Strings for uint256;
  uint256 public maxPerAddressDuringMint;
  // uint256 public amountForDevs;
  uint256 public price = 0.0069 ether;
  uint256 public freemintAmount = 25;
  uint256 public mintAmount = 25;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;
  mapping(address=>uint) mintedAmount;

  modifier checkEligibility(uint quantity)  {
     require(mintedAmount[msg.sender]<26 && mintedAmount[msg.sender] + quantity <26);
    _;
  }

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 collectionSizeFree_
  ) ERC721A("mpher chicks", "MPHCHICK", maxBatchSize_, collectionSize_, collectionSizeFree_) {
    maxPerAddressDuringMint = 25;
    // amountForDevs = amountForDevs_;
    // _safeMint(msg.sender, 50);
    _safeMint(address(0x0dd68c06Af920CA069CDc27d05AA9EB65F85990A), 1);
    
  }

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

 
  function mint(uint256 quantity)
    external
    payable
    callerIsUser
    checkEligibility(quantity)
  { 
      if(totalSupply() + quantity <= collectionSizeFree) {

    require(quantity <= freemintAmount, "Too many minted at once");
    _safeMint(msg.sender, quantity);
    mintedAmount[msg.sender] += quantity;
    
  }
  else {
       require(quantity <= mintAmount, "Too many minted at once");
       require(msg.value >= price, "Need to send more ETH.");
       require(totalSupply() + quantity <= collectionSize, "reached max supply");
      _safeMint(msg.sender, quantity);
          mintedAmount[msg.sender] += quantity;

     }

  }



  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
 
     
  function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  // // metadata URI
  string private _baseTokenURI = "ipfs://QmcWaVFfKBwvDh1d3qmmeo62sb2siavvpWJteAHLCmSKCa/";

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

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

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

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

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

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

function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

  function setfreemints(uint256 _newfreemints) public onlyOwner {
	    collectionSizeFree = _newfreemints;
	}

    function setcollectionSize(uint256 _newcollectionSize) public onlyOwner {
	    collectionSize = _newcollectionSize;
	}


    function setfreemintAmount(uint256 _newfreemintAmount) public onlyOwner {
	    freemintAmount = _newfreemintAmount;
	}

    function setmintAmount(uint256 _newmintAmount) public onlyOwner {
	    mintAmount = _newmintAmount;
	}


}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSizeFree_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintAmount","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":"mintAmount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","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":"uint256","name":"_newcollectionSize","type":"uint256"}],"name":"setcollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemintAmount","type":"uint256"}],"name":"setfreemintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemints","type":"uint256"}],"name":"setfreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintAmount","type":"uint256"}],"name":"setmintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","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"}]

608060405260006001556000600b556618838370f34000600e556019600f5560196010556040518060600160405280603681526020016200638e60369139601490805190602001906200005492919062000a00565b503480156200006257600080fd5b50604051620063c4380380620063c4833981810160405281019062000088919062000b0a565b6040518060400160405280600c81526020017f6d7068657220636869636b7300000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d5048434849434b000000000000000000000000000000000000000000000000815250848484620001176200010b6200022f60201b60201c565b6200023760201b60201c565b600082116200015d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001549062000ee9565b60405180910390fd5b60008311620001a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019a9062000e61565b60405180910390fd5b8460059080519060200190620001bb92919062000a00565b508360069080519060200190620001d492919062000a00565b5082600481905550816002819055508060038190555050505050506001600c819055506019600d8190555062000226730dd68c06af920ca069cdc27d05aa9eb65f85990a6001620002fb60201b60201c565b5050506200118a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200031d8282604051806020016040528060008152506200032160201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200039b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003929062000ec7565b60405180910390fd5b620003ac816200081960201b60201c565b15620003ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e69062000ea5565b60405180910390fd5b60045483111562000437576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042e9062000f0b565b60405180910390fd5b6200044c60008583866200082760201b60201c565b6000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516200054b919062000f5a565b6fffffffffffffffffffffffffffffffff16815260200185836020015162000574919062000f5a565b6fffffffffffffffffffffffffffffffff16815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015620007f457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200078c60008884886200082d60201b60201c565b620007ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c59062000e83565b60405180910390fd5b8180620007db9062001099565b9250508080620007eb9062001099565b91505062000712565b5080600181905550620008116000878588620009e760201b60201c565b505050505050565b600060015482109050919050565b50505050565b60006200085b8473ffffffffffffffffffffffffffffffffffffffff16620009ed60201b620020291760201c565b15620009da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200088d6200022f60201b60201c565b8786866040518563ffffffff1660e01b8152600401620008b1949392919062000e0d565b602060405180830381600087803b158015620008cc57600080fd5b505af19250505080156200090057506040513d601f19601f82011682018060405250810190620008fd919062000ade565b60015b62000989573d806000811462000933576040519150601f19603f3d011682016040523d82523d6000602084013e62000938565b606091505b5060008151141562000981576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009789062000e83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009df565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b82805462000a0e9062001063565b90600052602060002090601f01602090048101928262000a32576000855562000a7e565b82601f1062000a4d57805160ff191683800117855562000a7e565b8280016001018555821562000a7e579182015b8281111562000a7d57825182559160200191906001019062000a60565b5b50905062000a8d919062000a91565b5090565b5b8082111562000aac57600081600090555060010162000a92565b5090565b60008151905062000ac18162001156565b92915050565b60008151905062000ad88162001170565b92915050565b60006020828403121562000af157600080fd5b600062000b018482850162000ab0565b91505092915050565b60008060006060848603121562000b2057600080fd5b600062000b308682870162000ac7565b935050602062000b438682870162000ac7565b925050604062000b568682870162000ac7565b9150509250925092565b62000b6b8162000fa7565b82525050565b600062000b7e8262000f2d565b62000b8a818562000f38565b935062000b9c8185602086016200102d565b62000ba78162001145565b840191505092915050565b600062000bc160278362000f49565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000c2960338362000f49565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b600062000c91601d8362000f49565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600062000cd360218362000f49565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000d3b602e8362000f49565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b600062000da360228362000f49565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b62000e078162001023565b82525050565b600060808201905062000e24600083018762000b60565b62000e33602083018662000b60565b62000e42604083018562000dfc565b818103606083015262000e56818462000b71565b905095945050505050565b6000602082019050818103600083015262000e7c8162000bb2565b9050919050565b6000602082019050818103600083015262000e9e8162000c1a565b9050919050565b6000602082019050818103600083015262000ec08162000c82565b9050919050565b6000602082019050818103600083015262000ee28162000cc4565b9050919050565b6000602082019050818103600083015262000f048162000d2c565b9050919050565b6000602082019050818103600083015262000f268162000d94565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000f678262000fe7565b915062000f748362000fe7565b9250826fffffffffffffffffffffffffffffffff0382111562000f9c5762000f9b620010e7565b5b828201905092915050565b600062000fb48262001003565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200104d57808201518184015260208101905062001030565b838111156200105d576000848401525b50505050565b600060028204905060018216806200107c57607f821691505b6020821081141562001093576200109262001116565b5b50919050565b6000620010a68262001023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620010dc57620010db620010e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b620011618162000fbb565b81146200116d57600080fd5b50565b6200117b8162001023565b81146200118757600080fd5b50565b6151f4806200119a6000396000f3fe6080604052600436106102255760003560e01c80638da5cb5b11610123578063ac446002116100ab578063d49f0fa51161006f578063d49f0fa514610808578063d7224ba014610831578063dc33e6811461085c578063e985e9c514610899578063f2fde38b146108d657610225565b8063ac44600214610739578063b05863d514610750578063b88d4fde14610779578063c87b56dd146107a2578063d0d99907146107df57610225565b80639f8afbcc116100f25780639f8afbcc14610663578063a035b1fe1461068c578063a0712d68146106b7578063a22cb465146106d3578063a7cd52cb146106fc57610225565b80638da5cb5b146105a557806390aa0b0f146105d05780639231ab2a146105fb57806395d89b411461063857610225565b80632f745c59116101b15780636352211e116101755780636352211e146104c057806370a08231146104fd578063715018a61461053a57806380e28ea5146105515780638bc35c2f1461057a57610225565b80632f745c59146103c957806342842e0e146104065780634f6ccce71461042f57806355f804b31461046c5780635a2bcc181461049557610225565b8063130db2bb116101f8578063130db2bb146102f857806318160ddd1461032357806323b872dd1461034e57806327e410f1146103775780632d20fb60146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613ae6565b6108ff565b60405161025e919061484f565b60405180910390f35b34801561027357600080fd5b5061027c610a49565b604051610289919061486a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613b7d565b610adb565b6040516102c691906147e8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613a3e565b610b60565b005b34801561030457600080fd5b5061030d610c79565b60405161031a9190614c67565b60405180910390f35b34801561032f57600080fd5b50610338610c7f565b6040516103459190614c67565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613938565b610c89565b005b34801561038357600080fd5b5061039e60048036038101906103999190613b7d565b610c99565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613b7d565b610d1f565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613a3e565b610dfd565b6040516103fd9190614c67565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613938565b610ffb565b005b34801561043b57600080fd5b5061045660048036038101906104519190613b7d565b61101b565b6040516104639190614c67565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613b38565b61106e565b005b3480156104a157600080fd5b506104aa611100565b6040516104b79190614c67565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613b7d565b611106565b6040516104f491906147e8565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f91906138d3565b61111c565b6040516105319190614c67565b60405180910390f35b34801561054657600080fd5b5061054f611205565b005b34801561055d57600080fd5b5061057860048036038101906105739190613b7d565b61128d565b005b34801561058657600080fd5b5061058f611313565b60405161059c9190614c67565b60405180910390f35b3480156105b157600080fd5b506105ba611319565b6040516105c791906147e8565b60405180910390f35b3480156105dc57600080fd5b506105e5611342565b6040516105f29190614c82565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613b7d565b611362565b60405161062f9190614c4c565b60405180910390f35b34801561064457600080fd5b5061064d61137a565b60405161065a919061486a565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613b7d565b61140c565b005b34801561069857600080fd5b506106a1611492565b6040516106ae9190614c67565b60405180910390f35b6106d160048036038101906106cc9190613b7d565b611498565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613a02565b6117b4565b005b34801561070857600080fd5b50610723600480360381019061071e91906138d3565b611935565b6040516107309190614c67565b60405180910390f35b34801561074557600080fd5b5061074e61194d565b005b34801561075c57600080fd5b5061077760048036038101906107729190613a7a565b611ace565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613987565b611c76565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613b7d565b611cd2565b6040516107d6919061486a565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190613b7d565b611d79565b005b34801561081457600080fd5b5061082f600480360381019061082a9190613b7d565b611dff565b005b34801561083d57600080fd5b50610846611e85565b6040516108539190614c67565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906138d3565b611e8b565b6040516108909190614c67565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906138fc565b611e9d565b6040516108cd919061484f565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906138d3565b611f31565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a418261203c565b5b9050919050565b606060058054610a5890614fe9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614fe9565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae6826120a6565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90614bec565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611106565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb6120b4565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c246120b4565b611e9d565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c609061498c565b60405180910390fd5b610c748383836120bc565b505050565b600f5481565b6000600154905090565b610c9483838361216e565b505050565b610ca16120b4565b73ffffffffffffffffffffffffffffffffffffffff16610cbf611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90614a2c565b60405180910390fd5b80600f8190555050565b610d276120b4565b73ffffffffffffffffffffffffffffffffffffffff16610d45611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290614a2c565b60405180910390fd5b6002600c541415610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614bac565b60405180910390fd5b6002600c81905550610df281612727565b6001600c8190555050565b6000610e088361111c565b8210610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061488c565b60405180910390fd5b6000610e53610c7f565b905060008060005b83811015610fb9576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa55786841415610f96578195505050505050610ff5565b8380610fa19061501b565b9450505b508080610fb19061501b565b915050610e5b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90614b6c565b60405180910390fd5b92915050565b61101683838360405180602001604052806000815250611c76565b505050565b6000611025610c7f565b8210611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061490c565b60405180910390fd5b819050919050565b6110766120b4565b73ffffffffffffffffffffffffffffffffffffffff16611094611319565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190614a2c565b60405180910390fd5b8181601491906110fb9291906135af565b505050565b60105481565b600061111182612979565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906149cc565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61120d6120b4565b73ffffffffffffffffffffffffffffffffffffffff1661122b611319565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a2c565b60405180910390fd5b61128b6000612b40565b565b6112956120b4565b73ffffffffffffffffffffffffffffffffffffffff166112b3611319565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614a2c565b60405180910390fd5b8060038190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60118060000160009054906101000a900467ffffffffffffffff16905081565b61136a613635565b61137382612979565b9050919050565b60606006805461138990614fe9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b590614fe9565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b5050505050905090565b6114146120b4565b73ffffffffffffffffffffffffffffffffffffffff16611432611319565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614a2c565b60405180910390fd5b8060028190555050565b600e5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061496c565b60405180910390fd5b80601a601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156115a05750601a81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159e9190614dea565b105b6115a957600080fd5b600354826115b5610c7f565b6115bf9190614dea565b1161166e57600f54821115611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906148ac565b60405180910390fd5b6116133383612c04565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116629190614dea565b925050819055506117b0565b6010548211156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa906148ac565b60405180910390fd5b600e543410156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90614b0c565b60405180910390fd5b60025482611704610c7f565b61170e9190614dea565b111561174f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611746906149ec565b60405180910390fd5b6117593383612c04565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190614dea565b925050819055505b5050565b6117bc6120b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614a6c565b60405180910390fd5b80600a60006118376120b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e46120b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611929919061484f565b60405180910390a35050565b60126020528060005260406000206000915090505481565b6119556120b4565b73ffffffffffffffffffffffffffffffffffffffff16611973611319565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614a2c565b60405180910390fd5b6002600c541415611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690614bac565b60405180910390fd5b6002600c8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611a3d906147d3565b60006040518083038185875af1925050503d8060008114611a7a576040519150601f19603f3d011682016040523d82523d6000602084013e611a7f565b606091505b5050905080611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90614acc565b60405180910390fd5b506001600c81905550565b611ad66120b4565b73ffffffffffffffffffffffffffffffffffffffff16611af4611319565b73ffffffffffffffffffffffffffffffffffffffff1614611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614a2c565b60405180910390fd5b8051825114611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614c2c565b60405180910390fd5b60005b8251811015611c7157818181518110611bd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160126000858481518110611c18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c699061501b565b915050611b91565b505050565b611c8184848461216e565b611c8d84848484612c22565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614aec565b60405180910390fd5b50505050565b6060611cdd826120a6565b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614a4c565b60405180910390fd5b6000611d26612db9565b90506000815111611d465760405180602001604052806000815250611d71565b80611d5084612e4b565b604051602001611d619291906147a4565b6040516020818303038152906040525b915050919050565b611d816120b4565b73ffffffffffffffffffffffffffffffffffffffff16611d9f611319565b73ffffffffffffffffffffffffffffffffffffffff1614611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614a2c565b60405180910390fd5b8060108190555050565b611e076120b4565b73ffffffffffffffffffffffffffffffffffffffff16611e25611319565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614a2c565b60405180910390fd5b80600e8190555050565b600b5481565b6000611e9682612ff8565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f396120b4565b73ffffffffffffffffffffffffffffffffffffffff16611f57611319565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614a2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612014906148cc565b60405180910390fd5b61202681612b40565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061217982612979565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121a06120b4565b73ffffffffffffffffffffffffffffffffffffffff1614806121fc57506121c56120b4565b73ffffffffffffffffffffffffffffffffffffffff166121e484610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612218575061221782600001516122126120b4565b611e9d565b5b90508061225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614a8c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c390614a0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561233c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123339061492c565b60405180910390fd5b61234985858560016130e1565b61235960008484600001516120bc565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123c79190614e71565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661246b9190614da4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125719190614dea565b9050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126b7576125e7816120a6565b156126b6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506007600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461271f86868660016130e7565b505050505050565b6000600b54905060008211612771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612768906149ac565b60405180910390fd5b6000600183836127819190614dea565b61278b9190614ea5565b9050600160025461279c9190614ea5565b8111156127b55760016002546127b29190614ea5565b90505b6127be816120a6565b6127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614b8c565b60405180910390fd5b60008290505b81811161296057600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561294d57600061288082612979565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806129589061501b565b915050612803565b5060018161296e9190614dea565b600b81905550505050565b612981613635565b61298a826120a6565b6129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906148ec565b60405180910390fd5b600060045483106129f1576001600454846129e49190614ea5565b6129ee9190614dea565b90505b60008390505b818110612aff576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aeb57809350505050612b3b565b508080612af790614fbf565b9150506129f7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290614bcc565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c1e8282604051806020016040528060008152506130ed565b5050565b6000612c438473ffffffffffffffffffffffffffffffffffffffff16612029565b15612dac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6c6120b4565b8786866040518563ffffffff1660e01b8152600401612c8e9493929190614803565b602060405180830381600087803b158015612ca857600080fd5b505af1925050508015612cd957506040513d601f19601f82011682018060405250810190612cd69190613b0f565b60015b612d5c573d8060008114612d09576040519150601f19603f3d011682016040523d82523d6000602084013e612d0e565b606091505b50600081511415612d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4b90614aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db1565b600190505b949350505050565b606060148054612dc890614fe9565b80601f0160208091040260200160405190810160405280929190818152602001828054612df490614fe9565b8015612e415780601f10612e1657610100808354040283529160200191612e41565b820191906000526020600020905b815481529060010190602001808311612e2457829003601f168201915b5050505050905090565b60606000821415612e93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff3565b600082905060005b60008214612ec5578080612eae9061501b565b915050600a82612ebe9190614e40565b9150612e9b565b60008167ffffffffffffffff811115612f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f395781602001600182028036833780820191505090505b5090505b60008514612fec57600182612f529190614ea5565b9150600a85612f619190615064565b6030612f6d9190614dea565b60f81b818381518110612fa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fe59190614e40565b9450612f3d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130609061494c565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b90614b4c565b60405180910390fd5b61316d816120a6565b156131ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a490614b2c565b60405180910390fd5b6004548311156131f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e990614c0c565b60405180910390fd5b6131ff60008583866130e1565b6000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132fc9190614da4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133239190614da4565b6fffffffffffffffffffffffffffffffff16815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561359257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135326000888488612c22565b613571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356890614aec565b60405180910390fd5b818061357c9061501b565b925050808061358a9061501b565b9150506134c1565b50806001819055506135a760008785886130e7565b505050505050565b8280546135bb90614fe9565b90600052602060002090601f0160209004810192826135dd5760008555613624565b82601f106135f657803560ff1916838001178555613624565b82800160010185558215613624579182015b82811115613623578235825591602001919060010190613608565b5b509050613631919061366f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613688576000816000905550600101613670565b5090565b600061369f61369a84614cce565b614c9d565b905080838252602082019050828560208602820111156136be57600080fd5b60005b858110156136ee57816136d488826137a2565b8452602084019350602083019250506001810190506136c1565b5050509392505050565b600061370b61370684614cfa565b614c9d565b9050808382526020820190508285602086028201111561372a57600080fd5b60005b8581101561375a578161374088826138be565b84526020840193506020830192505060018101905061372d565b5050509392505050565b600061377761377284614d26565b614c9d565b90508281526020810184848401111561378f57600080fd5b61379a848285614f7d565b509392505050565b6000813590506137b181615162565b92915050565b600082601f8301126137c857600080fd5b81356137d884826020860161368c565b91505092915050565b600082601f8301126137f257600080fd5b81356138028482602086016136f8565b91505092915050565b60008135905061381a81615179565b92915050565b60008135905061382f81615190565b92915050565b60008151905061384481615190565b92915050565b600082601f83011261385b57600080fd5b813561386b848260208601613764565b91505092915050565b60008083601f84011261388657600080fd5b8235905067ffffffffffffffff81111561389f57600080fd5b6020830191508360018202830111156138b757600080fd5b9250929050565b6000813590506138cd816151a7565b92915050565b6000602082840312156138e557600080fd5b60006138f3848285016137a2565b91505092915050565b6000806040838503121561390f57600080fd5b600061391d858286016137a2565b925050602061392e858286016137a2565b9150509250929050565b60008060006060848603121561394d57600080fd5b600061395b868287016137a2565b935050602061396c868287016137a2565b925050604061397d868287016138be565b9150509250925092565b6000806000806080858703121561399d57600080fd5b60006139ab878288016137a2565b94505060206139bc878288016137a2565b93505060406139cd878288016138be565b925050606085013567ffffffffffffffff8111156139ea57600080fd5b6139f68782880161384a565b91505092959194509250565b60008060408385031215613a1557600080fd5b6000613a23858286016137a2565b9250506020613a348582860161380b565b9150509250929050565b60008060408385031215613a5157600080fd5b6000613a5f858286016137a2565b9250506020613a70858286016138be565b9150509250929050565b60008060408385031215613a8d57600080fd5b600083013567ffffffffffffffff811115613aa757600080fd5b613ab3858286016137b7565b925050602083013567ffffffffffffffff811115613ad057600080fd5b613adc858286016137e1565b9150509250929050565b600060208284031215613af857600080fd5b6000613b0684828501613820565b91505092915050565b600060208284031215613b2157600080fd5b6000613b2f84828501613835565b91505092915050565b60008060208385031215613b4b57600080fd5b600083013567ffffffffffffffff811115613b6557600080fd5b613b7185828601613874565b92509250509250929050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138be565b91505092915050565b613baf81614ed9565b82525050565b613bbe81614ed9565b82525050565b613bcd81614eeb565b82525050565b6000613bde82614d56565b613be88185614d6c565b9350613bf8818560208601614f8c565b613c0181615151565b840191505092915050565b6000613c1782614d61565b613c218185614d88565b9350613c31818560208601614f8c565b613c3a81615151565b840191505092915050565b6000613c5082614d61565b613c5a8185614d99565b9350613c6a818560208601614f8c565b80840191505092915050565b6000613c83602283614d88565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ce9601783614d88565b91507f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006000830152602082019050919050565b6000613d29602683614d88565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8f602a83614d88565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613df5602383614d88565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e5b602583614d88565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ec1603183614d88565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000613f27601e83614d88565b91507f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006000830152602082019050919050565b6000613f67603983614d88565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613fcd601883614d88565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b600061400d602b83614d88565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614073601283614d88565b91507f72656163686564206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b60006140b3602683614d88565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614119600583614d99565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614159602083614d88565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614199602f83614d88565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ff601a83614d88565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061423f603283614d88565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006142a5602283614d88565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430b600083614d7d565b9150600082019050919050565b6000614325601083614d88565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614365603383614d88565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006143cb601683614d88565b91507f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006000830152602082019050919050565b600061440b601d83614d88565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061444b602183614d88565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144b1602e83614d88565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614517602683614d88565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061457d601f83614d88565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b60006145bd602f83614d88565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614623602d83614d88565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614689602283614d88565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ef602883614d88565b91507f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008301527f73206c656e6774680000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161475e6000850182613ba6565b5060208201516147716020850182614786565b50505050565b61478081614f5f565b82525050565b61478f81614f69565b82525050565b61479e81614f69565b82525050565b60006147b08285613c45565b91506147bc8284613c45565b91506147c78261410c565b91508190509392505050565b60006147de826142fe565b9150819050919050565b60006020820190506147fd6000830184613bb5565b92915050565b60006080820190506148186000830187613bb5565b6148256020830186613bb5565b6148326040830185614777565b81810360608301526148448184613bd3565b905095945050505050565b60006020820190506148646000830184613bc4565b92915050565b600060208201905081810360008301526148848184613c0c565b905092915050565b600060208201905081810360008301526148a581613c76565b9050919050565b600060208201905081810360008301526148c581613cdc565b9050919050565b600060208201905081810360008301526148e581613d1c565b9050919050565b6000602082019050818103600083015261490581613d82565b9050919050565b6000602082019050818103600083015261492581613de8565b9050919050565b6000602082019050818103600083015261494581613e4e565b9050919050565b6000602082019050818103600083015261496581613eb4565b9050919050565b6000602082019050818103600083015261498581613f1a565b9050919050565b600060208201905081810360008301526149a581613f5a565b9050919050565b600060208201905081810360008301526149c581613fc0565b9050919050565b600060208201905081810360008301526149e581614000565b9050919050565b60006020820190508181036000830152614a0581614066565b9050919050565b60006020820190508181036000830152614a25816140a6565b9050919050565b60006020820190508181036000830152614a458161414c565b9050919050565b60006020820190508181036000830152614a658161418c565b9050919050565b60006020820190508181036000830152614a85816141f2565b9050919050565b60006020820190508181036000830152614aa581614232565b9050919050565b60006020820190508181036000830152614ac581614298565b9050919050565b60006020820190508181036000830152614ae581614318565b9050919050565b60006020820190508181036000830152614b0581614358565b9050919050565b60006020820190508181036000830152614b25816143be565b9050919050565b60006020820190508181036000830152614b45816143fe565b9050919050565b60006020820190508181036000830152614b658161443e565b9050919050565b60006020820190508181036000830152614b85816144a4565b9050919050565b60006020820190508181036000830152614ba58161450a565b9050919050565b60006020820190508181036000830152614bc581614570565b9050919050565b60006020820190508181036000830152614be5816145b0565b9050919050565b60006020820190508181036000830152614c0581614616565b9050919050565b60006020820190508181036000830152614c258161467c565b9050919050565b60006020820190508181036000830152614c45816146e2565b9050919050565b6000604082019050614c616000830184614748565b92915050565b6000602082019050614c7c6000830184614777565b92915050565b6000602082019050614c976000830184614795565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614cc457614cc3615122565b5b8060405250919050565b600067ffffffffffffffff821115614ce957614ce8615122565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d1557614d14615122565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d4157614d40615122565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614daf82614f23565b9150614dba83614f23565b9250826fffffffffffffffffffffffffffffffff03821115614ddf57614dde615095565b5b828201905092915050565b6000614df582614f5f565b9150614e0083614f5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e3557614e34615095565b5b828201905092915050565b6000614e4b82614f5f565b9150614e5683614f5f565b925082614e6657614e656150c4565b5b828204905092915050565b6000614e7c82614f23565b9150614e8783614f23565b925082821015614e9a57614e99615095565b5b828203905092915050565b6000614eb082614f5f565b9150614ebb83614f5f565b925082821015614ece57614ecd615095565b5b828203905092915050565b6000614ee482614f3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614faa578082015181840152602081019050614f8f565b83811115614fb9576000848401525b50505050565b6000614fca82614f5f565b91506000821415614fde57614fdd615095565b5b600182039050919050565b6000600282049050600182168061500157607f821691505b60208210811415615015576150146150f3565b5b50919050565b600061502682614f5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561505957615058615095565b5b600182019050919050565b600061506f82614f5f565b915061507a83614f5f565b92508261508a576150896150c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61516b81614ed9565b811461517657600080fd5b50565b61518281614eeb565b811461518d57600080fd5b50565b61519981614ef7565b81146151a457600080fd5b50565b6151b081614f5f565b81146151bb57600080fd5b5056fea26469706673582212202690f6fac197d4e824e8a0cba0ba5ea60d4bc2ea486e7c00898ccb9b4322caf364736f6c63430008000033697066733a2f2f516d6357615646664b4277764468316433716d6d656f3632736232736961767670574a746541484c436d534b43612f000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000022b

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638da5cb5b11610123578063ac446002116100ab578063d49f0fa51161006f578063d49f0fa514610808578063d7224ba014610831578063dc33e6811461085c578063e985e9c514610899578063f2fde38b146108d657610225565b8063ac44600214610739578063b05863d514610750578063b88d4fde14610779578063c87b56dd146107a2578063d0d99907146107df57610225565b80639f8afbcc116100f25780639f8afbcc14610663578063a035b1fe1461068c578063a0712d68146106b7578063a22cb465146106d3578063a7cd52cb146106fc57610225565b80638da5cb5b146105a557806390aa0b0f146105d05780639231ab2a146105fb57806395d89b411461063857610225565b80632f745c59116101b15780636352211e116101755780636352211e146104c057806370a08231146104fd578063715018a61461053a57806380e28ea5146105515780638bc35c2f1461057a57610225565b80632f745c59146103c957806342842e0e146104065780634f6ccce71461042f57806355f804b31461046c5780635a2bcc181461049557610225565b8063130db2bb116101f8578063130db2bb146102f857806318160ddd1461032357806323b872dd1461034e57806327e410f1146103775780632d20fb60146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613ae6565b6108ff565b60405161025e919061484f565b60405180910390f35b34801561027357600080fd5b5061027c610a49565b604051610289919061486a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613b7d565b610adb565b6040516102c691906147e8565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613a3e565b610b60565b005b34801561030457600080fd5b5061030d610c79565b60405161031a9190614c67565b60405180910390f35b34801561032f57600080fd5b50610338610c7f565b6040516103459190614c67565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613938565b610c89565b005b34801561038357600080fd5b5061039e60048036038101906103999190613b7d565b610c99565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613b7d565b610d1f565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613a3e565b610dfd565b6040516103fd9190614c67565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613938565b610ffb565b005b34801561043b57600080fd5b5061045660048036038101906104519190613b7d565b61101b565b6040516104639190614c67565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613b38565b61106e565b005b3480156104a157600080fd5b506104aa611100565b6040516104b79190614c67565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613b7d565b611106565b6040516104f491906147e8565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f91906138d3565b61111c565b6040516105319190614c67565b60405180910390f35b34801561054657600080fd5b5061054f611205565b005b34801561055d57600080fd5b5061057860048036038101906105739190613b7d565b61128d565b005b34801561058657600080fd5b5061058f611313565b60405161059c9190614c67565b60405180910390f35b3480156105b157600080fd5b506105ba611319565b6040516105c791906147e8565b60405180910390f35b3480156105dc57600080fd5b506105e5611342565b6040516105f29190614c82565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613b7d565b611362565b60405161062f9190614c4c565b60405180910390f35b34801561064457600080fd5b5061064d61137a565b60405161065a919061486a565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613b7d565b61140c565b005b34801561069857600080fd5b506106a1611492565b6040516106ae9190614c67565b60405180910390f35b6106d160048036038101906106cc9190613b7d565b611498565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613a02565b6117b4565b005b34801561070857600080fd5b50610723600480360381019061071e91906138d3565b611935565b6040516107309190614c67565b60405180910390f35b34801561074557600080fd5b5061074e61194d565b005b34801561075c57600080fd5b5061077760048036038101906107729190613a7a565b611ace565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613987565b611c76565b005b3480156107ae57600080fd5b506107c960048036038101906107c49190613b7d565b611cd2565b6040516107d6919061486a565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190613b7d565b611d79565b005b34801561081457600080fd5b5061082f600480360381019061082a9190613b7d565b611dff565b005b34801561083d57600080fd5b50610846611e85565b6040516108539190614c67565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e91906138d3565b611e8b565b6040516108909190614c67565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906138fc565b611e9d565b6040516108cd919061484f565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906138d3565b611f31565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a3257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750610a418261203c565b5b9050919050565b606060058054610a5890614fe9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614fe9565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae6826120a6565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90614bec565b60405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611106565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614aac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb6120b4565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c246120b4565b611e9d565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c609061498c565b60405180910390fd5b610c748383836120bc565b505050565b600f5481565b6000600154905090565b610c9483838361216e565b505050565b610ca16120b4565b73ffffffffffffffffffffffffffffffffffffffff16610cbf611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90614a2c565b60405180910390fd5b80600f8190555050565b610d276120b4565b73ffffffffffffffffffffffffffffffffffffffff16610d45611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290614a2c565b60405180910390fd5b6002600c541415610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890614bac565b60405180910390fd5b6002600c81905550610df281612727565b6001600c8190555050565b6000610e088361111c565b8210610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061488c565b60405180910390fd5b6000610e53610c7f565b905060008060005b83811015610fb9576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f4d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa55786841415610f96578195505050505050610ff5565b8380610fa19061501b565b9450505b508080610fb19061501b565b915050610e5b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90614b6c565b60405180910390fd5b92915050565b61101683838360405180602001604052806000815250611c76565b505050565b6000611025610c7f565b8210611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061490c565b60405180910390fd5b819050919050565b6110766120b4565b73ffffffffffffffffffffffffffffffffffffffff16611094611319565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190614a2c565b60405180910390fd5b8181601491906110fb9291906135af565b505050565b60105481565b600061111182612979565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906149cc565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61120d6120b4565b73ffffffffffffffffffffffffffffffffffffffff1661122b611319565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a2c565b60405180910390fd5b61128b6000612b40565b565b6112956120b4565b73ffffffffffffffffffffffffffffffffffffffff166112b3611319565b73ffffffffffffffffffffffffffffffffffffffff1614611309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130090614a2c565b60405180910390fd5b8060038190555050565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60118060000160009054906101000a900467ffffffffffffffff16905081565b61136a613635565b61137382612979565b9050919050565b60606006805461138990614fe9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b590614fe9565b80156114025780601f106113d757610100808354040283529160200191611402565b820191906000526020600020905b8154815290600101906020018083116113e557829003601f168201915b5050505050905090565b6114146120b4565b73ffffffffffffffffffffffffffffffffffffffff16611432611319565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90614a2c565b60405180910390fd5b8060028190555050565b600e5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061496c565b60405180910390fd5b80601a601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156115a05750601a81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159e9190614dea565b105b6115a957600080fd5b600354826115b5610c7f565b6115bf9190614dea565b1161166e57600f54821115611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906148ac565b60405180910390fd5b6116133383612c04565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116629190614dea565b925050819055506117b0565b6010548211156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa906148ac565b60405180910390fd5b600e543410156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90614b0c565b60405180910390fd5b60025482611704610c7f565b61170e9190614dea565b111561174f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611746906149ec565b60405180910390fd5b6117593383612c04565b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190614dea565b925050819055505b5050565b6117bc6120b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614a6c565b60405180910390fd5b80600a60006118376120b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e46120b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611929919061484f565b60405180910390a35050565b60126020528060005260406000206000915090505481565b6119556120b4565b73ffffffffffffffffffffffffffffffffffffffff16611973611319565b73ffffffffffffffffffffffffffffffffffffffff16146119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090614a2c565b60405180910390fd5b6002600c541415611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0690614bac565b60405180910390fd5b6002600c8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611a3d906147d3565b60006040518083038185875af1925050503d8060008114611a7a576040519150601f19603f3d011682016040523d82523d6000602084013e611a7f565b606091505b5050905080611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90614acc565b60405180910390fd5b506001600c81905550565b611ad66120b4565b73ffffffffffffffffffffffffffffffffffffffff16611af4611319565b73ffffffffffffffffffffffffffffffffffffffff1614611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614a2c565b60405180910390fd5b8051825114611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614c2c565b60405180910390fd5b60005b8251811015611c7157818181518110611bd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160126000858481518110611c18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611c699061501b565b915050611b91565b505050565b611c8184848461216e565b611c8d84848484612c22565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614aec565b60405180910390fd5b50505050565b6060611cdd826120a6565b611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390614a4c565b60405180910390fd5b6000611d26612db9565b90506000815111611d465760405180602001604052806000815250611d71565b80611d5084612e4b565b604051602001611d619291906147a4565b6040516020818303038152906040525b915050919050565b611d816120b4565b73ffffffffffffffffffffffffffffffffffffffff16611d9f611319565b73ffffffffffffffffffffffffffffffffffffffff1614611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614a2c565b60405180910390fd5b8060108190555050565b611e076120b4565b73ffffffffffffffffffffffffffffffffffffffff16611e25611319565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614a2c565b60405180910390fd5b80600e8190555050565b600b5481565b6000611e9682612ff8565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f396120b4565b73ffffffffffffffffffffffffffffffffffffffff16611f57611319565b73ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614a2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612014906148cc565b60405180910390fd5b61202681612b40565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061217982612979565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121a06120b4565b73ffffffffffffffffffffffffffffffffffffffff1614806121fc57506121c56120b4565b73ffffffffffffffffffffffffffffffffffffffff166121e484610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612218575061221782600001516122126120b4565b611e9d565b5b90508061225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614a8c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c390614a0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561233c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123339061492c565b60405180910390fd5b61234985858560016130e1565b61235960008484600001516120bc565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123c79190614e71565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661246b9190614da4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846125719190614dea565b9050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126b7576125e7816120a6565b156126b6576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506007600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461271f86868660016130e7565b505050505050565b6000600b54905060008211612771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612768906149ac565b60405180910390fd5b6000600183836127819190614dea565b61278b9190614ea5565b9050600160025461279c9190614ea5565b8111156127b55760016002546127b29190614ea5565b90505b6127be816120a6565b6127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490614b8c565b60405180910390fd5b60008290505b81811161296057600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561294d57600061288082612979565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806129589061501b565b915050612803565b5060018161296e9190614dea565b600b81905550505050565b612981613635565b61298a826120a6565b6129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c0906148ec565b60405180910390fd5b600060045483106129f1576001600454846129e49190614ea5565b6129ee9190614dea565b90505b60008390505b818110612aff576000600760008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aeb57809350505050612b3b565b508080612af790614fbf565b9150506129f7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3290614bcc565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c1e8282604051806020016040528060008152506130ed565b5050565b6000612c438473ffffffffffffffffffffffffffffffffffffffff16612029565b15612dac578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6c6120b4565b8786866040518563ffffffff1660e01b8152600401612c8e9493929190614803565b602060405180830381600087803b158015612ca857600080fd5b505af1925050508015612cd957506040513d601f19601f82011682018060405250810190612cd69190613b0f565b60015b612d5c573d8060008114612d09576040519150601f19603f3d011682016040523d82523d6000602084013e612d0e565b606091505b50600081511415612d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4b90614aec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db1565b600190505b949350505050565b606060148054612dc890614fe9565b80601f0160208091040260200160405190810160405280929190818152602001828054612df490614fe9565b8015612e415780601f10612e1657610100808354040283529160200191612e41565b820191906000526020600020905b815481529060010190602001808311612e2457829003601f168201915b5050505050905090565b60606000821415612e93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff3565b600082905060005b60008214612ec5578080612eae9061501b565b915050600a82612ebe9190614e40565b9150612e9b565b60008167ffffffffffffffff811115612f07577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f395781602001600182028036833780820191505090505b5090505b60008514612fec57600182612f529190614ea5565b9150600a85612f619190615064565b6030612f6d9190614dea565b60f81b818381518110612fa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fe59190614e40565b9450612f3d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613069576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130609061494c565b60405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315b90614b4c565b60405180910390fd5b61316d816120a6565b156131ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a490614b2c565b60405180910390fd5b6004548311156131f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e990614c0c565b60405180910390fd5b6131ff60008583866130e1565b6000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516132fc9190614da4565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133239190614da4565b6fffffffffffffffffffffffffffffffff16815250600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506007600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561359257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135326000888488612c22565b613571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356890614aec565b60405180910390fd5b818061357c9061501b565b925050808061358a9061501b565b9150506134c1565b50806001819055506135a760008785886130e7565b505050505050565b8280546135bb90614fe9565b90600052602060002090601f0160209004810192826135dd5760008555613624565b82601f106135f657803560ff1916838001178555613624565b82800160010185558215613624579182015b82811115613623578235825591602001919060010190613608565b5b509050613631919061366f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613688576000816000905550600101613670565b5090565b600061369f61369a84614cce565b614c9d565b905080838252602082019050828560208602820111156136be57600080fd5b60005b858110156136ee57816136d488826137a2565b8452602084019350602083019250506001810190506136c1565b5050509392505050565b600061370b61370684614cfa565b614c9d565b9050808382526020820190508285602086028201111561372a57600080fd5b60005b8581101561375a578161374088826138be565b84526020840193506020830192505060018101905061372d565b5050509392505050565b600061377761377284614d26565b614c9d565b90508281526020810184848401111561378f57600080fd5b61379a848285614f7d565b509392505050565b6000813590506137b181615162565b92915050565b600082601f8301126137c857600080fd5b81356137d884826020860161368c565b91505092915050565b600082601f8301126137f257600080fd5b81356138028482602086016136f8565b91505092915050565b60008135905061381a81615179565b92915050565b60008135905061382f81615190565b92915050565b60008151905061384481615190565b92915050565b600082601f83011261385b57600080fd5b813561386b848260208601613764565b91505092915050565b60008083601f84011261388657600080fd5b8235905067ffffffffffffffff81111561389f57600080fd5b6020830191508360018202830111156138b757600080fd5b9250929050565b6000813590506138cd816151a7565b92915050565b6000602082840312156138e557600080fd5b60006138f3848285016137a2565b91505092915050565b6000806040838503121561390f57600080fd5b600061391d858286016137a2565b925050602061392e858286016137a2565b9150509250929050565b60008060006060848603121561394d57600080fd5b600061395b868287016137a2565b935050602061396c868287016137a2565b925050604061397d868287016138be565b9150509250925092565b6000806000806080858703121561399d57600080fd5b60006139ab878288016137a2565b94505060206139bc878288016137a2565b93505060406139cd878288016138be565b925050606085013567ffffffffffffffff8111156139ea57600080fd5b6139f68782880161384a565b91505092959194509250565b60008060408385031215613a1557600080fd5b6000613a23858286016137a2565b9250506020613a348582860161380b565b9150509250929050565b60008060408385031215613a5157600080fd5b6000613a5f858286016137a2565b9250506020613a70858286016138be565b9150509250929050565b60008060408385031215613a8d57600080fd5b600083013567ffffffffffffffff811115613aa757600080fd5b613ab3858286016137b7565b925050602083013567ffffffffffffffff811115613ad057600080fd5b613adc858286016137e1565b9150509250929050565b600060208284031215613af857600080fd5b6000613b0684828501613820565b91505092915050565b600060208284031215613b2157600080fd5b6000613b2f84828501613835565b91505092915050565b60008060208385031215613b4b57600080fd5b600083013567ffffffffffffffff811115613b6557600080fd5b613b7185828601613874565b92509250509250929050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138be565b91505092915050565b613baf81614ed9565b82525050565b613bbe81614ed9565b82525050565b613bcd81614eeb565b82525050565b6000613bde82614d56565b613be88185614d6c565b9350613bf8818560208601614f8c565b613c0181615151565b840191505092915050565b6000613c1782614d61565b613c218185614d88565b9350613c31818560208601614f8c565b613c3a81615151565b840191505092915050565b6000613c5082614d61565b613c5a8185614d99565b9350613c6a818560208601614f8c565b80840191505092915050565b6000613c83602283614d88565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ce9601783614d88565b91507f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006000830152602082019050919050565b6000613d29602683614d88565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d8f602a83614d88565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613df5602383614d88565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e5b602583614d88565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ec1603183614d88565b91507f455243373231413a206e756d626572206d696e74656420717565727920666f7260008301527f20746865207a65726f20616464726573730000000000000000000000000000006020830152604082019050919050565b6000613f27601e83614d88565b91507f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006000830152602082019050919050565b6000613f67603983614d88565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b6000613fcd601883614d88565b91507f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006000830152602082019050919050565b600061400d602b83614d88565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000614073601283614d88565b91507f72656163686564206d617820737570706c7900000000000000000000000000006000830152602082019050919050565b60006140b3602683614d88565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614119600583614d99565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614159602083614d88565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614199602f83614d88565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141ff601a83614d88565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061423f603283614d88565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006142a5602283614d88565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061430b600083614d7d565b9150600082019050919050565b6000614325601083614d88565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614365603383614d88565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006143cb601683614d88565b91507f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006000830152602082019050919050565b600061440b601d83614d88565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b600061444b602183614d88565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144b1602e83614d88565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000614517602683614d88565b91507f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008301527f6c65616e757000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061457d601f83614d88565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b60006145bd602f83614d88565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614623602d83614d88565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000614689602283614d88565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146ef602883614d88565b91507f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008301527f73206c656e6774680000000000000000000000000000000000000000000000006020830152604082019050919050565b60408201600082015161475e6000850182613ba6565b5060208201516147716020850182614786565b50505050565b61478081614f5f565b82525050565b61478f81614f69565b82525050565b61479e81614f69565b82525050565b60006147b08285613c45565b91506147bc8284613c45565b91506147c78261410c565b91508190509392505050565b60006147de826142fe565b9150819050919050565b60006020820190506147fd6000830184613bb5565b92915050565b60006080820190506148186000830187613bb5565b6148256020830186613bb5565b6148326040830185614777565b81810360608301526148448184613bd3565b905095945050505050565b60006020820190506148646000830184613bc4565b92915050565b600060208201905081810360008301526148848184613c0c565b905092915050565b600060208201905081810360008301526148a581613c76565b9050919050565b600060208201905081810360008301526148c581613cdc565b9050919050565b600060208201905081810360008301526148e581613d1c565b9050919050565b6000602082019050818103600083015261490581613d82565b9050919050565b6000602082019050818103600083015261492581613de8565b9050919050565b6000602082019050818103600083015261494581613e4e565b9050919050565b6000602082019050818103600083015261496581613eb4565b9050919050565b6000602082019050818103600083015261498581613f1a565b9050919050565b600060208201905081810360008301526149a581613f5a565b9050919050565b600060208201905081810360008301526149c581613fc0565b9050919050565b600060208201905081810360008301526149e581614000565b9050919050565b60006020820190508181036000830152614a0581614066565b9050919050565b60006020820190508181036000830152614a25816140a6565b9050919050565b60006020820190508181036000830152614a458161414c565b9050919050565b60006020820190508181036000830152614a658161418c565b9050919050565b60006020820190508181036000830152614a85816141f2565b9050919050565b60006020820190508181036000830152614aa581614232565b9050919050565b60006020820190508181036000830152614ac581614298565b9050919050565b60006020820190508181036000830152614ae581614318565b9050919050565b60006020820190508181036000830152614b0581614358565b9050919050565b60006020820190508181036000830152614b25816143be565b9050919050565b60006020820190508181036000830152614b45816143fe565b9050919050565b60006020820190508181036000830152614b658161443e565b9050919050565b60006020820190508181036000830152614b85816144a4565b9050919050565b60006020820190508181036000830152614ba58161450a565b9050919050565b60006020820190508181036000830152614bc581614570565b9050919050565b60006020820190508181036000830152614be5816145b0565b9050919050565b60006020820190508181036000830152614c0581614616565b9050919050565b60006020820190508181036000830152614c258161467c565b9050919050565b60006020820190508181036000830152614c45816146e2565b9050919050565b6000604082019050614c616000830184614748565b92915050565b6000602082019050614c7c6000830184614777565b92915050565b6000602082019050614c976000830184614795565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614cc457614cc3615122565b5b8060405250919050565b600067ffffffffffffffff821115614ce957614ce8615122565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d1557614d14615122565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d4157614d40615122565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614daf82614f23565b9150614dba83614f23565b9250826fffffffffffffffffffffffffffffffff03821115614ddf57614dde615095565b5b828201905092915050565b6000614df582614f5f565b9150614e0083614f5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e3557614e34615095565b5b828201905092915050565b6000614e4b82614f5f565b9150614e5683614f5f565b925082614e6657614e656150c4565b5b828204905092915050565b6000614e7c82614f23565b9150614e8783614f23565b925082821015614e9a57614e99615095565b5b828203905092915050565b6000614eb082614f5f565b9150614ebb83614f5f565b925082821015614ece57614ecd615095565b5b828203905092915050565b6000614ee482614f3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614faa578082015181840152602081019050614f8f565b83811115614fb9576000848401525b50505050565b6000614fca82614f5f565b91506000821415614fde57614fdd615095565b5b600182039050919050565b6000600282049050600182168061500157607f821691505b60208210811415615015576150146150f3565b5b50919050565b600061502682614f5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561505957615058615095565b5b600182019050919050565b600061506f82614f5f565b915061507a83614f5f565b92508261508a576150896150c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61516b81614ed9565b811461517657600080fd5b50565b61518281614eeb565b811461518d57600080fd5b50565b61519981614ef7565b81146151a457600080fd5b50565b6151b081614f5f565b81146151bb57600080fd5b5056fea26469706673582212202690f6fac197d4e824e8a0cba0ba5ea60d4bc2ea486e7c00898ccb9b4322caf364736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000022b

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 25
Arg [1] : collectionSize_ (uint256): 5555
Arg [2] : collectionSizeFree_ (uint256): 555

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [2] : 000000000000000000000000000000000000000000000000000000000000022b


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.