ETH Price: $3,311.90 (-2.91%)
Gas: 14 Gwei

Token

MiaKhalifaDAO (MiaDAO)
 

Overview

Max Total Supply

1,111 MiaDAO

Holders

627

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MiaDAO
0x04fe358b0a86c1e584b9869bc555809b98d52229
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:
MiaKhalifaDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

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

   /**
   * @dev See maxBatchSize Functionality..
   */
  function changeMaxBatchSize(uint256 newBatch) public{
    maxBatchSize = newBatch;
  }

  function changeCollectionSize(uint256 newCollectionSize) public{
    collectionSize = newCollectionSize;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/DelphineDAO.sol



pragma solidity ^0.8.0;





contract MiaKhalifaDAO is Ownable, ERC721A, ReentrancyGuard {

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 amountForAuctionAndDev_,
    uint256 amountForDevs_
  ) ERC721A("MiaKhalifaDAO", "MiaDAO", maxBatchSize_, collectionSize_) {
    require(amountForAuctionAndDev_ <= collectionSize_, "larger collection size needed" );
  }
    
    uint256 pricePer = 0.02 ether;
    uint256 totalCost;
    address payable private ownerGirl = payable(0x11360F0c5552443b33720a44408aba01a809905e);


  function mint(uint256 quantity) external payable {
    require(quantity <= 10, 'Cant mint more than 10');
    if (totalSupply() > 555){
        totalCost = quantity * pricePer;
    }
    if (totalSupply() <= 555){
        totalCost = 0;
    }
    require(totalSupply() + quantity <= 1111);
    require(msg.value >= totalCost, 'Not enough Eth sent');
    _safeMint(msg.sender, quantity);
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    ownerGirl.transfer(balance);
  }

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

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

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

Contract Security Audit

Contract ABI

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

608060405260006001556000600a5566470de4df820000600c557311360f0c5552443b33720a44408aba01a809905e600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007b57600080fd5b5060405162004f4c38038062004f4c8339818101604052810190620000a19190620003ea565b6040518060400160405280600d81526020017f4d69614b68616c69666144414f000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d696144414f000000000000000000000000000000000000000000000000000081525085856200012f620001236200025760201b60201c565b6200025f60201b60201c565b6000811162000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c9062000515565b60405180910390fd5b60008211620001bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b290620004d1565b60405180910390fd5b8360049080519060200190620001d392919062000323565b508260059080519060200190620001ec92919062000323565b508160038190555080600281905550505050506001600b81905550828211156200024d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024490620004f3565b60405180910390fd5b505050506200069d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003319062000552565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b600081519050620003e48162000683565b92915050565b60008060008060808587031215620004075762000406620005b7565b5b60006200041787828801620003d3565b94505060206200042a87828801620003d3565b93505060406200043d87828801620003d3565b92505060606200045087828801620003d3565b91505092959194509250565b60006200046b60278362000537565b91506200047882620005bc565b604082019050919050565b600062000492601d8362000537565b91506200049f826200060b565b602082019050919050565b6000620004b9602e8362000537565b9150620004c68262000634565b604082019050919050565b60006020820190508181036000830152620004ec816200045c565b9050919050565b600060208201905081810360008301526200050e8162000483565b9050919050565b600060208201905081810360008301526200053081620004aa565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200056b57607f821691505b6020821081141562000582576200058162000588565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6200068e8162000548565b81146200069a57600080fd5b50565b61489f80620006ad6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba01461062d578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2576101c2565b8063a22cb46514610587578063ac446002146105b0578063b88d4fde146105c7578063c87b56dd146105f0576101c2565b80639231ab2a116100d15780639231ab2a146104da57806395d89b41146105175780639801b11c14610542578063a0712d681461056b576101c2565b806370a082311461045b578063715018a6146104985780638da5cb5b146104af576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461038f57806355f804b3146103cc5780636352211e146103f55780636ebfd34d14610432576101c2565b80632f745c59146103125780633ccfd60b1461034f57806342842e0e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d20fb60146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613173565b6106fb565b6040516101fb91906137d8565b60405180910390f35b34801561021057600080fd5b50610219610845565b60405161022691906137f3565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061321a565b6108d7565b6040516102639190613771565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613133565b61095c565b005b3480156102a157600080fd5b506102aa610a75565b6040516102b79190613b90565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061301d565b610a7f565b005b3480156102f557600080fd5b50610310600480360381019061030b919061321a565b610a8f565b005b34801561031e57600080fd5b5061033960048036038101906103349190613133565b610b6d565b6040516103469190613b90565b60405180910390f35b34801561035b57600080fd5b50610364610d6b565b005b34801561037257600080fd5b5061038d6004803603810190610388919061301d565b610e58565b005b34801561039b57600080fd5b506103b660048036038101906103b1919061321a565b610e78565b6040516103c39190613b90565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee91906131cd565b610ecb565b005b34801561040157600080fd5b5061041c6004803603810190610417919061321a565b610f5d565b6040516104299190613771565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061321a565b610f73565b005b34801561046757600080fd5b50610482600480360381019061047d9190612fb0565b610f7d565b60405161048f9190613b90565b60405180910390f35b3480156104a457600080fd5b506104ad611066565b005b3480156104bb57600080fd5b506104c46110ee565b6040516104d19190613771565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061321a565b611117565b60405161050e9190613b75565b60405180910390f35b34801561052357600080fd5b5061052c61112f565b60405161053991906137f3565b60405180910390f35b34801561054e57600080fd5b506105696004803603810190610564919061321a565b6111c1565b005b6105856004803603810190610580919061321a565b6111cb565b005b34801561059357600080fd5b506105ae60048036038101906105a991906130f3565b6112c1565b005b3480156105bc57600080fd5b506105c5611442565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613070565b6115c3565b005b3480156105fc57600080fd5b506106176004803603810190610612919061321a565b61161f565b60405161062491906137f3565b60405180910390f35b34801561063957600080fd5b506106426116c6565b60405161064f9190613b90565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612fb0565b6116cc565b60405161068c9190613b90565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612fdd565b6116de565b6040516106c991906137d8565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612fb0565b611772565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d8261186a565b5b9050919050565b60606004805461085490613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613eee565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e2826118d4565b610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613b15565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906139f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76118e2565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206118e2565b6116de565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906138f5565b60405180910390fd5b610a708383836118ea565b505050565b6000600154905090565b610a8a83838361199c565b505050565b610a976118e2565b73ffffffffffffffffffffffffffffffffffffffff16610ab56110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613975565b60405180910390fd5b6002600b541415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613ad5565b60405180910390fd5b6002600b81905550610b6281611f55565b6001600b8190555050565b6000610b7883610f7d565b8210610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613815565b60405180910390fd5b6000610bc3610a75565b905060008060005b83811015610d29576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d155786841415610d06578195505050505050610d65565b8380610d1190613f51565b9450505b508080610d2190613f51565b915050610bcb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613a95565b60405180910390fd5b92915050565b610d736118e2565b73ffffffffffffffffffffffffffffffffffffffff16610d916110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613975565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e54573d6000803e3d6000fd5b5050565b610e73838383604051806020016040528060008152506115c3565b505050565b6000610e82610a75565b8210610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613895565b60405180910390fd5b819050919050565b610ed36118e2565b73ffffffffffffffffffffffffffffffffffffffff16610ef16110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613975565b60405180910390fd5b8181600f9190610f58929190612da4565b505050565b6000610f68826121a7565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613935565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61106e6118e2565b73ffffffffffffffffffffffffffffffffffffffff1661108c6110ee565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613975565b60405180910390fd5b6110ec600061236e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61111f612e2a565b611128826121a7565b9050919050565b60606005805461113e90613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90613eee565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b8060028190555050565b600a81111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613855565b60405180910390fd5b61022b61121a610a75565b111561123557600c548161122e9190613d1c565b600d819055505b61022b611240610a75565b1161124e576000600d819055505b6104578161125a610a75565b6112649190613c95565b111561126f57600080fd5b600d543410156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b35565b60405180910390fd5b6112be3382612432565b50565b6112c96118e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906139b5565b60405180910390fd5b80600960006113446118e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f16118e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143691906137d8565b60405180910390a35050565b61144a6118e2565b73ffffffffffffffffffffffffffffffffffffffff166114686110ee565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613975565b60405180910390fd5b6002600b541415611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613ad5565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115329061375c565b60006040518083038185875af1925050503d806000811461156f576040519150601f19603f3d011682016040523d82523d6000602084013e611574565b606091505b50509050806115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613a15565b60405180910390fd5b506001600b81905550565b6115ce84848461199c565b6115da84848484612450565b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613a35565b60405180910390fd5b50505050565b606061162a826118d4565b611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613995565b60405180910390fd5b60006116736125e7565b9050600081511161169357604051806020016040528060008152506116be565b8061169d84612679565b6040516020016116ae929190613738565b6040516020818303038152906040525b915050919050565b600a5481565b60006116d7826127da565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177a6118e2565b73ffffffffffffffffffffffffffffffffffffffff166117986110ee565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613835565b60405180910390fd5b6118678161236e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119a7826121a7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ce6118e2565b73ffffffffffffffffffffffffffffffffffffffff161480611a2a57506119f36118e2565b73ffffffffffffffffffffffffffffffffffffffff16611a12846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a465750611a458260000151611a406118e2565b6116de565b5b905080611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906139d5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906138b5565b60405180910390fd5b611b7785858560016128c3565b611b8760008484600001516118ea565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bf59190613d76565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c999190613c4f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d9f9190613c95565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ee557611e15816118d4565b15611ee4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f4d86868660016128c9565b505050505050565b6000600a54905060008211611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613915565b60405180910390fd5b600060018383611faf9190613c95565b611fb99190613daa565b90506001600254611fca9190613daa565b811115611fe3576001600254611fe09190613daa565b90505b611fec816118d4565b61202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613ab5565b60405180910390fd5b60008290505b81811161218e57600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561217b5760006120ae826121a7565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061218690613f51565b915050612031565b5060018161219c9190613c95565b600a81905550505050565b6121af612e2a565b6121b8826118d4565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613875565b60405180910390fd5b6000600354831061221f576001600354846122129190613daa565b61221c9190613c95565b90505b60008390505b81811061232d576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231957809350505050612369565b50808061232590613ec4565b915050612225565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613af5565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244c8282604051806020016040528060008152506128cf565b5050565b60006124718473ffffffffffffffffffffffffffffffffffffffff16612d91565b156125da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261249a6118e2565b8786866040518563ffffffff1660e01b81526004016124bc949392919061378c565b602060405180830381600087803b1580156124d657600080fd5b505af192505050801561250757506040513d601f19601f8201168201806040525081019061250491906131a0565b60015b61258a573d8060008114612537576040519150601f19603f3d011682016040523d82523d6000602084013e61253c565b606091505b50600081511415612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613a35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125df565b600190505b949350505050565b6060600f80546125f690613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461262290613eee565b801561266f5780601f106126445761010080835404028352916020019161266f565b820191906000526020600020905b81548152906001019060200180831161265257829003601f168201915b5050505050905090565b606060008214156126c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d5565b600082905060005b600082146126f35780806126dc90613f51565b915050600a826126ec9190613ceb565b91506126c9565b60008167ffffffffffffffff81111561270f5761270e614087565b5b6040519080825280601f01601f1916602001820160405280156127415781602001600182028036833780820191505090505b5090505b600085146127ce5760018261275a9190613daa565b9150600a856127699190613f9a565b60306127759190613c95565b60f81b81838151811061278b5761278a614058565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c79190613ceb565b9450612745565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612842906138d5565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613a75565b60405180910390fd5b61294f816118d4565b1561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690613a55565b60405180910390fd5b6003548311156129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613b55565b60405180910390fd5b6129e160008583866128c3565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ade9190613c4f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b059190613c4f565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d7457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d146000888488612450565b612d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4a90613a35565b60405180910390fd5b8180612d5e90613f51565b9250508080612d6c90613f51565b915050612ca3565b5080600181905550612d8960008785886128c9565b505050505050565b600080823b905060008111915050919050565b828054612db090613eee565b90600052602060002090601f016020900481019282612dd25760008555612e19565b82601f10612deb57803560ff1916838001178555612e19565b82800160010185558215612e19579182015b82811115612e18578235825591602001919060010190612dfd565b5b509050612e269190612e64565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e7d576000816000905550600101612e65565b5090565b6000612e94612e8f84613bd0565b613bab565b905082815260208101848484011115612eb057612eaf6140c5565b5b612ebb848285613e82565b509392505050565b600081359050612ed28161480d565b92915050565b600081359050612ee781614824565b92915050565b600081359050612efc8161483b565b92915050565b600081519050612f118161483b565b92915050565b600082601f830112612f2c57612f2b6140bb565b5b8135612f3c848260208601612e81565b91505092915050565b60008083601f840112612f5b57612f5a6140bb565b5b8235905067ffffffffffffffff811115612f7857612f776140b6565b5b602083019150836001820283011115612f9457612f936140c0565b5b9250929050565b600081359050612faa81614852565b92915050565b600060208284031215612fc657612fc56140cf565b5b6000612fd484828501612ec3565b91505092915050565b60008060408385031215612ff457612ff36140cf565b5b600061300285828601612ec3565b925050602061301385828601612ec3565b9150509250929050565b600080600060608486031215613036576130356140cf565b5b600061304486828701612ec3565b935050602061305586828701612ec3565b925050604061306686828701612f9b565b9150509250925092565b6000806000806080858703121561308a576130896140cf565b5b600061309887828801612ec3565b94505060206130a987828801612ec3565b93505060406130ba87828801612f9b565b925050606085013567ffffffffffffffff8111156130db576130da6140ca565b5b6130e787828801612f17565b91505092959194509250565b6000806040838503121561310a576131096140cf565b5b600061311885828601612ec3565b925050602061312985828601612ed8565b9150509250929050565b6000806040838503121561314a576131496140cf565b5b600061315885828601612ec3565b925050602061316985828601612f9b565b9150509250929050565b600060208284031215613189576131886140cf565b5b600061319784828501612eed565b91505092915050565b6000602082840312156131b6576131b56140cf565b5b60006131c484828501612f02565b91505092915050565b600080602083850312156131e4576131e36140cf565b5b600083013567ffffffffffffffff811115613202576132016140ca565b5b61320e85828601612f45565b92509250509250929050565b6000602082840312156132305761322f6140cf565b5b600061323e84828501612f9b565b91505092915050565b61325081613dde565b82525050565b61325f81613dde565b82525050565b61326e81613df0565b82525050565b600061327f82613c01565b6132898185613c17565b9350613299818560208601613e91565b6132a2816140d4565b840191505092915050565b60006132b882613c0c565b6132c28185613c33565b93506132d2818560208601613e91565b6132db816140d4565b840191505092915050565b60006132f182613c0c565b6132fb8185613c44565b935061330b818560208601613e91565b80840191505092915050565b6000613324602283613c33565b915061332f826140e5565b604082019050919050565b6000613347602683613c33565b915061335282614134565b604082019050919050565b600061336a601683613c33565b915061337582614183565b602082019050919050565b600061338d602a83613c33565b9150613398826141ac565b604082019050919050565b60006133b0602383613c33565b91506133bb826141fb565b604082019050919050565b60006133d3602583613c33565b91506133de8261424a565b604082019050919050565b60006133f6603183613c33565b915061340182614299565b604082019050919050565b6000613419603983613c33565b9150613424826142e8565b604082019050919050565b600061343c601883613c33565b915061344782614337565b602082019050919050565b600061345f602b83613c33565b915061346a82614360565b604082019050919050565b6000613482602683613c33565b915061348d826143af565b604082019050919050565b60006134a5602083613c33565b91506134b0826143fe565b602082019050919050565b60006134c8602f83613c33565b91506134d382614427565b604082019050919050565b60006134eb601a83613c33565b91506134f682614476565b602082019050919050565b600061350e603283613c33565b91506135198261449f565b604082019050919050565b6000613531602283613c33565b915061353c826144ee565b604082019050919050565b6000613554600083613c28565b915061355f8261453d565b600082019050919050565b6000613577601083613c33565b915061358282614540565b602082019050919050565b600061359a603383613c33565b91506135a582614569565b604082019050919050565b60006135bd601d83613c33565b91506135c8826145b8565b602082019050919050565b60006135e0602183613c33565b91506135eb826145e1565b604082019050919050565b6000613603602e83613c33565b915061360e82614630565b604082019050919050565b6000613626602683613c33565b91506136318261467f565b604082019050919050565b6000613649601f83613c33565b9150613654826146ce565b602082019050919050565b600061366c602f83613c33565b9150613677826146f7565b604082019050919050565b600061368f602d83613c33565b915061369a82614746565b604082019050919050565b60006136b2601383613c33565b91506136bd82614795565b602082019050919050565b60006136d5602283613c33565b91506136e0826147be565b604082019050919050565b6040820160008201516137016000850182613247565b5060208201516137146020850182613729565b50505050565b61372381613e64565b82525050565b61373281613e6e565b82525050565b600061374482856132e6565b915061375082846132e6565b91508190509392505050565b600061376782613547565b9150819050919050565b60006020820190506137866000830184613256565b92915050565b60006080820190506137a16000830187613256565b6137ae6020830186613256565b6137bb604083018561371a565b81810360608301526137cd8184613274565b905095945050505050565b60006020820190506137ed6000830184613265565b92915050565b6000602082019050818103600083015261380d81846132ad565b905092915050565b6000602082019050818103600083015261382e81613317565b9050919050565b6000602082019050818103600083015261384e8161333a565b9050919050565b6000602082019050818103600083015261386e8161335d565b9050919050565b6000602082019050818103600083015261388e81613380565b9050919050565b600060208201905081810360008301526138ae816133a3565b9050919050565b600060208201905081810360008301526138ce816133c6565b9050919050565b600060208201905081810360008301526138ee816133e9565b9050919050565b6000602082019050818103600083015261390e8161340c565b9050919050565b6000602082019050818103600083015261392e8161342f565b9050919050565b6000602082019050818103600083015261394e81613452565b9050919050565b6000602082019050818103600083015261396e81613475565b9050919050565b6000602082019050818103600083015261398e81613498565b9050919050565b600060208201905081810360008301526139ae816134bb565b9050919050565b600060208201905081810360008301526139ce816134de565b9050919050565b600060208201905081810360008301526139ee81613501565b9050919050565b60006020820190508181036000830152613a0e81613524565b9050919050565b60006020820190508181036000830152613a2e8161356a565b9050919050565b60006020820190508181036000830152613a4e8161358d565b9050919050565b60006020820190508181036000830152613a6e816135b0565b9050919050565b60006020820190508181036000830152613a8e816135d3565b9050919050565b60006020820190508181036000830152613aae816135f6565b9050919050565b60006020820190508181036000830152613ace81613619565b9050919050565b60006020820190508181036000830152613aee8161363c565b9050919050565b60006020820190508181036000830152613b0e8161365f565b9050919050565b60006020820190508181036000830152613b2e81613682565b9050919050565b60006020820190508181036000830152613b4e816136a5565b9050919050565b60006020820190508181036000830152613b6e816136c8565b9050919050565b6000604082019050613b8a60008301846136eb565b92915050565b6000602082019050613ba5600083018461371a565b92915050565b6000613bb5613bc6565b9050613bc18282613f20565b919050565b6000604051905090565b600067ffffffffffffffff821115613beb57613bea614087565b5b613bf4826140d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5a82613e28565b9150613c6583613e28565b9250826fffffffffffffffffffffffffffffffff03821115613c8a57613c89613fcb565b5b828201905092915050565b6000613ca082613e64565b9150613cab83613e64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce057613cdf613fcb565b5b828201905092915050565b6000613cf682613e64565b9150613d0183613e64565b925082613d1157613d10613ffa565b5b828204905092915050565b6000613d2782613e64565b9150613d3283613e64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6b57613d6a613fcb565b5b828202905092915050565b6000613d8182613e28565b9150613d8c83613e28565b925082821015613d9f57613d9e613fcb565b5b828203905092915050565b6000613db582613e64565b9150613dc083613e64565b925082821015613dd357613dd2613fcb565b5b828203905092915050565b6000613de982613e44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613eaf578082015181840152602081019050613e94565b83811115613ebe576000848401525b50505050565b6000613ecf82613e64565b91506000821415613ee357613ee2613fcb565b5b600182039050919050565b60006002820490506001821680613f0657607f821691505b60208210811415613f1a57613f19614029565b5b50919050565b613f29826140d4565b810181811067ffffffffffffffff82111715613f4857613f47614087565b5b80604052505050565b6000613f5c82613e64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8f57613f8e613fcb565b5b600182019050919050565b6000613fa582613e64565b9150613fb083613e64565b925082613fc057613fbf613ffa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204574682073656e7400000000000000000000000000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61481681613dde565b811461482157600080fd5b50565b61482d81613df0565b811461483857600080fd5b50565b61484481613dfc565b811461484f57600080fd5b50565b61485b81613e64565b811461486657600080fd5b5056fea2646970667358221220e490df69bd9ca50e1831a1ac82177e826fee459b0b085a00bd7a727c80d7408964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000045700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d7224ba011610064578063d7224ba01461062d578063dc33e68114610658578063e985e9c514610695578063f2fde38b146106d2576101c2565b8063a22cb46514610587578063ac446002146105b0578063b88d4fde146105c7578063c87b56dd146105f0576101c2565b80639231ab2a116100d15780639231ab2a146104da57806395d89b41146105175780639801b11c14610542578063a0712d681461056b576101c2565b806370a082311461045b578063715018a6146104985780638da5cb5b146104af576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461038f57806355f804b3146103cc5780636352211e146103f55780636ebfd34d14610432576101c2565b80632f745c59146103125780633ccfd60b1461034f57806342842e0e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632d20fb60146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613173565b6106fb565b6040516101fb91906137d8565b60405180910390f35b34801561021057600080fd5b50610219610845565b60405161022691906137f3565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061321a565b6108d7565b6040516102639190613771565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190613133565b61095c565b005b3480156102a157600080fd5b506102aa610a75565b6040516102b79190613b90565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e2919061301d565b610a7f565b005b3480156102f557600080fd5b50610310600480360381019061030b919061321a565b610a8f565b005b34801561031e57600080fd5b5061033960048036038101906103349190613133565b610b6d565b6040516103469190613b90565b60405180910390f35b34801561035b57600080fd5b50610364610d6b565b005b34801561037257600080fd5b5061038d6004803603810190610388919061301d565b610e58565b005b34801561039b57600080fd5b506103b660048036038101906103b1919061321a565b610e78565b6040516103c39190613b90565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee91906131cd565b610ecb565b005b34801561040157600080fd5b5061041c6004803603810190610417919061321a565b610f5d565b6040516104299190613771565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061321a565b610f73565b005b34801561046757600080fd5b50610482600480360381019061047d9190612fb0565b610f7d565b60405161048f9190613b90565b60405180910390f35b3480156104a457600080fd5b506104ad611066565b005b3480156104bb57600080fd5b506104c46110ee565b6040516104d19190613771565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc919061321a565b611117565b60405161050e9190613b75565b60405180910390f35b34801561052357600080fd5b5061052c61112f565b60405161053991906137f3565b60405180910390f35b34801561054e57600080fd5b506105696004803603810190610564919061321a565b6111c1565b005b6105856004803603810190610580919061321a565b6111cb565b005b34801561059357600080fd5b506105ae60048036038101906105a991906130f3565b6112c1565b005b3480156105bc57600080fd5b506105c5611442565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613070565b6115c3565b005b3480156105fc57600080fd5b506106176004803603810190610612919061321a565b61161f565b60405161062491906137f3565b60405180910390f35b34801561063957600080fd5b506106426116c6565b60405161064f9190613b90565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612fb0565b6116cc565b60405161068c9190613b90565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612fdd565b6116de565b6040516106c991906137d8565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612fb0565b611772565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d8261186a565b5b9050919050565b60606004805461085490613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461088090613eee565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e2826118d4565b610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613b15565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096782610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf906139f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f76118e2565b73ffffffffffffffffffffffffffffffffffffffff161480610a265750610a2581610a206118e2565b6116de565b5b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906138f5565b60405180910390fd5b610a708383836118ea565b505050565b6000600154905090565b610a8a83838361199c565b505050565b610a976118e2565b73ffffffffffffffffffffffffffffffffffffffff16610ab56110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613975565b60405180910390fd5b6002600b541415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613ad5565b60405180910390fd5b6002600b81905550610b6281611f55565b6001600b8190555050565b6000610b7883610f7d565b8210610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613815565b60405180910390fd5b6000610bc3610a75565b905060008060005b83811015610d29576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d155786841415610d06578195505050505050610d65565b8380610d1190613f51565b9450505b508080610d2190613f51565b915050610bcb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613a95565b60405180910390fd5b92915050565b610d736118e2565b73ffffffffffffffffffffffffffffffffffffffff16610d916110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613975565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e54573d6000803e3d6000fd5b5050565b610e73838383604051806020016040528060008152506115c3565b505050565b6000610e82610a75565b8210610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90613895565b60405180910390fd5b819050919050565b610ed36118e2565b73ffffffffffffffffffffffffffffffffffffffff16610ef16110ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613975565b60405180910390fd5b8181600f9190610f58929190612da4565b505050565b6000610f68826121a7565b600001519050919050565b8060038190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe590613935565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61106e6118e2565b73ffffffffffffffffffffffffffffffffffffffff1661108c6110ee565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990613975565b60405180910390fd5b6110ec600061236e565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61111f612e2a565b611128826121a7565b9050919050565b60606005805461113e90613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90613eee565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b5050505050905090565b8060028190555050565b600a81111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613855565b60405180910390fd5b61022b61121a610a75565b111561123557600c548161122e9190613d1c565b600d819055505b61022b611240610a75565b1161124e576000600d819055505b6104578161125a610a75565b6112649190613c95565b111561126f57600080fd5b600d543410156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90613b35565b60405180910390fd5b6112be3382612432565b50565b6112c96118e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906139b5565b60405180910390fd5b80600960006113446118e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f16118e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143691906137d8565b60405180910390a35050565b61144a6118e2565b73ffffffffffffffffffffffffffffffffffffffff166114686110ee565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590613975565b60405180910390fd5b6002600b541415611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90613ad5565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115329061375c565b60006040518083038185875af1925050503d806000811461156f576040519150601f19603f3d011682016040523d82523d6000602084013e611574565b606091505b50509050806115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90613a15565b60405180910390fd5b506001600b81905550565b6115ce84848461199c565b6115da84848484612450565b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613a35565b60405180910390fd5b50505050565b606061162a826118d4565b611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613995565b60405180910390fd5b60006116736125e7565b9050600081511161169357604051806020016040528060008152506116be565b8061169d84612679565b6040516020016116ae929190613738565b6040516020818303038152906040525b915050919050565b600a5481565b60006116d7826127da565b9050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177a6118e2565b73ffffffffffffffffffffffffffffffffffffffff166117986110ee565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613975565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590613835565b60405180910390fd5b6118678161236e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119a7826121a7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119ce6118e2565b73ffffffffffffffffffffffffffffffffffffffff161480611a2a57506119f36118e2565b73ffffffffffffffffffffffffffffffffffffffff16611a12846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a465750611a458260000151611a406118e2565b6116de565b5b905080611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906139d5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906138b5565b60405180910390fd5b611b7785858560016128c3565b611b8760008484600001516118ea565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bf59190613d76565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611c999190613c4f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611d9f9190613c95565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ee557611e15816118d4565b15611ee4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f4d86868660016128c9565b505050505050565b6000600a54905060008211611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613915565b60405180910390fd5b600060018383611faf9190613c95565b611fb99190613daa565b90506001600254611fca9190613daa565b811115611fe3576001600254611fe09190613daa565b90505b611fec816118d4565b61202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290613ab5565b60405180910390fd5b60008290505b81811161218e57600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561217b5760006120ae826121a7565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b808061218690613f51565b915050612031565b5060018161219c9190613c95565b600a81905550505050565b6121af612e2a565b6121b8826118d4565b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613875565b60405180910390fd5b6000600354831061221f576001600354846122129190613daa565b61221c9190613c95565b90505b60008390505b81811061232d576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231957809350505050612369565b50808061232590613ec4565b915050612225565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613af5565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244c8282604051806020016040528060008152506128cf565b5050565b60006124718473ffffffffffffffffffffffffffffffffffffffff16612d91565b156125da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261249a6118e2565b8786866040518563ffffffff1660e01b81526004016124bc949392919061378c565b602060405180830381600087803b1580156124d657600080fd5b505af192505050801561250757506040513d601f19601f8201168201806040525081019061250491906131a0565b60015b61258a573d8060008114612537576040519150601f19603f3d011682016040523d82523d6000602084013e61253c565b606091505b50600081511415612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257990613a35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125df565b600190505b949350505050565b6060600f80546125f690613eee565b80601f016020809104026020016040519081016040528092919081815260200182805461262290613eee565b801561266f5780601f106126445761010080835404028352916020019161266f565b820191906000526020600020905b81548152906001019060200180831161265257829003601f168201915b5050505050905090565b606060008214156126c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d5565b600082905060005b600082146126f35780806126dc90613f51565b915050600a826126ec9190613ceb565b91506126c9565b60008167ffffffffffffffff81111561270f5761270e614087565b5b6040519080825280601f01601f1916602001820160405280156127415781602001600182028036833780820191505090505b5090505b600085146127ce5760018261275a9190613daa565b9150600a856127699190613f9a565b60306127759190613c95565b60f81b81838151811061278b5761278a614058565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c79190613ceb565b9450612745565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612842906138d5565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90613a75565b60405180910390fd5b61294f816118d4565b1561298f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298690613a55565b60405180910390fd5b6003548311156129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613b55565b60405180910390fd5b6129e160008583866128c3565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612ade9190613c4f565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b059190613c4f565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d7457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d146000888488612450565b612d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4a90613a35565b60405180910390fd5b8180612d5e90613f51565b9250508080612d6c90613f51565b915050612ca3565b5080600181905550612d8960008785886128c9565b505050505050565b600080823b905060008111915050919050565b828054612db090613eee565b90600052602060002090601f016020900481019282612dd25760008555612e19565b82601f10612deb57803560ff1916838001178555612e19565b82800160010185558215612e19579182015b82811115612e18578235825591602001919060010190612dfd565b5b509050612e269190612e64565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e7d576000816000905550600101612e65565b5090565b6000612e94612e8f84613bd0565b613bab565b905082815260208101848484011115612eb057612eaf6140c5565b5b612ebb848285613e82565b509392505050565b600081359050612ed28161480d565b92915050565b600081359050612ee781614824565b92915050565b600081359050612efc8161483b565b92915050565b600081519050612f118161483b565b92915050565b600082601f830112612f2c57612f2b6140bb565b5b8135612f3c848260208601612e81565b91505092915050565b60008083601f840112612f5b57612f5a6140bb565b5b8235905067ffffffffffffffff811115612f7857612f776140b6565b5b602083019150836001820283011115612f9457612f936140c0565b5b9250929050565b600081359050612faa81614852565b92915050565b600060208284031215612fc657612fc56140cf565b5b6000612fd484828501612ec3565b91505092915050565b60008060408385031215612ff457612ff36140cf565b5b600061300285828601612ec3565b925050602061301385828601612ec3565b9150509250929050565b600080600060608486031215613036576130356140cf565b5b600061304486828701612ec3565b935050602061305586828701612ec3565b925050604061306686828701612f9b565b9150509250925092565b6000806000806080858703121561308a576130896140cf565b5b600061309887828801612ec3565b94505060206130a987828801612ec3565b93505060406130ba87828801612f9b565b925050606085013567ffffffffffffffff8111156130db576130da6140ca565b5b6130e787828801612f17565b91505092959194509250565b6000806040838503121561310a576131096140cf565b5b600061311885828601612ec3565b925050602061312985828601612ed8565b9150509250929050565b6000806040838503121561314a576131496140cf565b5b600061315885828601612ec3565b925050602061316985828601612f9b565b9150509250929050565b600060208284031215613189576131886140cf565b5b600061319784828501612eed565b91505092915050565b6000602082840312156131b6576131b56140cf565b5b60006131c484828501612f02565b91505092915050565b600080602083850312156131e4576131e36140cf565b5b600083013567ffffffffffffffff811115613202576132016140ca565b5b61320e85828601612f45565b92509250509250929050565b6000602082840312156132305761322f6140cf565b5b600061323e84828501612f9b565b91505092915050565b61325081613dde565b82525050565b61325f81613dde565b82525050565b61326e81613df0565b82525050565b600061327f82613c01565b6132898185613c17565b9350613299818560208601613e91565b6132a2816140d4565b840191505092915050565b60006132b882613c0c565b6132c28185613c33565b93506132d2818560208601613e91565b6132db816140d4565b840191505092915050565b60006132f182613c0c565b6132fb8185613c44565b935061330b818560208601613e91565b80840191505092915050565b6000613324602283613c33565b915061332f826140e5565b604082019050919050565b6000613347602683613c33565b915061335282614134565b604082019050919050565b600061336a601683613c33565b915061337582614183565b602082019050919050565b600061338d602a83613c33565b9150613398826141ac565b604082019050919050565b60006133b0602383613c33565b91506133bb826141fb565b604082019050919050565b60006133d3602583613c33565b91506133de8261424a565b604082019050919050565b60006133f6603183613c33565b915061340182614299565b604082019050919050565b6000613419603983613c33565b9150613424826142e8565b604082019050919050565b600061343c601883613c33565b915061344782614337565b602082019050919050565b600061345f602b83613c33565b915061346a82614360565b604082019050919050565b6000613482602683613c33565b915061348d826143af565b604082019050919050565b60006134a5602083613c33565b91506134b0826143fe565b602082019050919050565b60006134c8602f83613c33565b91506134d382614427565b604082019050919050565b60006134eb601a83613c33565b91506134f682614476565b602082019050919050565b600061350e603283613c33565b91506135198261449f565b604082019050919050565b6000613531602283613c33565b915061353c826144ee565b604082019050919050565b6000613554600083613c28565b915061355f8261453d565b600082019050919050565b6000613577601083613c33565b915061358282614540565b602082019050919050565b600061359a603383613c33565b91506135a582614569565b604082019050919050565b60006135bd601d83613c33565b91506135c8826145b8565b602082019050919050565b60006135e0602183613c33565b91506135eb826145e1565b604082019050919050565b6000613603602e83613c33565b915061360e82614630565b604082019050919050565b6000613626602683613c33565b91506136318261467f565b604082019050919050565b6000613649601f83613c33565b9150613654826146ce565b602082019050919050565b600061366c602f83613c33565b9150613677826146f7565b604082019050919050565b600061368f602d83613c33565b915061369a82614746565b604082019050919050565b60006136b2601383613c33565b91506136bd82614795565b602082019050919050565b60006136d5602283613c33565b91506136e0826147be565b604082019050919050565b6040820160008201516137016000850182613247565b5060208201516137146020850182613729565b50505050565b61372381613e64565b82525050565b61373281613e6e565b82525050565b600061374482856132e6565b915061375082846132e6565b91508190509392505050565b600061376782613547565b9150819050919050565b60006020820190506137866000830184613256565b92915050565b60006080820190506137a16000830187613256565b6137ae6020830186613256565b6137bb604083018561371a565b81810360608301526137cd8184613274565b905095945050505050565b60006020820190506137ed6000830184613265565b92915050565b6000602082019050818103600083015261380d81846132ad565b905092915050565b6000602082019050818103600083015261382e81613317565b9050919050565b6000602082019050818103600083015261384e8161333a565b9050919050565b6000602082019050818103600083015261386e8161335d565b9050919050565b6000602082019050818103600083015261388e81613380565b9050919050565b600060208201905081810360008301526138ae816133a3565b9050919050565b600060208201905081810360008301526138ce816133c6565b9050919050565b600060208201905081810360008301526138ee816133e9565b9050919050565b6000602082019050818103600083015261390e8161340c565b9050919050565b6000602082019050818103600083015261392e8161342f565b9050919050565b6000602082019050818103600083015261394e81613452565b9050919050565b6000602082019050818103600083015261396e81613475565b9050919050565b6000602082019050818103600083015261398e81613498565b9050919050565b600060208201905081810360008301526139ae816134bb565b9050919050565b600060208201905081810360008301526139ce816134de565b9050919050565b600060208201905081810360008301526139ee81613501565b9050919050565b60006020820190508181036000830152613a0e81613524565b9050919050565b60006020820190508181036000830152613a2e8161356a565b9050919050565b60006020820190508181036000830152613a4e8161358d565b9050919050565b60006020820190508181036000830152613a6e816135b0565b9050919050565b60006020820190508181036000830152613a8e816135d3565b9050919050565b60006020820190508181036000830152613aae816135f6565b9050919050565b60006020820190508181036000830152613ace81613619565b9050919050565b60006020820190508181036000830152613aee8161363c565b9050919050565b60006020820190508181036000830152613b0e8161365f565b9050919050565b60006020820190508181036000830152613b2e81613682565b9050919050565b60006020820190508181036000830152613b4e816136a5565b9050919050565b60006020820190508181036000830152613b6e816136c8565b9050919050565b6000604082019050613b8a60008301846136eb565b92915050565b6000602082019050613ba5600083018461371a565b92915050565b6000613bb5613bc6565b9050613bc18282613f20565b919050565b6000604051905090565b600067ffffffffffffffff821115613beb57613bea614087565b5b613bf4826140d4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5a82613e28565b9150613c6583613e28565b9250826fffffffffffffffffffffffffffffffff03821115613c8a57613c89613fcb565b5b828201905092915050565b6000613ca082613e64565b9150613cab83613e64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce057613cdf613fcb565b5b828201905092915050565b6000613cf682613e64565b9150613d0183613e64565b925082613d1157613d10613ffa565b5b828204905092915050565b6000613d2782613e64565b9150613d3283613e64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d6b57613d6a613fcb565b5b828202905092915050565b6000613d8182613e28565b9150613d8c83613e28565b925082821015613d9f57613d9e613fcb565b5b828203905092915050565b6000613db582613e64565b9150613dc083613e64565b925082821015613dd357613dd2613fcb565b5b828203905092915050565b6000613de982613e44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613eaf578082015181840152602081019050613e94565b83811115613ebe576000848401525b50505050565b6000613ecf82613e64565b91506000821415613ee357613ee2613fcb565b5b600182039050919050565b60006002820490506001821680613f0657607f821691505b60208210811415613f1a57613f19614029565b5b50919050565b613f29826140d4565b810181811067ffffffffffffffff82111715613f4857613f47614087565b5b80604052505050565b6000613f5c82613e64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8f57613f8e613fcb565b5b600182019050919050565b6000613fa582613e64565b9150613fb083613e64565b925082613fc057613fbf613ffa565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e74206d696e74206d6f7265207468616e20313000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204574682073656e7400000000000000000000000000600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61481681613dde565b811461482157600080fd5b50565b61482d81613df0565b811461483857600080fd5b50565b61484481613dfc565b811461484f57600080fd5b50565b61485b81613e64565b811461486657600080fd5b5056fea2646970667358221220e490df69bd9ca50e1831a1ac82177e826fee459b0b085a00bd7a727c80d7408964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000045700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 1111
Arg [2] : amountForAuctionAndDev_ (uint256): 0
Arg [3] : amountForDevs_ (uint256): 0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42565:1929:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27656:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29382:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30907:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30470:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26217:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31757:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44107:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26848:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43978:123;;;;;;;;;;;;;:::i;:::-;;31962:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26380:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43685:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29205:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25945:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28082:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41671:103;;;;;;;;;;;;;:::i;:::-;;41020:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44344:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29537:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26039:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43107:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31175:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43791:181;;;;;;;;;;;;;:::i;:::-;;32182:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29698:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36597:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44231:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31512:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41929:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27656:370;27783:4;27828:25;27813:40;;;:11;:40;;;;:99;;;;27879:33;27864:48;;;:11;:48;;;;27813:99;:160;;;;27938:35;27923:50;;;:11;:50;;;;27813:160;:207;;;;27984:36;28008:11;27984:23;:36::i;:::-;27813:207;27799:221;;27656:370;;;:::o;29382:94::-;29436:13;29465:5;29458:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29382:94;:::o;30907:204::-;30975:7;30999:16;31007:7;30999;:16::i;:::-;30991:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31081:15;:24;31097:7;31081:24;;;;;;;;;;;;;;;;;;;;;31074:31;;30907:204;;;:::o;30470:379::-;30539:13;30555:24;30571:7;30555:15;:24::i;:::-;30539:40;;30600:5;30594:11;;:2;:11;;;;30586:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30685:5;30669:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30694:37;30711:5;30718:12;:10;:12::i;:::-;30694:16;:37::i;:::-;30669:62;30653:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30815:28;30824:2;30828:7;30837:5;30815:8;:28::i;:::-;30532:317;30470:379;;:::o;26217:94::-;26270:7;26293:12;;26286:19;;26217:94;:::o;31757:142::-;31865:28;31875:4;31881:2;31885:7;31865:9;:28::i;:::-;31757:142;;;:::o;44107:118::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1:::1;22410:7;;:19;;22402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1;22543:7;:18;;;;44191:28:::2;44210:8;44191:18;:28::i;:::-;21768:1:::1;22722:7;:22;;;;44107:118:::0;:::o;26848:744::-;26957:7;26992:16;27002:5;26992:9;:16::i;:::-;26984:5;:24;26976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27054:22;27079:13;:11;:13::i;:::-;27054:38;;27099:19;27129:25;27179:9;27174:350;27198:14;27194:1;:18;27174:350;;;27228:31;27262:11;:14;27274:1;27262:14;;;;;;;;;;;27228:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27315:1;27289:28;;:9;:14;;;:28;;;27285:89;;27350:9;:14;;;27330:34;;27285:89;27407:5;27386:26;;:17;:26;;;27382:135;;;27444:5;27429:11;:20;27425:59;;;27471:1;27464:8;;;;;;;;;27425:59;27494:13;;;;;:::i;:::-;;;;27382:135;27219:305;27214:3;;;;;:::i;:::-;;;;27174:350;;;;27530:56;;;;;;;;;;:::i;:::-;;;;;;;;26848:744;;;;;:::o;43978:123::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44022:15:::1;44040:21;44022:39;;44068:9;;;;;;;;;;;:18;;:27;44087:7;44068:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44015:86;43978:123::o:0;31962:157::-;32074:39;32091:4;32097:2;32101:7;32074:39;;;;;;;;;;;;:16;:39::i;:::-;31962:157;;;:::o;26380:177::-;26447:7;26479:13;:11;:13::i;:::-;26471:5;:21;26463:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26546:5;26539:12;;26380:177;;;:::o;43685:100::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43772:7:::1;;43756:13;:23;;;;;;;:::i;:::-;;43685:100:::0;;:::o;29205:118::-;29269:7;29292:20;29304:7;29292:11;:20::i;:::-;:25;;;29285:32;;29205:118;;;:::o;25945:88::-;26019:8;26004:12;:23;;;;25945:88;:::o;28082:211::-;28146:7;28187:1;28170:19;;:5;:19;;;;28162:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28259:12;:19;28272:5;28259:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28251:36;;28244:43;;28082:211;;;:::o;41671:103::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41736:30:::1;41763:1;41736:18;:30::i;:::-;41671:103::o:0;41020:87::-;41066:7;41093:6;;;;;;;;;;;41086:13;;41020:87;:::o;44344:147::-;44425:21;;:::i;:::-;44465:20;44477:7;44465:11;:20::i;:::-;44458:27;;44344:147;;;:::o;29537:98::-;29593:13;29622:7;29615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29537:98;:::o;26039:110::-;26126:17;26109:14;:34;;;;26039:110;:::o;43107:401::-;43183:2;43171:8;:14;;43163:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;43239:3;43223:13;:11;:13::i;:::-;:19;43219:74;;;43277:8;;43266;:19;;;;:::i;:::-;43254:9;:31;;;;43219:74;43320:3;43303:13;:11;:13::i;:::-;:20;43299:57;;43347:1;43335:9;:13;;;;43299:57;43398:4;43386:8;43370:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;;43362:41;;;;;;43431:9;;43418;:22;;43410:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;43471:31;43481:10;43493:8;43471:9;:31::i;:::-;43107:401;:::o;31175:274::-;31278:12;:10;:12::i;:::-;31266:24;;:8;:24;;;;31258:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31375:8;31330:18;:32;31349:12;:10;:12::i;:::-;31330:32;;;;;;;;;;;;;;;:42;31363:8;31330:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31424:8;31395:48;;31410:12;:10;:12::i;:::-;31395:48;;;31434:8;31395:48;;;;;;:::i;:::-;;;;;;;;31175:274;;:::o;43791:181::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1:::1;22410:7;;:19;;22402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21812:1;22543:7;:18;;;;43856:12:::2;43874:10;:15;;43897:21;43874:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43855:68;;;43938:7;43930:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43848:124;21768:1:::1;22722:7;:22;;;;43791:181::o:0;32182:311::-;32319:28;32329:4;32335:2;32339:7;32319:9;:28::i;:::-;32370:48;32393:4;32399:2;32403:7;32412:5;32370:22;:48::i;:::-;32354:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32182:311;;;;:::o;29698:394::-;29796:13;29837:16;29845:7;29837;:16::i;:::-;29821:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29927:21;29951:10;:8;:10::i;:::-;29927:34;;30006:1;29988:7;29982:21;:25;:104;;;;;;;;;;;;;;;;;30043:7;30052:18;:7;:16;:18::i;:::-;30026:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29982:104;29968:118;;;29698:394;;;:::o;36597:43::-;;;;:::o;44231:107::-;44289:7;44312:20;44326:5;44312:13;:20::i;:::-;44305:27;;44231:107;;;:::o;31512:186::-;31634:4;31657:18;:25;31676:5;31657:25;;;;;;;;;;;;;;;:35;31683:8;31657:35;;;;;;;;;;;;;;;;;;;;;;;;;31650:42;;31512:186;;;;:::o;41929:201::-;41251:12;:10;:12::i;:::-;41240:23;;:7;:5;:7::i;:::-;:23;;;41232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42038:1:::1;42018:22;;:8;:22;;;;42010:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42094:28;42113:8;42094:18;:28::i;:::-;41929:201:::0;:::o;13088:157::-;13173:4;13212:25;13197:40;;;:11;:40;;;;13190:47;;13088:157;;;:::o;32732:105::-;32789:4;32819:12;;32809:7;:22;32802:29;;32732:105;;;:::o;23438:98::-;23491:7;23518:10;23511:17;;23438:98;:::o;36419:172::-;36543:2;36516:15;:24;36532:7;36516:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36577:7;36573:2;36557:28;;36566:5;36557:28;;;;;;;;;;;;36419:172;;;:::o;34784:1529::-;34881:35;34919:20;34931:7;34919:11;:20::i;:::-;34881:58;;34948:22;34990:13;:18;;;34974:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35043:12;:10;:12::i;:::-;35019:36;;:20;35031:7;35019:11;:20::i;:::-;:36;;;34974:81;:142;;;;35066:50;35083:13;:18;;;35103:12;:10;:12::i;:::-;35066:16;:50::i;:::-;34974:142;34948:169;;35142:17;35126:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35274:4;35252:26;;:13;:18;;;:26;;;35236:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35363:1;35349:16;;:2;:16;;;;35341:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35416:43;35438:4;35444:2;35448:7;35457:1;35416:21;:43::i;:::-;35516:49;35533:1;35537:7;35546:13;:18;;;35516:8;:49::i;:::-;35604:1;35574:12;:18;35587:4;35574:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35640:1;35612:12;:16;35625:2;35612:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35671:43;;;;;;;;35686:2;35671:43;;;;;;35697:15;35671:43;;;;;35648:11;:20;35660:7;35648:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35942:19;35974:1;35964:7;:11;;;;:::i;:::-;35942:33;;36027:1;35986:43;;:11;:24;35998:11;35986:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35982:236;;;36044:20;36052:11;36044:7;:20::i;:::-;36040:171;;;36104:97;;;;;;;;36131:13;:18;;;36104:97;;;;;;36162:13;:28;;;36104:97;;;;;36077:11;:24;36089:11;36077:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36040:171;35982:236;36250:7;36246:2;36231:27;;36240:4;36231:27;;;;;;;;;;;;36265:42;36286:4;36292:2;36296:7;36305:1;36265:20;:42::i;:::-;34874:1439;;;34784:1529;;;:::o;36745:846::-;36807:25;36835:24;;36807:52;;36885:1;36874:8;:12;36866:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;36922:16;36972:1;36961:8;36941:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;36922:51;;37012:1;36995:14;;:18;;;;:::i;:::-;36984:8;:29;36980:81;;;37052:1;37035:14;;:18;;;;:::i;:::-;37024:29;;36980:81;37176:17;37184:8;37176:7;:17::i;:::-;37168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37248:9;37260:17;37248:29;;37243:297;37284:8;37279:1;:13;37243:297;;37343:1;37312:33;;:11;:14;37324:1;37312:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37308:225;;;37358:31;37392:14;37404:1;37392:11;:14::i;:::-;37358:48;;37434:89;;;;;;;;37461:9;:14;;;37434:89;;;;;;37488:9;:24;;;37434:89;;;;;37417:11;:14;37429:1;37417:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37347:186;37308:225;37294:3;;;;;:::i;:::-;;;;37243:297;;;;37584:1;37573:8;:12;;;;:::i;:::-;37546:24;:39;;;;36800:791;;36745:846;:::o;28545:606::-;28621:21;;:::i;:::-;28662:16;28670:7;28662;:16::i;:::-;28654:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28734:26;28782:12;;28771:7;:23;28767:93;;28851:1;28836:12;;28826:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28805:47;;28767:93;28873:12;28888:7;28873:22;;28868:212;28905:18;28897:4;:26;28868:212;;28942:31;28976:11;:17;28988:4;28976:17;;;;;;;;;;;28942:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29032:1;29006:28;;:9;:14;;;:28;;;29002:71;;29054:9;29047:16;;;;;;;29002:71;28933:147;28925:6;;;;;:::i;:::-;;;;28868:212;;;;29088:57;;;;;;;;;;:::i;:::-;;;;;;;;28545:606;;;;:::o;42290:191::-;42364:16;42383:6;;;;;;;;;;;42364:25;;42409:8;42400:6;;:17;;;;;;;;;;;;;;;;;;42464:8;42433:40;;42454:8;42433:40;;;;;;;;;;;;42353:128;42290:191;:::o;32843:98::-;32908:27;32918:2;32922:8;32908:27;;;;;;;;;;;;:9;:27::i;:::-;32843:98;;:::o;38134:690::-;38271:4;38288:15;:2;:13;;;:15::i;:::-;38284:535;;;38343:2;38327:36;;;38364:12;:10;:12::i;:::-;38378:4;38384:7;38393:5;38327:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38314:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38575:1;38558:6;:13;:18;38554:215;;;38591:61;;;;;;;;;;:::i;:::-;;;;;;;;38554:215;38737:6;38731:13;38722:6;38718:2;38714:15;38707:38;38314:464;38459:45;;;38449:55;;;:6;:55;;;;38442:62;;;;;38284:535;38807:4;38800:11;;38134:690;;;;;;;:::o;43571:108::-;43631:13;43660;43653:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43571:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;28299:240::-;28360:7;28409:1;28392:19;;:5;:19;;;;28376:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28500:12;:19;28513:5;28500:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28492:41;;28485:48;;28299:240;;;:::o;39286:141::-;;;;;:::o;39813:140::-;;;;;:::o;33280:1272::-;33385:20;33408:12;;33385:35;;33449:1;33435:16;;:2;:16;;;;33427:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33626:21;33634:12;33626:7;:21::i;:::-;33625:22;33617:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33708:12;;33696:8;:24;;33688:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33768:61;33798:1;33802:2;33806:12;33820:8;33768:21;:61::i;:::-;33838:30;33871:12;:16;33884:2;33871:16;;;;;;;;;;;;;;;33838:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33913:119;;;;;;;;33963:8;33933:11;:19;;;:39;;;;:::i;:::-;33913:119;;;;;;34016:8;33981:11;:24;;;:44;;;;:::i;:::-;33913:119;;;;;33894:12;:16;33907:2;33894:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34067:43;;;;;;;;34082:2;34067:43;;;;;;34093:15;34067:43;;;;;34039:11;:25;34051:12;34039:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34119:20;34142:12;34119:35;;34168:9;34163:281;34187:8;34183:1;:12;34163:281;;;34241:12;34237:2;34216:38;;34233:1;34216:38;;;;;;;;;;;;34281:59;34312:1;34316:2;34320:12;34334:5;34281:22;:59::i;:::-;34263:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34422:14;;;;;:::i;:::-;;;;34197:3;;;;;:::i;:::-;;;;34163:281;;;;34467:12;34452;:27;;;;34486:60;34515:1;34519:2;34523:12;34537:8;34486:20;:60::i;:::-;33378:1174;;;33280:1272;;;:::o;2944:387::-;3004:4;3212:12;3279:7;3267:20;3259:28;;3322:1;3315:4;:8;3308:15;;;2944:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:398::-;14556:3;14577:83;14658:1;14653:3;14577:83;:::i;:::-;14570:90;;14669:93;14758:3;14669:93;:::i;:::-;14787:1;14782:3;14778:11;14771:18;;14397:398;;;:::o;14801:366::-;14943:3;14964:67;15028:2;15023:3;14964:67;:::i;:::-;14957:74;;15040:93;15129:3;15040:93;:::i;:::-;15158:2;15153:3;15149:12;15142:19;;14801:366;;;:::o;15173:::-;15315:3;15336:67;15400:2;15395:3;15336:67;:::i;:::-;15329:74;;15412:93;15501:3;15412:93;:::i;:::-;15530:2;15525:3;15521:12;15514:19;;15173:366;;;:::o;15545:::-;15687:3;15708:67;15772:2;15767:3;15708:67;:::i;:::-;15701:74;;15784:93;15873:3;15784:93;:::i;:::-;15902:2;15897:3;15893:12;15886:19;;15545:366;;;:::o;15917:::-;16059:3;16080:67;16144:2;16139:3;16080:67;:::i;:::-;16073:74;;16156:93;16245:3;16156:93;:::i;:::-;16274:2;16269:3;16265:12;16258:19;;15917:366;;;:::o;16289:::-;16431:3;16452:67;16516:2;16511:3;16452:67;:::i;:::-;16445:74;;16528:93;16617:3;16528:93;:::i;:::-;16646:2;16641:3;16637:12;16630:19;;16289:366;;;:::o;16661:::-;16803:3;16824:67;16888:2;16883:3;16824:67;:::i;:::-;16817:74;;16900:93;16989:3;16900:93;:::i;:::-;17018:2;17013:3;17009:12;17002:19;;16661:366;;;:::o;17033:::-;17175:3;17196:67;17260:2;17255:3;17196:67;:::i;:::-;17189:74;;17272:93;17361:3;17272:93;:::i;:::-;17390:2;17385:3;17381:12;17374:19;;17033:366;;;:::o;17405:::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:::-;17919:3;17940:67;18004:2;17999:3;17940:67;:::i;:::-;17933:74;;18016:93;18105:3;18016:93;:::i;:::-;18134:2;18129:3;18125:12;18118:19;;17777:366;;;:::o;18149:::-;18291:3;18312:67;18376:2;18371:3;18312:67;:::i;:::-;18305:74;;18388:93;18477:3;18388:93;:::i;:::-;18506:2;18501:3;18497:12;18490:19;;18149:366;;;:::o;18521:::-;18663:3;18684:67;18748:2;18743:3;18684:67;:::i;:::-;18677:74;;18760:93;18849:3;18760:93;:::i;:::-;18878:2;18873:3;18869:12;18862:19;;18521:366;;;:::o;18963:527::-;19122:4;19117:3;19113:14;19209:4;19202:5;19198:16;19192:23;19228:63;19285:4;19280:3;19276:14;19262:12;19228:63;:::i;:::-;19137:164;19393:4;19386:5;19382:16;19376:23;19412:61;19467:4;19462:3;19458:14;19444:12;19412:61;:::i;:::-;19311:172;19091:399;18963:527;;:::o;19496:118::-;19583:24;19601:5;19583:24;:::i;:::-;19578:3;19571:37;19496:118;;:::o;19620:105::-;19695:23;19712:5;19695:23;:::i;:::-;19690:3;19683:36;19620:105;;:::o;19731:435::-;19911:3;19933:95;20024:3;20015:6;19933:95;:::i;:::-;19926:102;;20045:95;20136:3;20127:6;20045:95;:::i;:::-;20038:102;;20157:3;20150:10;;19731:435;;;;;:::o;20172:379::-;20356:3;20378:147;20521:3;20378:147;:::i;:::-;20371:154;;20542:3;20535:10;;20172:379;;;:::o;20557:222::-;20650:4;20688:2;20677:9;20673:18;20665:26;;20701:71;20769:1;20758:9;20754:17;20745:6;20701:71;:::i;:::-;20557:222;;;;:::o;20785:640::-;20980:4;21018:3;21007:9;21003:19;20995:27;;21032:71;21100:1;21089:9;21085:17;21076:6;21032:71;:::i;:::-;21113:72;21181:2;21170:9;21166:18;21157:6;21113:72;:::i;:::-;21195;21263:2;21252:9;21248:18;21239:6;21195:72;:::i;:::-;21314:9;21308:4;21304:20;21299:2;21288:9;21284:18;21277:48;21342:76;21413:4;21404:6;21342:76;:::i;:::-;21334:84;;20785:640;;;;;;;:::o;21431:210::-;21518:4;21556:2;21545:9;21541:18;21533:26;;21569:65;21631:1;21620:9;21616:17;21607:6;21569:65;:::i;:::-;21431:210;;;;:::o;21647:313::-;21760:4;21798:2;21787:9;21783:18;21775:26;;21847:9;21841:4;21837:20;21833:1;21822:9;21818:17;21811:47;21875:78;21948:4;21939:6;21875:78;:::i;:::-;21867:86;;21647:313;;;;:::o;21966:419::-;22132:4;22170:2;22159:9;22155:18;22147:26;;22219:9;22213:4;22209:20;22205:1;22194:9;22190:17;22183:47;22247:131;22373:4;22247:131;:::i;:::-;22239:139;;21966:419;;;:::o;22391:::-;22557:4;22595:2;22584:9;22580:18;22572:26;;22644:9;22638:4;22634:20;22630:1;22619:9;22615:17;22608:47;22672:131;22798:4;22672:131;:::i;:::-;22664:139;;22391:419;;;:::o;22816:::-;22982:4;23020:2;23009:9;23005:18;22997:26;;23069:9;23063:4;23059:20;23055:1;23044:9;23040:17;23033:47;23097:131;23223:4;23097:131;:::i;:::-;23089:139;;22816:419;;;:::o;23241:::-;23407:4;23445:2;23434:9;23430:18;23422:26;;23494:9;23488:4;23484:20;23480:1;23469:9;23465:17;23458:47;23522:131;23648:4;23522:131;:::i;:::-;23514:139;;23241:419;;;:::o;23666:::-;23832:4;23870:2;23859:9;23855:18;23847:26;;23919:9;23913:4;23909:20;23905:1;23894:9;23890:17;23883:47;23947:131;24073:4;23947:131;:::i;:::-;23939:139;;23666:419;;;:::o;24091:::-;24257:4;24295:2;24284:9;24280:18;24272:26;;24344:9;24338:4;24334:20;24330:1;24319:9;24315:17;24308:47;24372:131;24498:4;24372:131;:::i;:::-;24364:139;;24091:419;;;:::o;24516:::-;24682:4;24720:2;24709:9;24705:18;24697:26;;24769:9;24763:4;24759:20;24755:1;24744:9;24740:17;24733:47;24797:131;24923:4;24797:131;:::i;:::-;24789:139;;24516:419;;;:::o;24941:::-;25107:4;25145:2;25134:9;25130:18;25122:26;;25194:9;25188:4;25184:20;25180:1;25169:9;25165:17;25158:47;25222:131;25348:4;25222:131;:::i;:::-;25214:139;;24941:419;;;:::o;25366:::-;25532:4;25570:2;25559:9;25555:18;25547:26;;25619:9;25613:4;25609:20;25605:1;25594:9;25590:17;25583:47;25647:131;25773:4;25647:131;:::i;:::-;25639:139;;25366:419;;;:::o;25791:::-;25957:4;25995:2;25984:9;25980:18;25972:26;;26044:9;26038:4;26034:20;26030:1;26019:9;26015:17;26008:47;26072:131;26198:4;26072:131;:::i;:::-;26064:139;;25791:419;;;:::o;26216:::-;26382:4;26420:2;26409:9;26405:18;26397:26;;26469:9;26463:4;26459:20;26455:1;26444:9;26440:17;26433:47;26497:131;26623:4;26497:131;:::i;:::-;26489:139;;26216:419;;;:::o;26641:::-;26807:4;26845:2;26834:9;26830:18;26822:26;;26894:9;26888:4;26884:20;26880:1;26869:9;26865:17;26858:47;26922:131;27048:4;26922:131;:::i;:::-;26914:139;;26641:419;;;:::o;27066:::-;27232:4;27270:2;27259:9;27255:18;27247:26;;27319:9;27313:4;27309:20;27305:1;27294:9;27290:17;27283:47;27347:131;27473:4;27347:131;:::i;:::-;27339:139;;27066:419;;;:::o;27491:::-;27657:4;27695:2;27684:9;27680:18;27672:26;;27744:9;27738:4;27734:20;27730:1;27719:9;27715:17;27708:47;27772:131;27898:4;27772:131;:::i;:::-;27764:139;;27491:419;;;:::o;27916:::-;28082:4;28120:2;28109:9;28105:18;28097:26;;28169:9;28163:4;28159:20;28155:1;28144:9;28140:17;28133:47;28197:131;28323:4;28197:131;:::i;:::-;28189:139;;27916:419;;;:::o;28341:::-;28507:4;28545:2;28534:9;28530:18;28522:26;;28594:9;28588:4;28584:20;28580:1;28569:9;28565:17;28558:47;28622:131;28748:4;28622:131;:::i;:::-;28614:139;;28341:419;;;:::o;28766:::-;28932:4;28970:2;28959:9;28955:18;28947:26;;29019:9;29013:4;29009:20;29005:1;28994:9;28990:17;28983:47;29047:131;29173:4;29047:131;:::i;:::-;29039:139;;28766:419;;;:::o;29191:::-;29357:4;29395:2;29384:9;29380:18;29372:26;;29444:9;29438:4;29434:20;29430:1;29419:9;29415:17;29408:47;29472:131;29598:4;29472:131;:::i;:::-;29464:139;;29191:419;;;:::o;29616:::-;29782:4;29820:2;29809:9;29805:18;29797:26;;29869:9;29863:4;29859:20;29855:1;29844:9;29840:17;29833:47;29897:131;30023:4;29897:131;:::i;:::-;29889:139;;29616:419;;;:::o;30041:::-;30207:4;30245:2;30234:9;30230:18;30222:26;;30294:9;30288:4;30284:20;30280:1;30269:9;30265:17;30258:47;30322:131;30448:4;30322:131;:::i;:::-;30314:139;;30041:419;;;:::o;30466:::-;30632:4;30670:2;30659:9;30655:18;30647:26;;30719:9;30713:4;30709:20;30705:1;30694:9;30690:17;30683:47;30747:131;30873:4;30747:131;:::i;:::-;30739:139;;30466:419;;;:::o;30891:::-;31057:4;31095:2;31084:9;31080:18;31072:26;;31144:9;31138:4;31134:20;31130:1;31119:9;31115:17;31108:47;31172:131;31298:4;31172:131;:::i;:::-;31164:139;;30891:419;;;:::o;31316:::-;31482:4;31520:2;31509:9;31505:18;31497:26;;31569:9;31563:4;31559:20;31555:1;31544:9;31540:17;31533:47;31597:131;31723:4;31597:131;:::i;:::-;31589:139;;31316:419;;;:::o;31741:::-;31907:4;31945:2;31934:9;31930:18;31922:26;;31994:9;31988:4;31984:20;31980:1;31969:9;31965:17;31958:47;32022:131;32148:4;32022:131;:::i;:::-;32014:139;;31741:419;;;:::o;32166:::-;32332:4;32370:2;32359:9;32355:18;32347:26;;32419:9;32413:4;32409:20;32405:1;32394:9;32390:17;32383:47;32447:131;32573:4;32447:131;:::i;:::-;32439:139;;32166:419;;;:::o;32591:::-;32757:4;32795:2;32784:9;32780:18;32772:26;;32844:9;32838:4;32834:20;32830:1;32819:9;32815:17;32808:47;32872:131;32998:4;32872:131;:::i;:::-;32864:139;;32591:419;;;:::o;33016:::-;33182:4;33220:2;33209:9;33205:18;33197:26;;33269:9;33263:4;33259:20;33255:1;33244:9;33240:17;33233:47;33297:131;33423:4;33297:131;:::i;:::-;33289:139;;33016:419;;;:::o;33441:346::-;33596:4;33634:2;33623:9;33619:18;33611:26;;33647:133;33777:1;33766:9;33762:17;33753:6;33647:133;:::i;:::-;33441:346;;;;:::o;33793:222::-;33886:4;33924:2;33913:9;33909:18;33901:26;;33937:71;34005:1;33994:9;33990:17;33981:6;33937:71;:::i;:::-;33793:222;;;;:::o;34021:129::-;34055:6;34082:20;;:::i;:::-;34072:30;;34111:33;34139:4;34131:6;34111:33;:::i;:::-;34021:129;;;:::o;34156:75::-;34189:6;34222:2;34216:9;34206:19;;34156:75;:::o;34237:307::-;34298:4;34388:18;34380:6;34377:30;34374:56;;;34410:18;;:::i;:::-;34374:56;34448:29;34470:6;34448:29;:::i;:::-;34440:37;;34532:4;34526;34522:15;34514:23;;34237:307;;;:::o;34550:98::-;34601:6;34635:5;34629:12;34619:22;;34550:98;;;:::o;34654:99::-;34706:6;34740:5;34734:12;34724:22;;34654:99;;;:::o;34759:168::-;34842:11;34876:6;34871:3;34864:19;34916:4;34911:3;34907:14;34892:29;;34759:168;;;;:::o;34933:147::-;35034:11;35071:3;35056:18;;34933:147;;;;:::o;35086:169::-;35170:11;35204:6;35199:3;35192:19;35244:4;35239:3;35235:14;35220:29;;35086:169;;;;:::o;35261:148::-;35363:11;35400:3;35385:18;;35261:148;;;;:::o;35415:273::-;35455:3;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35630:1;35594:34;35590:42;35587:1;35584:49;35581:75;;;35636:18;;:::i;:::-;35581:75;35680:1;35677;35673:9;35666:16;;35415:273;;;;:::o;35694:305::-;35734:3;35753:20;35771:1;35753:20;:::i;:::-;35748:25;;35787:20;35805:1;35787:20;:::i;:::-;35782:25;;35941:1;35873:66;35869:74;35866:1;35863:81;35860:107;;;35947:18;;:::i;:::-;35860:107;35991:1;35988;35984:9;35977:16;;35694:305;;;;:::o;36005:185::-;36045:1;36062:20;36080:1;36062:20;:::i;:::-;36057:25;;36096:20;36114:1;36096:20;:::i;:::-;36091:25;;36135:1;36125:35;;36140:18;;:::i;:::-;36125:35;36182:1;36179;36175:9;36170:14;;36005:185;;;;:::o;36196:348::-;36236:7;36259:20;36277:1;36259:20;:::i;:::-;36254:25;;36293:20;36311:1;36293:20;:::i;:::-;36288:25;;36481:1;36413:66;36409:74;36406:1;36403:81;36398:1;36391:9;36384:17;36380:105;36377:131;;;36488:18;;:::i;:::-;36377:131;36536:1;36533;36529:9;36518:20;;36196:348;;;;:::o;36550:191::-;36590:4;36610:20;36628:1;36610:20;:::i;:::-;36605:25;;36644:20;36662:1;36644:20;:::i;:::-;36639:25;;36683:1;36680;36677:8;36674:34;;;36688:18;;:::i;:::-;36674:34;36733:1;36730;36726:9;36718:17;;36550:191;;;;:::o;36747:::-;36787:4;36807:20;36825:1;36807:20;:::i;:::-;36802:25;;36841:20;36859:1;36841:20;:::i;:::-;36836:25;;36880:1;36877;36874:8;36871:34;;;36885:18;;:::i;:::-;36871:34;36930:1;36927;36923:9;36915:17;;36747:191;;;;:::o;36944:96::-;36981:7;37010:24;37028:5;37010:24;:::i;:::-;36999:35;;36944:96;;;:::o;37046:90::-;37080:7;37123:5;37116:13;37109:21;37098:32;;37046:90;;;:::o;37142:149::-;37178:7;37218:66;37211:5;37207:78;37196:89;;37142:149;;;:::o;37297:118::-;37334:7;37374:34;37367:5;37363:46;37352:57;;37297:118;;;:::o;37421:126::-;37458:7;37498:42;37491:5;37487:54;37476:65;;37421:126;;;:::o;37553:77::-;37590:7;37619:5;37608:16;;37553:77;;;:::o;37636:101::-;37672:7;37712:18;37705:5;37701:30;37690:41;;37636:101;;;:::o;37743:154::-;37827:6;37822:3;37817;37804:30;37889:1;37880:6;37875:3;37871:16;37864:27;37743:154;;;:::o;37903:307::-;37971:1;37981:113;37995:6;37992:1;37989:13;37981:113;;;38080:1;38075:3;38071:11;38065:18;38061:1;38056:3;38052:11;38045:39;38017:2;38014:1;38010:10;38005:15;;37981:113;;;38112:6;38109:1;38106:13;38103:101;;;38192:1;38183:6;38178:3;38174:16;38167:27;38103:101;37952:258;37903:307;;;:::o;38216:171::-;38255:3;38278:24;38296:5;38278:24;:::i;:::-;38269:33;;38324:4;38317:5;38314:15;38311:41;;;38332:18;;:::i;:::-;38311:41;38379:1;38372:5;38368:13;38361:20;;38216:171;;;:::o;38393:320::-;38437:6;38474:1;38468:4;38464:12;38454:22;;38521:1;38515:4;38511:12;38542:18;38532:81;;38598:4;38590:6;38586:17;38576:27;;38532:81;38660:2;38652:6;38649:14;38629:18;38626:38;38623:84;;;38679:18;;:::i;:::-;38623:84;38444:269;38393:320;;;:::o;38719:281::-;38802:27;38824:4;38802:27;:::i;:::-;38794:6;38790:40;38932:6;38920:10;38917:22;38896:18;38884:10;38881:34;38878:62;38875:88;;;38943:18;;:::i;:::-;38875:88;38983:10;38979:2;38972:22;38762:238;38719:281;;:::o;39006:233::-;39045:3;39068:24;39086:5;39068:24;:::i;:::-;39059:33;;39114:66;39107:5;39104:77;39101:103;;;39184:18;;:::i;:::-;39101:103;39231:1;39224:5;39220:13;39213:20;;39006:233;;;:::o;39245:176::-;39277:1;39294:20;39312:1;39294:20;:::i;:::-;39289:25;;39328:20;39346:1;39328:20;:::i;:::-;39323:25;;39367:1;39357:35;;39372:18;;:::i;:::-;39357:35;39413:1;39410;39406:9;39401:14;;39245:176;;;;:::o;39427:180::-;39475:77;39472:1;39465:88;39572:4;39569:1;39562:15;39596:4;39593:1;39586:15;39613:180;39661:77;39658:1;39651:88;39758:4;39755:1;39748:15;39782:4;39779:1;39772:15;39799:180;39847:77;39844:1;39837:88;39944:4;39941:1;39934:15;39968:4;39965:1;39958:15;39985:180;40033:77;40030:1;40023:88;40130:4;40127:1;40120:15;40154:4;40151:1;40144:15;40171:180;40219:77;40216:1;40209:88;40316:4;40313:1;40306:15;40340:4;40337:1;40330:15;40357:117;40466:1;40463;40456:12;40480:117;40589:1;40586;40579:12;40603:117;40712:1;40709;40702:12;40726:117;40835:1;40832;40825:12;40849:117;40958:1;40955;40948:12;40972:117;41081:1;41078;41071:12;41095:102;41136:6;41187:2;41183:7;41178:2;41171:5;41167:14;41163:28;41153:38;;41095:102;;;:::o;41203:221::-;41343:34;41339:1;41331:6;41327:14;41320:58;41412:4;41407:2;41399:6;41395:15;41388:29;41203:221;:::o;41430:225::-;41570:34;41566:1;41558:6;41554:14;41547:58;41639:8;41634:2;41626:6;41622:15;41615:33;41430:225;:::o;41661:172::-;41801:24;41797:1;41789:6;41785:14;41778:48;41661:172;:::o;41839:229::-;41979:34;41975:1;41967:6;41963:14;41956:58;42048:12;42043:2;42035:6;42031:15;42024:37;41839:229;:::o;42074:222::-;42214:34;42210:1;42202:6;42198:14;42191:58;42283:5;42278:2;42270:6;42266:15;42259:30;42074:222;:::o;42302:224::-;42442:34;42438:1;42430:6;42426:14;42419:58;42511:7;42506:2;42498:6;42494:15;42487:32;42302:224;:::o;42532:236::-;42672:34;42668:1;42660:6;42656:14;42649:58;42741:19;42736:2;42728:6;42724:15;42717:44;42532:236;:::o;42774:244::-;42914:34;42910:1;42902:6;42898:14;42891:58;42983:27;42978:2;42970:6;42966:15;42959:52;42774:244;:::o;43024:174::-;43164:26;43160:1;43152:6;43148:14;43141:50;43024:174;:::o;43204:230::-;43344:34;43340:1;43332:6;43328:14;43321:58;43413:13;43408:2;43400:6;43396:15;43389:38;43204:230;:::o;43440:225::-;43580:34;43576:1;43568:6;43564:14;43557:58;43649:8;43644:2;43636:6;43632:15;43625:33;43440:225;:::o;43671:182::-;43811:34;43807:1;43799:6;43795:14;43788:58;43671:182;:::o;43859:234::-;43999:34;43995:1;43987:6;43983:14;43976:58;44068:17;44063:2;44055:6;44051:15;44044:42;43859:234;:::o;44099:176::-;44239:28;44235:1;44227:6;44223:14;44216:52;44099:176;:::o;44281:237::-;44421:34;44417:1;44409:6;44405:14;44398:58;44490:20;44485:2;44477:6;44473:15;44466:45;44281:237;:::o;44524:221::-;44664:34;44660:1;44652:6;44648:14;44641:58;44733:4;44728:2;44720:6;44716:15;44709:29;44524:221;:::o;44751:114::-;;:::o;44871:166::-;45011:18;45007:1;44999:6;44995:14;44988:42;44871:166;:::o;45043:238::-;45183:34;45179:1;45171:6;45167:14;45160:58;45252:21;45247:2;45239:6;45235:15;45228:46;45043:238;:::o;45287:179::-;45427:31;45423:1;45415:6;45411:14;45404:55;45287:179;:::o;45472:220::-;45612:34;45608:1;45600:6;45596:14;45589:58;45681:3;45676:2;45668:6;45664:15;45657:28;45472:220;:::o;45698:233::-;45838:34;45834:1;45826:6;45822:14;45815:58;45907:16;45902:2;45894:6;45890:15;45883:41;45698:233;:::o;45937:225::-;46077:34;46073:1;46065:6;46061:14;46054:58;46146:8;46141:2;46133:6;46129:15;46122:33;45937:225;:::o;46168:181::-;46308:33;46304:1;46296:6;46292:14;46285:57;46168:181;:::o;46355:234::-;46495:34;46491:1;46483:6;46479:14;46472:58;46564:17;46559:2;46551:6;46547:15;46540:42;46355:234;:::o;46595:232::-;46735:34;46731:1;46723:6;46719:14;46712:58;46804:15;46799:2;46791:6;46787:15;46780:40;46595:232;:::o;46833:169::-;46973:21;46969:1;46961:6;46957:14;46950:45;46833:169;:::o;47008:221::-;47148:34;47144:1;47136:6;47132:14;47125:58;47217:4;47212:2;47204:6;47200:15;47193:29;47008:221;:::o;47235:122::-;47308:24;47326:5;47308:24;:::i;:::-;47301:5;47298:35;47288:63;;47347:1;47344;47337:12;47288:63;47235:122;:::o;47363:116::-;47433:21;47448:5;47433:21;:::i;:::-;47426:5;47423:32;47413:60;;47469:1;47466;47459:12;47413:60;47363:116;:::o;47485:120::-;47557:23;47574:5;47557:23;:::i;:::-;47550:5;47547:34;47537:62;;47595:1;47592;47585:12;47537:62;47485:120;:::o;47611:122::-;47684:24;47702:5;47684:24;:::i;:::-;47677:5;47674:35;47664:63;;47723:1;47720;47713:12;47664:63;47611:122;:::o

Swarm Source

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