ETH Price: $3,106.11 (+1.10%)
Gas: 7 Gwei

Token

WatcherEyesOfLegends (WEoL)
 

Overview

Max Total Supply

3,333 WEoL

Holders

637

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 WEoL
0x9d4e038941104a4f80c8dfc39a4c604a4eabf161
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:
WatcherEyesOfLegends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/*
@@@@@````````````````````````````````````````@@@@@
@`````````````````@@@@@@@@@@@@@@`````````````````@
@``````````````@@@@@@@@@@@@@@@@@@@@``````````````@
```````````@@@@@```````````````````@@@@@@`````````
``````````@@@@```````````````````````@@@@@@@@`````
````````@@@@````````@@@@@@@@@````````````@@@@@@@@`
```````@@@````````@@@@@@@@@@@@@```````````@@@@@@@`
``````@@@@```````@@@ WATCHER @@@`````````@@@@@@```
`````@@@@````````@@@@@ by soco @```````````@@@````
```@@@@@``````````@@@@@@@@@@@@@```````````@@@`````
`@@@@@``````````````@@@@@@@@@```````````@@@@``````
```@@@@@```````````````````````````@@@@@@`````````
````````@@@@@```````````````````@@@@@@@@``````````
@```````````````@@@@@@@@@@@@@@@@@````````````````@
@``````````````````@@@@@@@@@@@@``````````````````@
@@@@@````````````````````````````````````````@@@@@
*/

// File: WatcherEyesOfLegends_flat.sol


// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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



pragma solidity ^0.8.0;





contract WatcherEyesOfLegends is Ownable, ERC721A, ReentrancyGuard {
    uint256 public tokenCount;
    uint256 private mintPrice = 0.006 ether;
    uint256 private mintLimit = 100;
    uint256 public psMintLimit = 10;
    uint256 public freeMintLimit = 3;
    uint256 public _totalSupply = 6666;
    uint256 public currentSupply= 3333;
    bool public wlSaleStart = false;
    bool public saleStart = false;
    bool public secondWlSaleStart = false;
    bool public secondSaleStart = false;
    mapping(address => uint256) public psMinted; 
    mapping(address => uint256) public freeMinted; 
    mapping(address => uint256) public secondPsMinted; 
    mapping(address => uint256) public secondFreeMinted; 
    mapping(address => bool) public _whiteLists; 

  constructor(
  ) ERC721A("WatcherEyesOfLegends", "WEoL", mintLimit, _totalSupply) {
     tokenCount = 0;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  function partnerMint(uint256 quantity, address to) external onlyOwner {
    require(
        (quantity + tokenCount) <= (_totalSupply), 
        "too many already minted before patner mint"
    );
    require(
        (quantity + tokenCount) <= (currentSupply), 
        "too many already minted before patner mint"
    );
    _safeMint(to, quantity);
    tokenCount += quantity;
  }
  function psMint(uint256 quantity) public payable nonReentrant {
    require(psMintLimit >= quantity, "limit over");
    require(psMintLimit >= psMinted[msg.sender] + quantity, "You have no Mint left");
    require(msg.value == mintPrice * quantity, "Value sent is not correct");
    require((quantity + tokenCount) <= (currentSupply), "Sorry. No more NFTs");
    require(saleStart, "Sale Paused");
         
    psMinted[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
    tokenCount += quantity;
  }
  function socondPsMint(uint256 quantity) public payable nonReentrant {
    require(psMintLimit >= quantity, "limit over");
    require(psMintLimit >= secondPsMinted[msg.sender] + quantity, "You have no Mint left");
    require(msg.value == mintPrice * quantity, "Value sent is not correct");
    require((quantity + tokenCount) <= (currentSupply), "Sorry. No more NFTs");
    require(secondSaleStart, "Sale Paused");
         
    secondPsMinted[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
    tokenCount += quantity;
  }

  function freeMint(uint256 quantity) public{
    require(freeMintLimit >= quantity, "Free mint limit over");
    require(freeMintLimit >= freeMinted[msg.sender] + quantity, "You have no Mint left");
    require((quantity + tokenCount) <= (currentSupply), "Sorry. No more NFTs");
    require(wlSaleStart, "Sale Paused");
    require(_whiteLists[msg.sender] , "Your adress is not on the Whitelist.");

         
    freeMinted[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
    tokenCount += quantity;
  }
  function secondFreeMint(uint256 quantity) public{
    require(freeMintLimit >= quantity, "Free mint limit over");
    require(freeMintLimit >= secondFreeMinted[msg.sender] + quantity, "You have no Mint left");
    require((quantity + tokenCount) <= (currentSupply), "Sorry. No more NFTs");
    require(secondWlSaleStart, "Sale Paused");
    require(_whiteLists[msg.sender] , "Your adress is not on the Whitelist.");

    secondFreeMinted[msg.sender] += quantity;
    _safeMint(msg.sender, quantity);
    tokenCount += quantity;
  }

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

  function withdrawRevenueShare() external onlyOwner {
    uint256 sendAmount = address(this).balance;

    address creator = payable(0x1C2457B8959824C6c57A8128b2f88a3C566877f9); 
    address engineer = payable(0x7Abb65089055fB2bf5b247c89E3C11F7dB861213); 
    address partner = payable(0xc0095c3b4C5021C867Cf39758bfcC803392D471d); 

    bool success;

    (success, ) = creator.call{value: (sendAmount * 300/1000)}("");
    require(success, "Failed to withdraw Ether");

    (success, ) = engineer.call{value: (sendAmount * 400/1000)}("");
    require(success, "Failed to withdraw Ether");

    (success, ) = partner.call{value: (sendAmount * 300/1000)}("");
    require(success, "Failed to withdraw Ether");
  }

  function walletOfOwner(address _address) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_address);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
      for (uint256 i; i < ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_address, i);
      }
    return tokenIds;
  }

  // // 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 pushMultiWL(address[] memory list, bool _state) public virtual onlyOwner{
    for (uint i = 0; i < list.length; i++) {
      _whiteLists[list[i]]= _state;
    }
  }

  function setCurrentSupply(uint256 newSupply) external onlyOwner {
    require(_totalSupply >= newSupply, "totalSupplyover");
    currentSupply = newSupply;
  }

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

  function switchSale(bool _state) external onlyOwner {
      saleStart = _state;
  }
  function switchWlSale(bool _state) external onlyOwner {
      wlSaleStart = _state;
  }
  function switchSecondSale(bool _state) external onlyOwner {
      secondSaleStart = _state;
  }
  function switchWlSecondSale(bool _state) external onlyOwner {
      secondWlSaleStart = _state;
  }

  function setPrice(uint256 newPrice) external onlyOwner {
      mintPrice = newPrice;
 }

  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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteLists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"partnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"psMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"psMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"pushMultiWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"secondFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"secondPsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondWlSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newSupply","type":"uint256"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"socondPsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchSecondSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchWlSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"switchWlSecondSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tokenCount","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRevenueShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlSaleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c060405260006001819055600855661550f7dca70000600b556064600c55600a600d556003600e55611a0a600f55610d056010556011805463ffffffff191690553480156200004e57600080fd5b506040518060400160405280601481526020017f57617463686572457965734f664c6567656e64730000000000000000000000008152506040518060400160405280600481526020016315d15bd360e21b815250600c54600f54620000c2620000bc620001d860201b60201c565b620001dc565b600081116200012f5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001915760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000126565b8351620001a69060029060208701906200022c565b508251620001bc9060039060208601906200022c565b5060a091909152608052505060016009556000600a556200030f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023a90620002d2565b90600052602060002090601f0160209004810192826200025e5760008555620002a9565b82601f106200027957805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a95782518255916020019190600101906200028c565b50620002b7929150620002bb565b5090565b5b80821115620002b75760008155600101620002bc565b600181811c90821680620002e757607f821691505b602082108114156200030957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516135716200034a60003960008181612527015281816125510152612a1301526000818161232d015261235f01526135716000f3fe60806040526004361061031a5760003560e01c8063715018a6116101ab578063ac446002116100f7578063cc7aba7f11610095578063dc5473011161006f578063dc54730114610967578063e985e9c514610987578063f2fde38b146109d0578063f4ef20dd146109f057600080fd5b8063cc7aba7f14610901578063d7224ba014610931578063dc33e6811461094757600080fd5b8063b4ef3f95116100d1578063b4ef3f951461088b578063b88d4fde146108a1578063c68c770c146108c1578063c87b56dd146108e157600080fd5b8063ac4460021461083c578063b1488be314610851578063b4ded4fe1461087157600080fd5b80639231ab2a116101645780639f181b5e1161013e5780639f181b5e146107d2578063a22cb465146107e8578063aa38cd3214610808578063ab0bcc411461081d57600080fd5b80639231ab2a14610743578063942958f41461079057806395d89b41146107bd57600080fd5b8063715018a61461069a578063771282f6146106af5780637c635c52146106c55780637c928fe9146106e55780638da5cb5b1461070557806391b7f5ed1461072357600080fd5b80633eaaf86b1161026a5780634d528a30116102235780636352211e116101fd5780636352211e1461061a5780636d9814a61461063a578063701b3f541461065a57806370a082311461067a57600080fd5b80634d528a30146105ba5780634f6ccce7146105da57806355f804b3146105fa57600080fd5b80633eaaf86b146104ea57806342842e0e14610500578063438b630014610520578063474d520d1461054d5780634cc453b61461057a5780634d482f38146105a757600080fd5b806323b872dd116102d75780632d20fb60116102b15780632d20fb601461045c5780632f745c591461047c57806330265f931461049c578063389fcf06146104bd57600080fd5b806323b872dd146104095780632b3dce1d146104295780632ba7db1f1461043c57600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc1461037657806308346d85146103ae578063095ea7b3146103d257806318160ddd146103f4575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612f69565b610a10565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610a7d565b60405161034b919061312c565b34801561038257600080fd5b50610396610391366004613014565b610b0f565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103c4600e5481565b60405190815260200161034b565b3480156103de57600080fd5b506103f26103ed366004612e5f565b610b9f565b005b34801561040057600080fd5b506001546103c4565b34801561041557600080fd5b506103f2610424366004612d3a565b610cb7565b6103f2610437366004613014565b610cc2565b34801561044857600080fd5b506103f2610457366004612f4e565b610e60565b34801561046857600080fd5b506103f2610477366004613014565b610ea4565b34801561048857600080fd5b506103c4610497366004612e5f565b610f07565b3480156104a857600080fd5b5060115461033f906301000000900460ff1681565b3480156104c957600080fd5b506103c46104d8366004612cec565b60136020526000908152604090205481565b3480156104f657600080fd5b506103c4600f5481565b34801561050c57600080fd5b506103f261051b366004612d3a565b61107f565b34801561052c57600080fd5b5061054061053b366004612cec565b61109a565b60405161034b91906130e8565b34801561055957600080fd5b506103c4610568366004612cec565b60156020526000908152604090205481565b34801561058657600080fd5b506103c4610595366004612cec565b60146020526000908152604090205481565b6103f26105b5366004613014565b61113b565b3480156105c657600080fd5b5060115461033f9062010000900460ff1681565b3480156105e657600080fd5b506103c46105f5366004613014565b6112ac565b34801561060657600080fd5b506103f2610615366004612fa3565b611315565b34801561062657600080fd5b50610396610635366004613014565b61134b565b34801561064657600080fd5b506103f261065536600461302d565b61135d565b34801561066657600080fd5b506103f2610675366004612e89565b611408565b34801561068657600080fd5b506103c4610695366004612cec565b611499565b3480156106a657600080fd5b506103f261152a565b3480156106bb57600080fd5b506103c460105481565b3480156106d157600080fd5b506103f26106e0366004612f4e565b611560565b3480156106f157600080fd5b506103f2610700366004613014565b61159d565b34801561071157600080fd5b506000546001600160a01b0316610396565b34801561072f57600080fd5b506103f261073e366004613014565b6116ea565b34801561074f57600080fd5b5061076361075e366004613014565b611719565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161034b565b34801561079c57600080fd5b506103c46107ab366004612cec565b60126020526000908152604090205481565b3480156107c957600080fd5b50610369611736565b3480156107de57600080fd5b506103c4600a5481565b3480156107f457600080fd5b506103f2610803366004612e35565b611745565b34801561081457600080fd5b506103f261180a565b34801561082957600080fd5b5060115461033f90610100900460ff1681565b34801561084857600080fd5b506103f2611a09565b34801561085d57600080fd5b506103f261086c366004612f4e565b611ae6565b34801561087d57600080fd5b5060115461033f9060ff1681565b34801561089757600080fd5b506103c4600d5481565b3480156108ad57600080fd5b506103f26108bc366004612d76565b611b2e565b3480156108cd57600080fd5b506103f26108dc366004612f4e565b611b67565b3480156108ed57600080fd5b506103696108fc366004613014565b611bad565b34801561090d57600080fd5b5061033f61091c366004612cec565b60166020526000908152604090205460ff1681565b34801561093d57600080fd5b506103c460085481565b34801561095357600080fd5b506103c4610962366004612cec565b611c7a565b34801561097357600080fd5b506103f2610982366004613014565b611c85565b34801561099357600080fd5b5061033f6109a2366004612d07565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109dc57600080fd5b506103f26109eb366004612cec565b611cf8565b3480156109fc57600080fd5b506103f2610a0b366004613014565b611d93565b60006001600160e01b031982166380ac58cd60e01b1480610a4157506001600160e01b03198216635b5e139f60e01b145b80610a5c57506001600160e01b0319821663780e9d6360e01b145b80610a7757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a8c90613463565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890613463565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1c826001541190565b610b835760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610baa8261134b565b9050806001600160a01b0316836001600160a01b03161415610c195760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b7a565b336001600160a01b0382161480610c355750610c3581336109a2565b610ca75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b7a565b610cb2838383611ebc565b505050565b610cb2838383611f18565b60026009541415610ce55760405162461bcd60e51b8152600401610b7a9061330d565b6002600955600d54811115610d295760405162461bcd60e51b815260206004820152600a6024820152693634b6b4ba1037bb32b960b11b6044820152606401610b7a565b33600090815260126020526040902054610d44908290613396565b600d541015610d655760405162461bcd60e51b8152600401610b7a90613254565b80600b54610d7391906133c2565b3414610dbd5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610b7a565b601054600a54610dcd9083613396565b1115610deb5760405162461bcd60e51b8152600401610b7a906131f2565b601154610100900460ff16610e125760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526012602052604081208054839290610e31908490613396565b90915550610e419050338261229e565b80600a6000828254610e539190613396565b9091555050600160095550565b6000546001600160a01b03163314610e8a5760405162461bcd60e51b8152600401610b7a9061321f565b601180549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610b7a9061321f565b60026009541415610ef15760405162461bcd60e51b8152600401610b7a9061330d565b6002600955610eff816122bc565b506001600955565b6000610f1283611499565b8210610f6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b7a565b6000610f7660015490565b905060008060005b8381101561101f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fd057805192505b876001600160a01b0316836001600160a01b0316141561100c5786841415610ffe57509350610a7792505050565b836110088161349e565b9450505b50806110178161349e565b915050610f7e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b7a565b610cb283838360405180602001604052806000815250611b2e565b606060006110a783611499565b90506000816001600160401b038111156110c3576110c361350f565b6040519080825280602002602001820160405280156110ec578160200160208202803683370190505b50905060005b82811015611133576111048582610f07565b828281518110611116576111166134f9565b60209081029190910101528061112b8161349e565b9150506110f2565b509392505050565b6002600954141561115e5760405162461bcd60e51b8152600401610b7a9061330d565b6002600955600d548111156111a25760405162461bcd60e51b815260206004820152600a6024820152693634b6b4ba1037bb32b960b11b6044820152606401610b7a565b336000908152601460205260409020546111bd908290613396565b600d5410156111de5760405162461bcd60e51b8152600401610b7a90613254565b80600b546111ec91906133c2565b34146112365760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610b7a565b601054600a546112469083613396565b11156112645760405162461bcd60e51b8152600401610b7a906131f2565b6011546301000000900460ff1661128d5760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526014602052604081208054839290610e31908490613396565b60006112b760015490565b82106113115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b7a565b5090565b6000546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610b7a9061321f565b610cb260178383612c30565b6000611356826124a5565b5192915050565b6000546001600160a01b031633146113875760405162461bcd60e51b8152600401610b7a9061321f565b600f54600a546113979084613396565b11156113b55760405162461bcd60e51b8152600401610b7a9061313f565b601054600a546113c59084613396565b11156113e35760405162461bcd60e51b8152600401610b7a9061313f565b6113ed818361229e565b81600a60008282546113ff9190613396565b90915550505050565b6000546001600160a01b031633146114325760405162461bcd60e51b8152600401610b7a9061321f565b60005b8251811015610cb2578160166000858481518110611455576114556134f9565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806114918161349e565b915050611435565b60006001600160a01b0382166115055760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b7a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115545760405162461bcd60e51b8152600401610b7a9061321f565b61155e600061264e565b565b6000546001600160a01b0316331461158a5760405162461bcd60e51b8152600401610b7a9061321f565b6011805460ff1916911515919091179055565b80600e5410156115e65760405162461bcd60e51b8152602060048201526014602482015273233932b29036b4b73a103634b6b4ba1037bb32b960611b6044820152606401610b7a565b33600090815260136020526040902054611601908290613396565b600e5410156116225760405162461bcd60e51b8152600401610b7a90613254565b601054600a546116329083613396565b11156116505760405162461bcd60e51b8152600401610b7a906131f2565b60115460ff166116725760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526016602052604090205460ff166116a15760405162461bcd60e51b8152600401610b7a90613189565b33600090815260136020526040812080548392906116c0908490613396565b909155506116d09050338261229e565b80600a60008282546116e29190613396565b909155505050565b6000546001600160a01b031633146117145760405162461bcd60e51b8152600401610b7a9061321f565b600b55565b6040805180820190915260008082526020820152610a77826124a5565b606060038054610a8c90613463565b6001600160a01b03821633141561179e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b7a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146118345760405162461bcd60e51b8152600401610b7a9061321f565b47731c2457b8959824c6c57a8128b2f88a3c566877f9737abb65089055fb2bf5b247c89e3c11f7db86121373c0095c3b4c5021c867cf39758bfcc803392d471d6000836103e86118868761012c6133c2565b61189091906133ae565b604051600081818185875af1925050503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b505080915050806118f45760405162461bcd60e51b8152600401610b7a90613283565b6001600160a01b0383166103e861190d876101906133c2565b61191791906133ae565b604051600081818185875af1925050503d8060008114611953576040519150601f19603f3d011682016040523d82523d6000602084013e611958565b606091505b5050809150508061197b5760405162461bcd60e51b8152600401610b7a90613283565b6001600160a01b0382166103e86119948761012c6133c2565b61199e91906133ae565b604051600081818185875af1925050503d80600081146119da576040519150601f19603f3d011682016040523d82523d6000602084013e6119df565b606091505b50508091505080611a025760405162461bcd60e51b8152600401610b7a90613283565b5050505050565b6000546001600160a01b03163314611a335760405162461bcd60e51b8152600401610b7a9061321f565b60026009541415611a565760405162461bcd60e51b8152600401610b7a9061330d565b6002600955604051600090339047908381818185875af1925050503d8060008114611a9d576040519150601f19603f3d011682016040523d82523d6000602084013e611aa2565b606091505b5050905080610eff5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b7a565b6000546001600160a01b03163314611b105760405162461bcd60e51b8152600401610b7a9061321f565b6011805491151563010000000263ff00000019909216919091179055565b611b39848484611f18565b611b458484848461269e565b611b615760405162461bcd60e51b8152600401610b7a906132ba565b50505050565b6000546001600160a01b03163314611b915760405162461bcd60e51b8152600401610b7a9061321f565b60118054911515620100000262ff000019909216919091179055565b6060611bba826001541190565b611c1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7a565b6000611c286127ac565b90506000815111611c485760405180602001604052806000815250611c73565b80611c52846127bb565b604051602001611c6392919061307c565b6040516020818303038152906040525b9392505050565b6000610a77826128b8565b6000546001600160a01b03163314611caf5760405162461bcd60e51b8152600401610b7a9061321f565b80600f541015611cf35760405162461bcd60e51b815260206004820152600f60248201526e3a37ba30b629bab838363cb7bb32b960891b6044820152606401610b7a565b601055565b6000546001600160a01b03163314611d225760405162461bcd60e51b8152600401610b7a9061321f565b6001600160a01b038116611d875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7a565b611d908161264e565b50565b80600e541015611ddc5760405162461bcd60e51b8152602060048201526014602482015273233932b29036b4b73a103634b6b4ba1037bb32b960611b6044820152606401610b7a565b33600090815260156020526040902054611df7908290613396565b600e541015611e185760405162461bcd60e51b8152600401610b7a90613254565b601054600a54611e289083613396565b1115611e465760405162461bcd60e51b8152600401610b7a906131f2565b60115462010000900460ff16611e6e5760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526016602052604090205460ff16611e9d5760405162461bcd60e51b8152600401610b7a90613189565b33600090815260156020526040812080548392906116c0908490613396565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f23826124a5565b80519091506000906001600160a01b0316336001600160a01b03161480611f5a575033611f4f84610b0f565b6001600160a01b0316145b80611f6c57508151611f6c90336109a2565b905080611fd65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b7a565b846001600160a01b031682600001516001600160a01b03161461204a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b7a565b6001600160a01b0384166120ae5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b7a565b6120be6000848460000151611ebc565b6001600160a01b03851660009081526005602052604081208054600192906120f09084906001600160801b03166133e1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261213c91859116613374565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121c3846001613396565b6000818152600460205260409020549091506001600160a01b0316612254576121ed816001541190565b156122545760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6122b8828260405180602001604052806000815250612956565b5050565b6008548161230c5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b7a565b6000600161231a8484613396565b6123249190613409565b905061235160017f0000000000000000000000000000000000000000000000000000000000000000613409565b8111156123865761238360017f0000000000000000000000000000000000000000000000000000000000000000613409565b90505b612391816001541190565b6123ec5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b7a565b815b818111612491576000818152600460205260409020546001600160a01b031661247f57600061241c826124a5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124898161349e565b9150506123ee565b5061249d816001613396565b600855505050565b60408051808201909152600080825260208201526124c4826001541190565b6125235760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b7a565b60007f00000000000000000000000000000000000000000000000000000000000000008310612584576125767f000000000000000000000000000000000000000000000000000000000000000084613409565b612581906001613396565b90505b825b8181106125ed576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125da57949350505050565b50806125e58161344c565b915050612586565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b7a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156127a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126e29033908990889088906004016130ab565b602060405180830381600087803b1580156126fc57600080fd5b505af192505050801561272c575060408051601f3d908101601f1916820190925261272991810190612f86565b60015b612786573d80801561275a576040519150601f19603f3d011682016040523d82523d6000602084013e61275f565b606091505b50805161277e5760405162461bcd60e51b8152600401610b7a906132ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127a4565b5060015b949350505050565b606060178054610a8c90613463565b6060816127df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280957806127f38161349e565b91506128029050600a836133ae565b91506127e3565b6000816001600160401b038111156128235761282361350f565b6040519080825280601f01601f19166020018201604052801561284d576020820181803683370190505b5090505b84156127a457612862600183613409565b915061286f600a866134b9565b61287a906030613396565b60f81b81838151811061288f5761288f6134f9565b60200101906001600160f81b031916908160001a9053506128b1600a866133ae565b9450612851565b60006001600160a01b03821661292a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b7a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166129b95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b7a565b6129c4816001541190565b15612a115760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b7a565b7f0000000000000000000000000000000000000000000000000000000000000000831115612a8c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b7a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612ae8908790613374565b6001600160801b03168152602001858360200151612b069190613374565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612c255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612be9600088848861269e565b612c055760405162461bcd60e51b8152600401610b7a906132ba565b81612c0f8161349e565b9250508080612c1d9061349e565b915050612b9c565b506001819055612296565b828054612c3c90613463565b90600052602060002090601f016020900481019282612c5e5760008555612ca4565b82601f10612c775782800160ff19823516178555612ca4565b82800160010185558215612ca4579182015b82811115612ca4578235825591602001919060010190612c89565b506113119291505b808211156113115760008155600101612cac565b80356001600160a01b0381168114612cd757600080fd5b919050565b80358015158114612cd757600080fd5b600060208284031215612cfe57600080fd5b611c7382612cc0565b60008060408385031215612d1a57600080fd5b612d2383612cc0565b9150612d3160208401612cc0565b90509250929050565b600080600060608486031215612d4f57600080fd5b612d5884612cc0565b9250612d6660208501612cc0565b9150604084013590509250925092565b60008060008060808587031215612d8c57600080fd5b612d9585612cc0565b93506020612da4818701612cc0565b93506040860135925060608601356001600160401b0380821115612dc757600080fd5b818801915088601f830112612ddb57600080fd5b813581811115612ded57612ded61350f565b612dff601f8201601f19168501613344565b91508082528984828501011115612e1557600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612e4857600080fd5b612e5183612cc0565b9150612d3160208401612cdc565b60008060408385031215612e7257600080fd5b612e7b83612cc0565b946020939093013593505050565b60008060408385031215612e9c57600080fd5b82356001600160401b0380821115612eb357600080fd5b818501915085601f830112612ec757600080fd5b8135602082821115612edb57612edb61350f565b8160051b9250612eec818401613344565b8281528181019085830185870184018b1015612f0757600080fd5b600096505b84871015612f3157612f1d81612cc0565b835260019690960195918301918301612f0c565b509650612f419050878201612cdc565b9450505050509250929050565b600060208284031215612f6057600080fd5b611c7382612cdc565b600060208284031215612f7b57600080fd5b8135611c7381613525565b600060208284031215612f9857600080fd5b8151611c7381613525565b60008060208385031215612fb657600080fd5b82356001600160401b0380821115612fcd57600080fd5b818501915085601f830112612fe157600080fd5b813581811115612ff057600080fd5b86602082850101111561300257600080fd5b60209290920196919550909350505050565b60006020828403121561302657600080fd5b5035919050565b6000806040838503121561304057600080fd5b82359150612d3160208401612cc0565b60008151808452613068816020860160208601613420565b601f01601f19169290920160200192915050565b6000835161308e818460208801613420565b8351908301906130a2818360208801613420565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130de90830184613050565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561312057835183529284019291840191600101613104565b50909695505050505050565b602081526000611c736020830184613050565b6020808252602a908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652070604082015269185d1b995c881b5a5b9d60b21b606082015260800190565b60208082526024908201527f596f757220616472657373206973206e6f74206f6e207468652057686974656c60408201526334b9ba1760e11b606082015260800190565b6020808252600b908201526a14d85b194814185d5cd95960aa1b604082015260600190565b602080825260139082015272536f7272792e204e6f206d6f7265204e46547360681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260159082015274165bdd481a185d99481b9bc8135a5b9d081b19599d605a1b604082015260600190565b60208082526018908201527f4661696c656420746f2077697468647261772045746865720000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561336c5761336c61350f565b604052919050565b60006001600160801b038083168185168083038211156130a2576130a26134cd565b600082198211156133a9576133a96134cd565b500190565b6000826133bd576133bd6134e3565b500490565b60008160001904831182151516156133dc576133dc6134cd565b500290565b60006001600160801b0383811690831681811015613401576134016134cd565b039392505050565b60008282101561341b5761341b6134cd565b500390565b60005b8381101561343b578181015183820152602001613423565b83811115611b615750506000910152565b60008161345b5761345b6134cd565b506000190190565b600181811c9082168061347757607f821691505b6020821081141561349857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134b2576134b26134cd565b5060010190565b6000826134c8576134c86134e3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d9057600080fdfea26469706673582212205db1a3893359970f059561659eaa6f9eb1377e5e7c5838d101d3babe6648db0564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c8063715018a6116101ab578063ac446002116100f7578063cc7aba7f11610095578063dc5473011161006f578063dc54730114610967578063e985e9c514610987578063f2fde38b146109d0578063f4ef20dd146109f057600080fd5b8063cc7aba7f14610901578063d7224ba014610931578063dc33e6811461094757600080fd5b8063b4ef3f95116100d1578063b4ef3f951461088b578063b88d4fde146108a1578063c68c770c146108c1578063c87b56dd146108e157600080fd5b8063ac4460021461083c578063b1488be314610851578063b4ded4fe1461087157600080fd5b80639231ab2a116101645780639f181b5e1161013e5780639f181b5e146107d2578063a22cb465146107e8578063aa38cd3214610808578063ab0bcc411461081d57600080fd5b80639231ab2a14610743578063942958f41461079057806395d89b41146107bd57600080fd5b8063715018a61461069a578063771282f6146106af5780637c635c52146106c55780637c928fe9146106e55780638da5cb5b1461070557806391b7f5ed1461072357600080fd5b80633eaaf86b1161026a5780634d528a30116102235780636352211e116101fd5780636352211e1461061a5780636d9814a61461063a578063701b3f541461065a57806370a082311461067a57600080fd5b80634d528a30146105ba5780634f6ccce7146105da57806355f804b3146105fa57600080fd5b80633eaaf86b146104ea57806342842e0e14610500578063438b630014610520578063474d520d1461054d5780634cc453b61461057a5780634d482f38146105a757600080fd5b806323b872dd116102d75780632d20fb60116102b15780632d20fb601461045c5780632f745c591461047c57806330265f931461049c578063389fcf06146104bd57600080fd5b806323b872dd146104095780632b3dce1d146104295780632ba7db1f1461043c57600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc1461037657806308346d85146103ae578063095ea7b3146103d257806318160ddd146103f4575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612f69565b610a10565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610a7d565b60405161034b919061312c565b34801561038257600080fd5b50610396610391366004613014565b610b0f565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b506103c4600e5481565b60405190815260200161034b565b3480156103de57600080fd5b506103f26103ed366004612e5f565b610b9f565b005b34801561040057600080fd5b506001546103c4565b34801561041557600080fd5b506103f2610424366004612d3a565b610cb7565b6103f2610437366004613014565b610cc2565b34801561044857600080fd5b506103f2610457366004612f4e565b610e60565b34801561046857600080fd5b506103f2610477366004613014565b610ea4565b34801561048857600080fd5b506103c4610497366004612e5f565b610f07565b3480156104a857600080fd5b5060115461033f906301000000900460ff1681565b3480156104c957600080fd5b506103c46104d8366004612cec565b60136020526000908152604090205481565b3480156104f657600080fd5b506103c4600f5481565b34801561050c57600080fd5b506103f261051b366004612d3a565b61107f565b34801561052c57600080fd5b5061054061053b366004612cec565b61109a565b60405161034b91906130e8565b34801561055957600080fd5b506103c4610568366004612cec565b60156020526000908152604090205481565b34801561058657600080fd5b506103c4610595366004612cec565b60146020526000908152604090205481565b6103f26105b5366004613014565b61113b565b3480156105c657600080fd5b5060115461033f9062010000900460ff1681565b3480156105e657600080fd5b506103c46105f5366004613014565b6112ac565b34801561060657600080fd5b506103f2610615366004612fa3565b611315565b34801561062657600080fd5b50610396610635366004613014565b61134b565b34801561064657600080fd5b506103f261065536600461302d565b61135d565b34801561066657600080fd5b506103f2610675366004612e89565b611408565b34801561068657600080fd5b506103c4610695366004612cec565b611499565b3480156106a657600080fd5b506103f261152a565b3480156106bb57600080fd5b506103c460105481565b3480156106d157600080fd5b506103f26106e0366004612f4e565b611560565b3480156106f157600080fd5b506103f2610700366004613014565b61159d565b34801561071157600080fd5b506000546001600160a01b0316610396565b34801561072f57600080fd5b506103f261073e366004613014565b6116ea565b34801561074f57600080fd5b5061076361075e366004613014565b611719565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161034b565b34801561079c57600080fd5b506103c46107ab366004612cec565b60126020526000908152604090205481565b3480156107c957600080fd5b50610369611736565b3480156107de57600080fd5b506103c4600a5481565b3480156107f457600080fd5b506103f2610803366004612e35565b611745565b34801561081457600080fd5b506103f261180a565b34801561082957600080fd5b5060115461033f90610100900460ff1681565b34801561084857600080fd5b506103f2611a09565b34801561085d57600080fd5b506103f261086c366004612f4e565b611ae6565b34801561087d57600080fd5b5060115461033f9060ff1681565b34801561089757600080fd5b506103c4600d5481565b3480156108ad57600080fd5b506103f26108bc366004612d76565b611b2e565b3480156108cd57600080fd5b506103f26108dc366004612f4e565b611b67565b3480156108ed57600080fd5b506103696108fc366004613014565b611bad565b34801561090d57600080fd5b5061033f61091c366004612cec565b60166020526000908152604090205460ff1681565b34801561093d57600080fd5b506103c460085481565b34801561095357600080fd5b506103c4610962366004612cec565b611c7a565b34801561097357600080fd5b506103f2610982366004613014565b611c85565b34801561099357600080fd5b5061033f6109a2366004612d07565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109dc57600080fd5b506103f26109eb366004612cec565b611cf8565b3480156109fc57600080fd5b506103f2610a0b366004613014565b611d93565b60006001600160e01b031982166380ac58cd60e01b1480610a4157506001600160e01b03198216635b5e139f60e01b145b80610a5c57506001600160e01b0319821663780e9d6360e01b145b80610a7757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a8c90613463565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890613463565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1c826001541190565b610b835760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610baa8261134b565b9050806001600160a01b0316836001600160a01b03161415610c195760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b7a565b336001600160a01b0382161480610c355750610c3581336109a2565b610ca75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b7a565b610cb2838383611ebc565b505050565b610cb2838383611f18565b60026009541415610ce55760405162461bcd60e51b8152600401610b7a9061330d565b6002600955600d54811115610d295760405162461bcd60e51b815260206004820152600a6024820152693634b6b4ba1037bb32b960b11b6044820152606401610b7a565b33600090815260126020526040902054610d44908290613396565b600d541015610d655760405162461bcd60e51b8152600401610b7a90613254565b80600b54610d7391906133c2565b3414610dbd5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610b7a565b601054600a54610dcd9083613396565b1115610deb5760405162461bcd60e51b8152600401610b7a906131f2565b601154610100900460ff16610e125760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526012602052604081208054839290610e31908490613396565b90915550610e419050338261229e565b80600a6000828254610e539190613396565b9091555050600160095550565b6000546001600160a01b03163314610e8a5760405162461bcd60e51b8152600401610b7a9061321f565b601180549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610b7a9061321f565b60026009541415610ef15760405162461bcd60e51b8152600401610b7a9061330d565b6002600955610eff816122bc565b506001600955565b6000610f1283611499565b8210610f6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b7a565b6000610f7660015490565b905060008060005b8381101561101f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fd057805192505b876001600160a01b0316836001600160a01b0316141561100c5786841415610ffe57509350610a7792505050565b836110088161349e565b9450505b50806110178161349e565b915050610f7e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b7a565b610cb283838360405180602001604052806000815250611b2e565b606060006110a783611499565b90506000816001600160401b038111156110c3576110c361350f565b6040519080825280602002602001820160405280156110ec578160200160208202803683370190505b50905060005b82811015611133576111048582610f07565b828281518110611116576111166134f9565b60209081029190910101528061112b8161349e565b9150506110f2565b509392505050565b6002600954141561115e5760405162461bcd60e51b8152600401610b7a9061330d565b6002600955600d548111156111a25760405162461bcd60e51b815260206004820152600a6024820152693634b6b4ba1037bb32b960b11b6044820152606401610b7a565b336000908152601460205260409020546111bd908290613396565b600d5410156111de5760405162461bcd60e51b8152600401610b7a90613254565b80600b546111ec91906133c2565b34146112365760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610b7a565b601054600a546112469083613396565b11156112645760405162461bcd60e51b8152600401610b7a906131f2565b6011546301000000900460ff1661128d5760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526014602052604081208054839290610e31908490613396565b60006112b760015490565b82106113115760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b7a565b5090565b6000546001600160a01b0316331461133f5760405162461bcd60e51b8152600401610b7a9061321f565b610cb260178383612c30565b6000611356826124a5565b5192915050565b6000546001600160a01b031633146113875760405162461bcd60e51b8152600401610b7a9061321f565b600f54600a546113979084613396565b11156113b55760405162461bcd60e51b8152600401610b7a9061313f565b601054600a546113c59084613396565b11156113e35760405162461bcd60e51b8152600401610b7a9061313f565b6113ed818361229e565b81600a60008282546113ff9190613396565b90915550505050565b6000546001600160a01b031633146114325760405162461bcd60e51b8152600401610b7a9061321f565b60005b8251811015610cb2578160166000858481518110611455576114556134f9565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806114918161349e565b915050611435565b60006001600160a01b0382166115055760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b7a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115545760405162461bcd60e51b8152600401610b7a9061321f565b61155e600061264e565b565b6000546001600160a01b0316331461158a5760405162461bcd60e51b8152600401610b7a9061321f565b6011805460ff1916911515919091179055565b80600e5410156115e65760405162461bcd60e51b8152602060048201526014602482015273233932b29036b4b73a103634b6b4ba1037bb32b960611b6044820152606401610b7a565b33600090815260136020526040902054611601908290613396565b600e5410156116225760405162461bcd60e51b8152600401610b7a90613254565b601054600a546116329083613396565b11156116505760405162461bcd60e51b8152600401610b7a906131f2565b60115460ff166116725760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526016602052604090205460ff166116a15760405162461bcd60e51b8152600401610b7a90613189565b33600090815260136020526040812080548392906116c0908490613396565b909155506116d09050338261229e565b80600a60008282546116e29190613396565b909155505050565b6000546001600160a01b031633146117145760405162461bcd60e51b8152600401610b7a9061321f565b600b55565b6040805180820190915260008082526020820152610a77826124a5565b606060038054610a8c90613463565b6001600160a01b03821633141561179e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b7a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146118345760405162461bcd60e51b8152600401610b7a9061321f565b47731c2457b8959824c6c57a8128b2f88a3c566877f9737abb65089055fb2bf5b247c89e3c11f7db86121373c0095c3b4c5021c867cf39758bfcc803392d471d6000836103e86118868761012c6133c2565b61189091906133ae565b604051600081818185875af1925050503d80600081146118cc576040519150601f19603f3d011682016040523d82523d6000602084013e6118d1565b606091505b505080915050806118f45760405162461bcd60e51b8152600401610b7a90613283565b6001600160a01b0383166103e861190d876101906133c2565b61191791906133ae565b604051600081818185875af1925050503d8060008114611953576040519150601f19603f3d011682016040523d82523d6000602084013e611958565b606091505b5050809150508061197b5760405162461bcd60e51b8152600401610b7a90613283565b6001600160a01b0382166103e86119948761012c6133c2565b61199e91906133ae565b604051600081818185875af1925050503d80600081146119da576040519150601f19603f3d011682016040523d82523d6000602084013e6119df565b606091505b50508091505080611a025760405162461bcd60e51b8152600401610b7a90613283565b5050505050565b6000546001600160a01b03163314611a335760405162461bcd60e51b8152600401610b7a9061321f565b60026009541415611a565760405162461bcd60e51b8152600401610b7a9061330d565b6002600955604051600090339047908381818185875af1925050503d8060008114611a9d576040519150601f19603f3d011682016040523d82523d6000602084013e611aa2565b606091505b5050905080610eff5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b7a565b6000546001600160a01b03163314611b105760405162461bcd60e51b8152600401610b7a9061321f565b6011805491151563010000000263ff00000019909216919091179055565b611b39848484611f18565b611b458484848461269e565b611b615760405162461bcd60e51b8152600401610b7a906132ba565b50505050565b6000546001600160a01b03163314611b915760405162461bcd60e51b8152600401610b7a9061321f565b60118054911515620100000262ff000019909216919091179055565b6060611bba826001541190565b611c1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b7a565b6000611c286127ac565b90506000815111611c485760405180602001604052806000815250611c73565b80611c52846127bb565b604051602001611c6392919061307c565b6040516020818303038152906040525b9392505050565b6000610a77826128b8565b6000546001600160a01b03163314611caf5760405162461bcd60e51b8152600401610b7a9061321f565b80600f541015611cf35760405162461bcd60e51b815260206004820152600f60248201526e3a37ba30b629bab838363cb7bb32b960891b6044820152606401610b7a565b601055565b6000546001600160a01b03163314611d225760405162461bcd60e51b8152600401610b7a9061321f565b6001600160a01b038116611d875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b7a565b611d908161264e565b50565b80600e541015611ddc5760405162461bcd60e51b8152602060048201526014602482015273233932b29036b4b73a103634b6b4ba1037bb32b960611b6044820152606401610b7a565b33600090815260156020526040902054611df7908290613396565b600e541015611e185760405162461bcd60e51b8152600401610b7a90613254565b601054600a54611e289083613396565b1115611e465760405162461bcd60e51b8152600401610b7a906131f2565b60115462010000900460ff16611e6e5760405162461bcd60e51b8152600401610b7a906131cd565b3360009081526016602052604090205460ff16611e9d5760405162461bcd60e51b8152600401610b7a90613189565b33600090815260156020526040812080548392906116c0908490613396565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f23826124a5565b80519091506000906001600160a01b0316336001600160a01b03161480611f5a575033611f4f84610b0f565b6001600160a01b0316145b80611f6c57508151611f6c90336109a2565b905080611fd65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b7a565b846001600160a01b031682600001516001600160a01b03161461204a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b7a565b6001600160a01b0384166120ae5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b7a565b6120be6000848460000151611ebc565b6001600160a01b03851660009081526005602052604081208054600192906120f09084906001600160801b03166133e1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261213c91859116613374565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121c3846001613396565b6000818152600460205260409020549091506001600160a01b0316612254576121ed816001541190565b156122545760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6122b8828260405180602001604052806000815250612956565b5050565b6008548161230c5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b7a565b6000600161231a8484613396565b6123249190613409565b905061235160017f0000000000000000000000000000000000000000000000000000000000001a0a613409565b8111156123865761238360017f0000000000000000000000000000000000000000000000000000000000001a0a613409565b90505b612391816001541190565b6123ec5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b7a565b815b818111612491576000818152600460205260409020546001600160a01b031661247f57600061241c826124a5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124898161349e565b9150506123ee565b5061249d816001613396565b600855505050565b60408051808201909152600080825260208201526124c4826001541190565b6125235760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b7a565b60007f00000000000000000000000000000000000000000000000000000000000000648310612584576125767f000000000000000000000000000000000000000000000000000000000000006484613409565b612581906001613396565b90505b825b8181106125ed576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125da57949350505050565b50806125e58161344c565b915050612586565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b7a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156127a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126e29033908990889088906004016130ab565b602060405180830381600087803b1580156126fc57600080fd5b505af192505050801561272c575060408051601f3d908101601f1916820190925261272991810190612f86565b60015b612786573d80801561275a576040519150601f19603f3d011682016040523d82523d6000602084013e61275f565b606091505b50805161277e5760405162461bcd60e51b8152600401610b7a906132ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127a4565b5060015b949350505050565b606060178054610a8c90613463565b6060816127df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280957806127f38161349e565b91506128029050600a836133ae565b91506127e3565b6000816001600160401b038111156128235761282361350f565b6040519080825280601f01601f19166020018201604052801561284d576020820181803683370190505b5090505b84156127a457612862600183613409565b915061286f600a866134b9565b61287a906030613396565b60f81b81838151811061288f5761288f6134f9565b60200101906001600160f81b031916908160001a9053506128b1600a866133ae565b9450612851565b60006001600160a01b03821661292a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b7a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166129b95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b7a565b6129c4816001541190565b15612a115760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b7a565b7f0000000000000000000000000000000000000000000000000000000000000064831115612a8c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b7a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612ae8908790613374565b6001600160801b03168152602001858360200151612b069190613374565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612c255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612be9600088848861269e565b612c055760405162461bcd60e51b8152600401610b7a906132ba565b81612c0f8161349e565b9250508080612c1d9061349e565b915050612b9c565b506001819055612296565b828054612c3c90613463565b90600052602060002090601f016020900481019282612c5e5760008555612ca4565b82601f10612c775782800160ff19823516178555612ca4565b82800160010185558215612ca4579182015b82811115612ca4578235825591602001919060010190612c89565b506113119291505b808211156113115760008155600101612cac565b80356001600160a01b0381168114612cd757600080fd5b919050565b80358015158114612cd757600080fd5b600060208284031215612cfe57600080fd5b611c7382612cc0565b60008060408385031215612d1a57600080fd5b612d2383612cc0565b9150612d3160208401612cc0565b90509250929050565b600080600060608486031215612d4f57600080fd5b612d5884612cc0565b9250612d6660208501612cc0565b9150604084013590509250925092565b60008060008060808587031215612d8c57600080fd5b612d9585612cc0565b93506020612da4818701612cc0565b93506040860135925060608601356001600160401b0380821115612dc757600080fd5b818801915088601f830112612ddb57600080fd5b813581811115612ded57612ded61350f565b612dff601f8201601f19168501613344565b91508082528984828501011115612e1557600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612e4857600080fd5b612e5183612cc0565b9150612d3160208401612cdc565b60008060408385031215612e7257600080fd5b612e7b83612cc0565b946020939093013593505050565b60008060408385031215612e9c57600080fd5b82356001600160401b0380821115612eb357600080fd5b818501915085601f830112612ec757600080fd5b8135602082821115612edb57612edb61350f565b8160051b9250612eec818401613344565b8281528181019085830185870184018b1015612f0757600080fd5b600096505b84871015612f3157612f1d81612cc0565b835260019690960195918301918301612f0c565b509650612f419050878201612cdc565b9450505050509250929050565b600060208284031215612f6057600080fd5b611c7382612cdc565b600060208284031215612f7b57600080fd5b8135611c7381613525565b600060208284031215612f9857600080fd5b8151611c7381613525565b60008060208385031215612fb657600080fd5b82356001600160401b0380821115612fcd57600080fd5b818501915085601f830112612fe157600080fd5b813581811115612ff057600080fd5b86602082850101111561300257600080fd5b60209290920196919550909350505050565b60006020828403121561302657600080fd5b5035919050565b6000806040838503121561304057600080fd5b82359150612d3160208401612cc0565b60008151808452613068816020860160208601613420565b601f01601f19169290920160200192915050565b6000835161308e818460208801613420565b8351908301906130a2818360208801613420565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130de90830184613050565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561312057835183529284019291840191600101613104565b50909695505050505050565b602081526000611c736020830184613050565b6020808252602a908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652070604082015269185d1b995c881b5a5b9d60b21b606082015260800190565b60208082526024908201527f596f757220616472657373206973206e6f74206f6e207468652057686974656c60408201526334b9ba1760e11b606082015260800190565b6020808252600b908201526a14d85b194814185d5cd95960aa1b604082015260600190565b602080825260139082015272536f7272792e204e6f206d6f7265204e46547360681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260159082015274165bdd481a185d99481b9bc8135a5b9d081b19599d605a1b604082015260600190565b60208082526018908201527f4661696c656420746f2077697468647261772045746865720000000000000000604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561336c5761336c61350f565b604052919050565b60006001600160801b038083168185168083038211156130a2576130a26134cd565b600082198211156133a9576133a96134cd565b500190565b6000826133bd576133bd6134e3565b500490565b60008160001904831182151516156133dc576133dc6134cd565b500290565b60006001600160801b0383811690831681811015613401576134016134cd565b039392505050565b60008282101561341b5761341b6134cd565b500390565b60005b8381101561343b578181015183820152602001613423565b83811115611b615750506000910152565b60008161345b5761345b6134cd565b506000190190565b600181811c9082168061347757607f821691505b6020821081141561349857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134b2576134b26134cd565b5060010190565b6000826134c8576134c86134e3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d9057600080fdfea26469706673582212205db1a3893359970f059561659eaa6f9eb1377e5e7c5838d101d3babe6648db0564736f6c63430008070033

Deployed Bytecode Sourcemap

43641:6340:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28723:370;;;;;;;;;;-1:-1:-1;28723:370:0;;;;;:::i;:::-;;:::i;:::-;;;7867:14:1;;7860:22;7842:41;;7830:2;7815:18;28723:370:0;;;;;;;;30449:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31974:204::-;;;;;;;;;;-1:-1:-1;31974:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6528:32:1;;;6510:51;;6498:2;6483:18;31974:204:0;6364:203:1;43869:32:0;;;;;;;;;;;;;;;;;;;22163:25:1;;;22151:2;22136:18;43869:32:0;22017:177:1;31537:379:0;;;;;;;;;;-1:-1:-1;31537:379:0;;;;;:::i;:::-;;:::i;:::-;;27284:94;;;;;;;;;;-1:-1:-1;27360:12:0;;27284:94;;32824:142;;;;;;;;;;-1:-1:-1;32824:142:0;;;;;:::i;:::-;;:::i;45051:524::-;;;;;;:::i;:::-;;:::i;49233:85::-;;;;;;;;;;-1:-1:-1;49233:85:0;;;;;:::i;:::-;;:::i;49109:118::-;;;;;;;;;;-1:-1:-1;49109:118:0;;;;;:::i;:::-;;:::i;27915:744::-;;;;;;;;;;-1:-1:-1;27915:744:0;;;;;:::i;:::-;;:::i;44108:35::-;;;;;;;;;;-1:-1:-1;44108:35:0;;;;;;;;;;;44201:45;;;;;;;;;;-1:-1:-1;44201:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;43908:34;;;;;;;;;;;;;;;;33029:157;;;;;;;;;;-1:-1:-1;33029:157:0;;;;;:::i;:::-;;:::i;48133:342::-;;;;;;;;;;-1:-1:-1;48133:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44311:51::-;;;;;;;;;;-1:-1:-1;44311:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;44254:49;;;;;;;;;;-1:-1:-1;44254:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;45579:548;;;;;;:::i;:::-;;:::i;44064:37::-;;;;;;;;;;-1:-1:-1;44064:37:0;;;;;;;;;;;27447:177;;;;;;;;;;-1:-1:-1;27447:177:0;;;;;:::i;:::-;;:::i;48652:100::-;;;;;;;;;;-1:-1:-1;48652:100:0;;;;;:::i;:::-;;:::i;30272:118::-;;;;;;;;;;-1:-1:-1;30272:118:0;;;;;:::i;:::-;;:::i;44653:394::-;;;;;;;;;;-1:-1:-1;44653:394:0;;;;;:::i;:::-;;:::i;48758:177::-;;;;;;;;;;-1:-1:-1;48758:177:0;;;;;:::i;:::-;;:::i;29149:211::-;;;;;;;;;;-1:-1:-1;29149:211:0;;;;;:::i;:::-;;:::i;42738:103::-;;;;;;;;;;;;;:::i;43949:34::-;;;;;;;;;;;;;;;;49322:89;;;;;;;;;;-1:-1:-1;49322:89:0;;;;;:::i;:::-;;:::i;46133:528::-;;;;;;;;;;-1:-1:-1;46133:528:0;;;;;:::i;:::-;;:::i;42087:87::-;;;;;;;;;;-1:-1:-1;42133:7:0;42160:6;-1:-1:-1;;;;;42160:6:0;42087:87;;49623:89;;;;;;;;;;-1:-1:-1;49623:89:0;;;;;:::i;:::-;;:::i;49831:147::-;;;;;;;;;;-1:-1:-1;49831:147:0;;;;;:::i;:::-;;:::i;:::-;;;;21882:13:1;;-1:-1:-1;;;;;21878:39:1;21860:58;;21978:4;21966:17;;;21960:24;-1:-1:-1;;;;;21956:49:1;21934:20;;;21927:79;;;;21833:18;49831:147:0;21652:360:1;44150:43:0;;;;;;;;;;-1:-1:-1;44150:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;30604:98;;;;;;;;;;;;;:::i;43715:25::-;;;;;;;;;;;;;;;;32242:274;;;;;;;;;;-1:-1:-1;32242:274:0;;;;;:::i;:::-;;:::i;47399:728::-;;;;;;;;;;;;;:::i;44028:29::-;;;;;;;;;;-1:-1:-1;44028:29:0;;;;;;;;;;;47212:181;;;;;;;;;;;;;:::i;49415:97::-;;;;;;;;;;-1:-1:-1;49415:97:0;;;;;:::i;:::-;;:::i;43990:31::-;;;;;;;;;;-1:-1:-1;43990:31:0;;;;;;;;43831;;;;;;;;;;;;;;;;33249:311;;;;;;;;;;-1:-1:-1;33249:311:0;;;;;:::i;:::-;;:::i;49516:101::-;;;;;;;;;;-1:-1:-1;49516:101:0;;;;;:::i;:::-;;:::i;30765:394::-;;;;;;;;;;-1:-1:-1;30765:394:0;;;;;:::i;:::-;;:::i;44370:43::-;;;;;;;;;;-1:-1:-1;44370:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37664;;;;;;;;;;;;;;;;49718:107;;;;;;;;;;-1:-1:-1;49718:107:0;;;;;:::i;:::-;;:::i;48941:162::-;;;;;;;;;;-1:-1:-1;48941:162:0;;;;;:::i;:::-;;:::i;32579:186::-;;;;;;;;;;-1:-1:-1;32579:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;32724:25:0;;;32701:4;32724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32579:186;42996:201;;;;;;;;;;-1:-1:-1;42996:201:0;;;;;:::i;:::-;;:::i;46665:541::-;;;;;;;;;;-1:-1:-1;46665:541:0;;;;;:::i;:::-;;:::i;28723:370::-;28850:4;-1:-1:-1;;;;;;28880:40:0;;-1:-1:-1;;;28880:40:0;;:99;;-1:-1:-1;;;;;;;28931:48:0;;-1:-1:-1;;;28931:48:0;28880:99;:160;;;-1:-1:-1;;;;;;;28990:50:0;;-1:-1:-1;;;28990:50:0;28880:160;:207;;;-1:-1:-1;;;;;;;;;;14491:40:0;;;29051:36;28866:221;28723:370;-1:-1:-1;;28723:370:0:o;30449:94::-;30503:13;30532:5;30525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30449:94;:::o;31974:204::-;32042:7;32066:16;32074:7;33886:12;;-1:-1:-1;33876:22:0;33799:105;32066:16;32058:74;;;;-1:-1:-1;;;32058:74:0;;21037:2:1;32058:74:0;;;21019:21:1;21076:2;21056:18;;;21049:30;21115:34;21095:18;;;21088:62;-1:-1:-1;;;21166:18:1;;;21159:43;21219:19;;32058:74:0;;;;;;;;;-1:-1:-1;32148:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32148:24:0;;31974:204::o;31537:379::-;31606:13;31622:24;31638:7;31622:15;:24::i;:::-;31606:40;;31667:5;-1:-1:-1;;;;;31661:11:0;:2;-1:-1:-1;;;;;31661:11:0;;;31653:58;;;;-1:-1:-1;;;31653:58:0;;16828:2:1;31653:58:0;;;16810:21:1;16867:2;16847:18;;;16840:30;16906:34;16886:18;;;16879:62;-1:-1:-1;;;16957:18:1;;;16950:32;16999:19;;31653:58:0;16626:398:1;31653:58:0;24834:10;-1:-1:-1;;;;;31736:21:0;;;;:62;;-1:-1:-1;31761:37:0;31778:5;24834:10;32579:186;:::i;31761:37::-;31720:153;;;;-1:-1:-1;;;31720:153:0;;11180:2:1;31720:153:0;;;11162:21:1;11219:2;11199:18;;;11192:30;11258:34;11238:18;;;11231:62;11329:27;11309:18;;;11302:55;11374:19;;31720:153:0;10978:421:1;31720:153:0;31882:28;31891:2;31895:7;31904:5;31882:8;:28::i;:::-;31599:317;31537:379;;:::o;32824:142::-;32932:28;32942:4;32948:2;32952:7;32932:9;:28::i;45051:524::-;23128:1;23726:7;;:19;;23718:63;;;;-1:-1:-1;;;23718:63:0;;;;;;;:::i;:::-;23128:1;23859:7;:18;45128:11:::1;::::0;:23;-1:-1:-1;45128:23:0::1;45120:46;;;::::0;-1:-1:-1;;;45120:46:0;;19922:2:1;45120:46:0::1;::::0;::::1;19904:21:1::0;19961:2;19941:18;;;19934:30;-1:-1:-1;;;19980:18:1;;;19973:40;20030:18;;45120:46:0::1;19720:334:1::0;45120:46:0::1;45205:10;45196:20;::::0;;;:8:::1;:20;::::0;;;;;:31:::1;::::0;45219:8;;45196:31:::1;:::i;:::-;45181:11;;:46;;45173:80;;;;-1:-1:-1::0;;;45173:80:0::1;;;;;;;:::i;:::-;45293:8;45281:9;;:20;;;;:::i;:::-;45268:9;:33;45260:71;;;::::0;-1:-1:-1;;;45260:71:0;;12364:2:1;45260:71:0::1;::::0;::::1;12346:21:1::0;12403:2;12383:18;;;12376:30;-1:-1:-1;;;12422:18:1;;;12415:55;12487:18;;45260:71:0::1;12162:349:1::0;45260:71:0::1;45374:13;::::0;45358:10:::1;::::0;45347:21:::1;::::0;:8;:21:::1;:::i;:::-;45346:42;;45338:74;;;;-1:-1:-1::0;;;45338:74:0::1;;;;;;;:::i;:::-;45427:9;::::0;::::1;::::0;::::1;;;45419:33;;;;-1:-1:-1::0;;;45419:33:0::1;;;;;;;:::i;:::-;45479:10;45470:20;::::0;;;:8:::1;:20;::::0;;;;:32;;45494:8;;45470:20;:32:::1;::::0;45494:8;;45470:32:::1;:::i;:::-;::::0;;;-1:-1:-1;45509:31:0::1;::::0;-1:-1:-1;45519:10:0::1;45531:8:::0;45509:9:::1;:31::i;:::-;45561:8;45547:10;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;23084:1:0;24038:7;:22;-1:-1:-1;45051:524:0:o;49233:85::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49294:9:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;49294:18:0;;::::1;::::0;;;::::1;::::0;;49233:85::o;49109:118::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;23128:1:::1;23726:7;;:19;;23718:63;;;;-1:-1:-1::0;;;23718:63:0::1;;;;;;;:::i;:::-;23128:1;23859:7;:18:::0;49193:28:::2;49212:8:::0;49193:18:::2;:28::i;:::-;-1:-1:-1::0;23084:1:0::1;24038:7;:22:::0;49109:118::o;27915:744::-;28024:7;28059:16;28069:5;28059:9;:16::i;:::-;28051:5;:24;28043:71;;;;-1:-1:-1;;;28043:71:0;;8320:2:1;28043:71:0;;;8302:21:1;8359:2;8339:18;;;8332:30;8398:34;8378:18;;;8371:62;-1:-1:-1;;;8449:18:1;;;8442:32;8491:19;;28043:71:0;8118:398:1;28043:71:0;28121:22;28146:13;27360:12;;;27284:94;28146:13;28121:38;;28166:19;28196:25;28246:9;28241:350;28265:14;28261:1;:18;28241:350;;;28295:31;28329:14;;;:11;:14;;;;;;;;;28295:48;;;;;;;;;-1:-1:-1;;;;;28295:48:0;;;;;-1:-1:-1;;;28295:48:0;;;-1:-1:-1;;;;;28295:48:0;;;;;;;;28356:28;28352:89;;28417:14;;;-1:-1:-1;28352:89:0;28474:5;-1:-1:-1;;;;;28453:26:0;:17;-1:-1:-1;;;;;28453:26:0;;28449:135;;;28511:5;28496:11;:20;28492:59;;;-1:-1:-1;28538:1:0;-1:-1:-1;28531:8:0;;-1:-1:-1;;;28531:8:0;28492:59;28561:13;;;;:::i;:::-;;;;28449:135;-1:-1:-1;28281:3:0;;;;:::i;:::-;;;;28241:350;;;-1:-1:-1;28597:56:0;;-1:-1:-1;;;28597:56:0;;19100:2:1;28597:56:0;;;19082:21:1;19139:2;19119:18;;;19112:30;19178:34;19158:18;;;19151:62;-1:-1:-1;;;19229:18:1;;;19222:44;19283:19;;28597:56:0;18898:410:1;33029:157:0;33141:39;33158:4;33164:2;33168:7;33141:39;;;;;;;;;;;;:16;:39::i;48133:342::-;48195:16;48220:23;48246:19;48256:8;48246:9;:19::i;:::-;48220:45;;48272:25;48314:15;-1:-1:-1;;;;;48300:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48300:30:0;;48272:58;;48344:9;48339:109;48359:15;48355:1;:19;48339:109;;;48406:32;48426:8;48436:1;48406:19;:32::i;:::-;48392:8;48401:1;48392:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;48376:3;;;;:::i;:::-;;;;48339:109;;;-1:-1:-1;48461:8:0;48133:342;-1:-1:-1;;;48133:342:0:o;45579:548::-;23128:1;23726:7;;:19;;23718:63;;;;-1:-1:-1;;;23718:63:0;;;;;;;:::i;:::-;23128:1;23859:7;:18;45662:11:::1;::::0;:23;-1:-1:-1;45662:23:0::1;45654:46;;;::::0;-1:-1:-1;;;45654:46:0;;19922:2:1;45654:46:0::1;::::0;::::1;19904:21:1::0;19961:2;19941:18;;;19934:30;-1:-1:-1;;;19980:18:1;;;19973:40;20030:18;;45654:46:0::1;19720:334:1::0;45654:46:0::1;45745:10;45730:26;::::0;;;:14:::1;:26;::::0;;;;;:37:::1;::::0;45759:8;;45730:37:::1;:::i;:::-;45715:11;;:52;;45707:86;;;;-1:-1:-1::0;;;45707:86:0::1;;;;;;;:::i;:::-;45833:8;45821:9;;:20;;;;:::i;:::-;45808:9;:33;45800:71;;;::::0;-1:-1:-1;;;45800:71:0;;12364:2:1;45800:71:0::1;::::0;::::1;12346:21:1::0;12403:2;12383:18;;;12376:30;-1:-1:-1;;;12422:18:1;;;12415:55;12487:18;;45800:71:0::1;12162:349:1::0;45800:71:0::1;45914:13;::::0;45898:10:::1;::::0;45887:21:::1;::::0;:8;:21:::1;:::i;:::-;45886:42;;45878:74;;;;-1:-1:-1::0;;;45878:74:0::1;;;;;;;:::i;:::-;45967:15;::::0;;;::::1;;;45959:39;;;;-1:-1:-1::0;;;45959:39:0::1;;;;;;;:::i;:::-;46031:10;46016:26;::::0;;;:14:::1;:26;::::0;;;;:38;;46046:8;;46016:26;:38:::1;::::0;46046:8;;46016:38:::1;:::i;27447:177::-:0;27514:7;27546:13;27360:12;;;27284:94;27546:13;27538:5;:21;27530:69;;;;-1:-1:-1;;;27530:69:0;;9952:2:1;27530:69:0;;;9934:21:1;9991:2;9971:18;;;9964:30;10030:34;10010:18;;;10003:62;-1:-1:-1;;;10081:18:1;;;10074:33;10124:19;;27530:69:0;9750:399:1;27530:69:0;-1:-1:-1;27613:5:0;27447:177::o;48652:100::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;48723:23:::1;:13;48739:7:::0;;48723:23:::1;:::i;30272:118::-:0;30336:7;30359:20;30371:7;30359:11;:20::i;:::-;:25;;30272:118;-1:-1:-1;;30272:118:0:o;44653:394::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;44776:12:::1;::::0;44760:10:::1;::::0;44749:21:::1;::::0;:8;:21:::1;:::i;:::-;44748:41;;44730:122;;;;-1:-1:-1::0;;;44730:122:0::1;;;;;;;:::i;:::-;44905:13;::::0;44889:10:::1;::::0;44878:21:::1;::::0;:8;:21:::1;:::i;:::-;44877:42;;44859:123;;;;-1:-1:-1::0;;;44859:123:0::1;;;;;;;:::i;:::-;44989:23;44999:2;45003:8;44989:9;:23::i;:::-;45033:8;45019:10;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;44653:394:0:o;48758:177::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;48851:6:::1;48846:84;48867:4;:11;48863:1;:15;48846:84;;;48916:6;48894:11;:20;48906:4;48911:1;48906:7;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48894:20:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48894:20:0;:28;;-1:-1:-1;;48894:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48880:3;::::1;::::0;::::1;:::i;:::-;;;;48846:84;;29149:211:::0;29213:7;-1:-1:-1;;;;;29237:19:0;;29229:75;;;;-1:-1:-1;;;29229:75:0;;12718:2:1;29229:75:0;;;12700:21:1;12757:2;12737:18;;;12730:30;12796:34;12776:18;;;12769:62;-1:-1:-1;;;12847:18:1;;;12840:41;12898:19;;29229:75:0;12516:407:1;29229:75:0;-1:-1:-1;;;;;;29326:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29326:27:0;;29149:211::o;42738:103::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;42803:30:::1;42830:1;42803:18;:30::i;:::-;42738:103::o:0;49322:89::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49385:11:::1;:20:::0;;-1:-1:-1;;49385:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49322:89::o;46133:528::-;46207:8;46190:13;;:25;;46182:58;;;;-1:-1:-1;;;46182:58:0;;16479:2:1;46182:58:0;;;16461:21:1;16518:2;16498:18;;;16491:30;-1:-1:-1;;;16537:18:1;;;16530:50;16597:18;;46182:58:0;16277:344:1;46182:58:0;46283:10;46272:22;;;;:10;:22;;;;;;:33;;46297:8;;46272:33;:::i;:::-;46255:13;;:50;;46247:84;;;;-1:-1:-1;;;46247:84:0;;;;;;;:::i;:::-;46374:13;;46358:10;;46347:21;;:8;:21;:::i;:::-;46346:42;;46338:74;;;;-1:-1:-1;;;46338:74:0;;;;;;;:::i;:::-;46427:11;;;;46419:35;;;;-1:-1:-1;;;46419:35:0;;;;;;;:::i;:::-;46481:10;46469:23;;;;:11;:23;;;;;;;;46461:73;;;;-1:-1:-1;;;46461:73:0;;;;;;;:::i;:::-;46565:10;46554:22;;;;:10;:22;;;;;:34;;46580:8;;46554:22;:34;;46580:8;;46554:34;:::i;:::-;;;;-1:-1:-1;46595:31:0;;-1:-1:-1;46605:10:0;46617:8;46595:9;:31::i;:::-;46647:8;46633:10;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46133:528:0:o;49623:89::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49687:9:::1;:20:::0;49623:89::o;49831:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;49952:20:0;49964:7;49952:11;:20::i;30604:98::-;30660:13;30689:7;30682:14;;;;;:::i;32242:274::-;-1:-1:-1;;;;;32333:24:0;;24834:10;32333:24;;32325:63;;;;-1:-1:-1;;;32325:63:0;;15352:2:1;32325:63:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:28;15410:18;;;15403:56;15476:18;;32325:63:0;15150:350:1;32325:63:0;24834:10;32397:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32397:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32397:53:0;;;;;;;;;;32462:48;;7842:41:1;;;32397:42:0;;24834:10;32462:48;;7815:18:1;32462:48:0;;;;;;;32242:274;;:::o;47399:728::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;47478:21:::1;47534:42;47612;47689;47457:18;47534:42:::0;47815:4:::1;47798:16;47478:21:::0;47811:3:::1;47798:16;:::i;:::-;:21;;;;:::i;:::-;47777:48;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47763:62;;;;;47840:7;47832:44;;;;-1:-1:-1::0;;;47832:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47899:13:0;::::1;47938:4;47921:16;:10:::0;47934:3:::1;47921:16;:::i;:::-;:21;;;;:::i;:::-;47899:49;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47885:63;;;;;47963:7;47955:44;;;;-1:-1:-1::0;;;47955:44:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48022:12:0;::::1;48060:4;48043:16;:10:::0;48056:3:::1;48043:16;:::i;:::-;:21;;;;:::i;:::-;48022:48;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48008:62;;;;;48085:7;48077:44;;;;-1:-1:-1::0;;;48077:44:0::1;;;;;;;:::i;:::-;47450:677;;;;;47399:728::o:0;47212:181::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;23128:1:::1;23726:7;;:19;;23718:63;;;;-1:-1:-1::0;;;23718:63:0::1;;;;;;;:::i;:::-;23128:1;23859:7;:18:::0;47295:49:::2;::::0;47277:12:::2;::::0;47295:10:::2;::::0;47318:21:::2;::::0;47277:12;47295:49;47277:12;47295:49;47318:21;47295:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47276:68;;;47359:7;47351:36;;;::::0;-1:-1:-1;;;47351:36:0;;17231:2:1;47351:36:0::2;::::0;::::2;17213:21:1::0;17270:2;17250:18;;;17243:30;-1:-1:-1;;;17289:18:1;;;17282:46;17345:18;;47351:36:0::2;17029:340:1::0;49415:97:0;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49482:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49482:24:0;;::::1;::::0;;;::::1;::::0;;49415:97::o;33249:311::-;33386:28;33396:4;33402:2;33406:7;33386:9;:28::i;:::-;33437:48;33460:4;33466:2;33470:7;33479:5;33437:22;:48::i;:::-;33421:133;;;;-1:-1:-1;;;33421:133:0;;;;;;;:::i;:::-;33249:311;;;;:::o;49516:101::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49585:17:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49585:26:0;;::::1;::::0;;;::::1;::::0;;49516:101::o;30765:394::-;30863:13;30904:16;30912:7;33886:12;;-1:-1:-1;33876:22:0;33799:105;30904:16;30888:97;;;;-1:-1:-1;;;30888:97:0;;14936:2:1;30888:97:0;;;14918:21:1;14975:2;14955:18;;;14948:30;15014:34;14994:18;;;14987:62;-1:-1:-1;;;15065:18:1;;;15058:45;15120:19;;30888:97:0;14734:411:1;30888:97:0;30994:21;31018:10;:8;:10::i;:::-;30994:34;;31073:1;31055:7;31049:21;:25;:104;;;;;;;;;;;;;;;;;31110:7;31119:18;:7;:16;:18::i;:::-;31093:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31049:104;31035:118;30765:394;-1:-1:-1;;;30765:394:0:o;49718:107::-;49776:7;49799:20;49813:5;49799:13;:20::i;48941:162::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;49036:9:::1;49020:12;;:25;;49012:53;;;::::0;-1:-1:-1;;;49012:53:0;;18354:2:1;49012:53:0::1;::::0;::::1;18336:21:1::0;18393:2;18373:18;;;18366:30;-1:-1:-1;;;18412:18:1;;;18405:45;18467:18;;49012:53:0::1;18152:339:1::0;49012:53:0::1;49072:13;:25:::0;48941:162::o;42996:201::-;42133:7;42160:6;-1:-1:-1;;;;;42160:6:0;24834:10;42307:23;42299:68;;;;-1:-1:-1;;;42299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43085:22:0;::::1;43077:73;;;::::0;-1:-1:-1;;;43077:73:0;;9134:2:1;43077:73:0::1;::::0;::::1;9116:21:1::0;9173:2;9153:18;;;9146:30;9212:34;9192:18;;;9185:62;-1:-1:-1;;;9263:18:1;;;9256:36;9309:19;;43077:73:0::1;8932:402:1::0;43077:73:0::1;43161:28;43180:8;43161:18;:28::i;:::-;42996:201:::0;:::o;46665:541::-;46745:8;46728:13;;:25;;46720:58;;;;-1:-1:-1;;;46720:58:0;;16479:2:1;46720:58:0;;;16461:21:1;16518:2;16498:18;;;16491:30;-1:-1:-1;;;16537:18:1;;;16530:50;16597:18;;46720:58:0;16277:344:1;46720:58:0;46827:10;46810:28;;;;:16;:28;;;;;;:39;;46841:8;;46810:39;:::i;:::-;46793:13;;:56;;46785:90;;;;-1:-1:-1;;;46785:90:0;;;;;;;:::i;:::-;46918:13;;46902:10;;46891:21;;:8;:21;:::i;:::-;46890:42;;46882:74;;;;-1:-1:-1;;;46882:74:0;;;;;;;:::i;:::-;46971:17;;;;;;;46963:41;;;;-1:-1:-1;;;46963:41:0;;;;;;;:::i;:::-;47031:10;47019:23;;;;:11;:23;;;;;;;;47011:73;;;;-1:-1:-1;;;47011:73:0;;;;;;;:::i;:::-;47110:10;47093:28;;;;:16;:28;;;;;:40;;47125:8;;47093:28;:40;;47125:8;;47093:40;:::i;37486:172::-;37583:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37583:29:0;-1:-1:-1;;;;;37583:29:0;;;;;;;;;37624:28;;37583:24;;37624:28;;;;;;;37486:172;;;:::o;35851:1529::-;35948:35;35986:20;35998:7;35986:11;:20::i;:::-;36057:18;;35948:58;;-1:-1:-1;36015:22:0;;-1:-1:-1;;;;;36041:34:0;24834:10;-1:-1:-1;;;;;36041:34:0;;:81;;;-1:-1:-1;24834:10:0;36086:20;36098:7;36086:11;:20::i;:::-;-1:-1:-1;;;;;36086:36:0;;36041:81;:142;;;-1:-1:-1;36150:18:0;;36133:50;;24834:10;32579:186;:::i;36133:50::-;36015:169;;36209:17;36193:101;;;;-1:-1:-1;;;36193:101:0;;15707:2:1;36193:101:0;;;15689:21:1;15746:2;15726:18;;;15719:30;15785:34;15765:18;;;15758:62;-1:-1:-1;;;15836:18:1;;;15829:48;15894:19;;36193:101:0;15505:414:1;36193:101:0;36341:4;-1:-1:-1;;;;;36319:26:0;:13;:18;;;-1:-1:-1;;;;;36319:26:0;;36303:98;;;;-1:-1:-1;;;36303:98:0;;13470:2:1;36303:98:0;;;13452:21:1;13509:2;13489:18;;;13482:30;13548:34;13528:18;;;13521:62;-1:-1:-1;;;13599:18:1;;;13592:36;13645:19;;36303:98:0;13268:402:1;36303:98:0;-1:-1:-1;;;;;36416:16:0;;36408:66;;;;-1:-1:-1;;;36408:66:0;;10356:2:1;36408:66:0;;;10338:21:1;10395:2;10375:18;;;10368:30;10434:34;10414:18;;;10407:62;-1:-1:-1;;;10485:18:1;;;10478:35;10530:19;;36408:66:0;10154:401:1;36408:66:0;36583:49;36600:1;36604:7;36613:13;:18;;;36583:8;:49::i;:::-;-1:-1:-1;;;;;36641:18:0;;;;;;:12;:18;;;;;:31;;36671:1;;36641:18;:31;;36671:1;;-1:-1:-1;;;;;36641:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;36641:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36679:16:0;;-1:-1:-1;36679:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;36679:16:0;;:29;;-1:-1:-1;;36679:29:0;;:::i;:::-;;;-1:-1:-1;;;;;36679:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36738:43:0;;;;;;;;-1:-1:-1;;;;;36738:43:0;;;;;-1:-1:-1;;;;;36764:15:0;36738:43;;;;;;;;;-1:-1:-1;36715:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;36715:66:0;-1:-1:-1;;;;;;36715:66:0;;;;;;;;;;;37031:11;36727:7;-1:-1:-1;37031:11:0;:::i;:::-;37094:1;37053:24;;;:11;:24;;;;;:29;37009:33;;-1:-1:-1;;;;;;37053:29:0;37049:236;;37111:20;37119:11;33886:12;;-1:-1:-1;33876:22:0;33799:105;37111:20;37107:171;;;37171:97;;;;;;;;37198:18;;-1:-1:-1;;;;;37171:97:0;;;;;;37229:28;;;;-1:-1:-1;;;;;37171:97:0;;;;;;;;;-1:-1:-1;37144:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;37144:124:0;-1:-1:-1;;;;;;37144:124:0;;;;;;;;;;;;37107:171;37317:7;37313:2;-1:-1:-1;;;;;37298:27:0;37307:4;-1:-1:-1;;;;;37298:27:0;;;;;;;;;;;37332:42;35941:1439;;;35851:1529;;;:::o;33910:98::-;33975:27;33985:2;33989:8;33975:27;;;;;;;;;;;;:9;:27::i;:::-;33910:98;;:::o;37812:846::-;37902:24;;37941:12;37933:49;;;;-1:-1:-1;;;37933:49:0;;11606:2:1;37933:49:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:26;11664:18;;;11657:54;11728:18;;37933:49:0;11404:348:1;37933:49:0;37989:16;38039:1;38008:28;38028:8;38008:17;:28;:::i;:::-;:32;;;;:::i;:::-;37989:51;-1:-1:-1;38062:18:0;38079:1;38062:14;:18;:::i;:::-;38051:8;:29;38047:81;;;38102:18;38119:1;38102:14;:18;:::i;:::-;38091:29;;38047:81;38243:17;38251:8;33886:12;;-1:-1:-1;33876:22:0;33799:105;38243:17;38235:68;;;;-1:-1:-1;;;38235:68:0;;19515:2:1;38235:68:0;;;19497:21:1;19554:2;19534:18;;;19527:30;19593:34;19573:18;;;19566:62;-1:-1:-1;;;19644:18:1;;;19637:36;19690:19;;38235:68:0;19313:402:1;38235:68:0;38327:17;38310:297;38351:8;38346:1;:13;38310:297;;38410:1;38379:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;38379:19:0;38375:225;;38425:31;38459:14;38471:1;38459:11;:14::i;:::-;38501:89;;;;;;;;38528:14;;-1:-1:-1;;;;;38501:89:0;;;;;;38555:24;;;;-1:-1:-1;;;;;38501:89:0;;;;;;;;;-1:-1:-1;38484:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;38484:106:0;-1:-1:-1;;;;;;38484:106:0;;;;;;;;;;;;-1:-1:-1;38375:225:0;38361:3;;;;:::i;:::-;;;;38310:297;;;-1:-1:-1;38640:12:0;:8;38651:1;38640:12;:::i;:::-;38613:24;:39;-1:-1:-1;;;37812:846:0:o;29612:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;29729:16:0;29737:7;33886:12;;-1:-1:-1;33876:22:0;33799:105;29729:16;29721:71;;;;-1:-1:-1;;;29721:71:0;;9541:2:1;29721:71:0;;;9523:21:1;9580:2;9560:18;;;9553:30;9619:34;9599:18;;;9592:62;-1:-1:-1;;;9670:18:1;;;9663:40;9720:19;;29721:71:0;9339:406:1;29721:71:0;29801:26;29849:12;29838:7;:23;29834:93;;29893:22;29903:12;29893:7;:22;:::i;:::-;:26;;29918:1;29893:26;:::i;:::-;29872:47;;29834:93;29955:7;29935:212;29972:18;29964:4;:26;29935:212;;30009:31;30043:17;;;:11;:17;;;;;;;;;30009:51;;;;;;;;;-1:-1:-1;;;;;30009:51:0;;;;;-1:-1:-1;;;30009:51:0;;;-1:-1:-1;;;;;30009:51:0;;;;;;;;30073:28;30069:71;;30121:9;29612:606;-1:-1:-1;;;;29612:606:0:o;30069:71::-;-1:-1:-1;29992:6:0;;;;:::i;:::-;;;;29935:212;;;-1:-1:-1;30155:57:0;;-1:-1:-1;;;30155:57:0;;20621:2:1;30155:57:0;;;20603:21:1;20660:2;20640:18;;;20633:30;20699:34;20679:18;;;20672:62;-1:-1:-1;;;20750:18:1;;;20743:45;20805:19;;30155:57:0;20419:411:1;43357:191:0;43431:16;43450:6;;-1:-1:-1;;;;;43467:17:0;;;-1:-1:-1;;;;;;43467:17:0;;;;;;43500:40;;43450:6;;;;;;;43500:40;;43431:16;43500:40;43420:128;43357:191;:::o;39201:690::-;39338:4;-1:-1:-1;;;;;39355:13:0;;4571:19;:23;39351:535;;39394:72;;-1:-1:-1;;;39394:72:0;;-1:-1:-1;;;;;39394:36:0;;;;;:72;;24834:10;;39445:4;;39451:7;;39460:5;;39394:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39394:72:0;;;;;;;;-1:-1:-1;;39394:72:0;;;;;;;;;;;;:::i;:::-;;;39381:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39625:13:0;;39621:215;;39658:61;;-1:-1:-1;;;39658:61:0;;;;;;;:::i;39621:215::-;39804:6;39798:13;39789:6;39785:2;39781:15;39774:38;39381:464;-1:-1:-1;;;;;;39516:55:0;-1:-1:-1;;;39516:55:0;;-1:-1:-1;39509:62:0;;39351:535;-1:-1:-1;39874:4:0;39351:535;39201:690;;;;;;:::o;48538:108::-;48598:13;48627;48620:20;;;;;:::i;1284:723::-;1340:13;1561:10;1557:53;;-1:-1:-1;;1588:10:0;;;;;;;;;;;;-1:-1:-1;;;1588:10:0;;;;;1284:723::o;1557:53::-;1635:5;1620:12;1676:78;1683:9;;1676:78;;1709:8;;;;:::i;:::-;;-1:-1:-1;1732:10:0;;-1:-1:-1;1740:2:0;1732:10;;:::i;:::-;;;1676:78;;;1764:19;1796:6;-1:-1:-1;;;;;1786:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1786:17:0;;1764:39;;1814:154;1821:10;;1814:154;;1848:11;1858:1;1848:11;;:::i;:::-;;-1:-1:-1;1917:10:0;1925:2;1917:5;:10;:::i;:::-;1904:24;;:2;:24;:::i;:::-;1891:39;;1874:6;1881;1874:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1874:56:0;;;;;;;;-1:-1:-1;1945:11:0;1954:2;1945:11;;:::i;:::-;;;1814:154;;29366:240;29427:7;-1:-1:-1;;;;;29459:19:0;;29443:102;;;;-1:-1:-1;;;29443:102:0;;10762:2:1;29443:102:0;;;10744:21:1;10801:2;10781:18;;;10774:30;10840:34;10820:18;;;10813:62;-1:-1:-1;;;10891:18:1;;;10884:47;10948:19;;29443:102:0;10560:413:1;29443:102:0;-1:-1:-1;;;;;;29567:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;29567:32:0;;-1:-1:-1;;;;;29567:32:0;;29366:240::o;34347:1272::-;34475:12;;-1:-1:-1;;;;;34502:16:0;;34494:62;;;;-1:-1:-1;;;34494:62:0;;18698:2:1;34494:62:0;;;18680:21:1;18737:2;18717:18;;;18710:30;18776:34;18756:18;;;18749:62;-1:-1:-1;;;18827:18:1;;;18820:31;18868:19;;34494:62:0;18496:397:1;34494:62:0;34693:21;34701:12;33886;;-1:-1:-1;33876:22:0;33799:105;34693:21;34692:22;34684:64;;;;-1:-1:-1;;;34684:64:0;;17996:2:1;34684:64:0;;;17978:21:1;18035:2;18015:18;;;18008:30;18074:31;18054:18;;;18047:59;18123:18;;34684:64:0;17794:353:1;34684:64:0;34775:12;34763:8;:24;;34755:71;;;;-1:-1:-1;;;34755:71:0;;21451:2:1;34755:71:0;;;21433:21:1;21490:2;21470:18;;;21463:30;21529:34;21509:18;;;21502:62;-1:-1:-1;;;21580:18:1;;;21573:32;21622:19;;34755:71:0;21249:398:1;34755:71:0;-1:-1:-1;;;;;34938:16:0;;34905:30;34938:16;;;:12;:16;;;;;;;;;34905:49;;;;;;;;;-1:-1:-1;;;;;34905:49:0;;;;;-1:-1:-1;;;34905:49:0;;;;;;;;;;;34980:119;;;;;;;;35000:19;;34905:49;;34980:119;;;35000:39;;35030:8;;35000:39;:::i;:::-;-1:-1:-1;;;;;34980:119:0;;;;;35083:8;35048:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34980:119:0;;;;;;-1:-1:-1;;;;;34961:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34961:138:0;;;;;;;;;;;;35134:43;;;;;;;;;;-1:-1:-1;;;;;35160:15:0;35134:43;;;;;;;;35106:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35106:71:0;-1:-1:-1;;;;;;35106:71:0;;;;;;;;;;;;;;;;;;35118:12;;35230:281;35254:8;35250:1;:12;35230:281;;;35283:38;;35308:12;;-1:-1:-1;;;;;35283:38:0;;;35300:1;;35283:38;;35300:1;;35283:38;35348:59;35379:1;35383:2;35387:12;35401:5;35348:22;:59::i;:::-;35330:150;;;;-1:-1:-1;;;35330:150:0;;;;;;;:::i;:::-;35489:14;;;;:::i;:::-;;;;35264:3;;;;;:::i;:::-;;;;35230:281;;;-1:-1:-1;35519:12:0;:27;;;35553:60;33249:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:980::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:2;1427:38;1461:2;1450:9;1446:18;1427:38;:::i;:::-;1417:48;;1512:2;1501:9;1497:18;1484:32;1474:42;;1567:2;1556:9;1552:18;1539:32;-1:-1:-1;;;;;1631:2:1;1623:6;1620:14;1617:34;;;1647:1;1644;1637:12;1617:34;1685:6;1674:9;1670:22;1660:32;;1730:7;1723:4;1719:2;1715:13;1711:27;1701:55;;1752:1;1749;1742:12;1701:55;1788:2;1775:16;1810:2;1806;1803:10;1800:36;;;1816:18;;:::i;:::-;1858:53;1901:2;1882:13;;-1:-1:-1;;1878:27:1;1874:36;;1858:53;:::i;:::-;1845:66;;1934:2;1927:5;1920:17;1974:7;1969:2;1964;1960;1956:11;1952:20;1949:33;1946:53;;;1995:1;1992;1985:12;1946:53;2050:2;2045;2041;2037:11;2032:2;2025:5;2021:14;2008:45;2094:1;2089:2;2084;2077:5;2073:14;2069:23;2062:34;;2115:5;2105:15;;;;;1146:980;;;;;;;:::o;2131:254::-;2196:6;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;2296:29;2315:9;2296:29;:::i;:::-;2286:39;;2344:35;2375:2;2364:9;2360:18;2344:35;:::i;2390:254::-;2458:6;2466;2519:2;2507:9;2498:7;2494:23;2490:32;2487:52;;;2535:1;2532;2525:12;2487:52;2558:29;2577:9;2558:29;:::i;:::-;2548:39;2634:2;2619:18;;;;2606:32;;-1:-1:-1;;;2390:254:1:o;2649:1033::-;2739:6;2747;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2856:9;2843:23;-1:-1:-1;;;;;2926:2:1;2918:6;2915:14;2912:34;;;2942:1;2939;2932:12;2912:34;2980:6;2969:9;2965:22;2955:32;;3025:7;3018:4;3014:2;3010:13;3006:27;2996:55;;3047:1;3044;3037:12;2996:55;3083:2;3070:16;3105:4;3128:2;3124;3121:10;3118:36;;;3134:18;;:::i;:::-;3180:2;3177:1;3173:10;3163:20;;3203:28;3227:2;3223;3219:11;3203:28;:::i;:::-;3265:15;;;3296:12;;;;3328:11;;;3358;;;3354:20;;3351:33;-1:-1:-1;3348:53:1;;;3397:1;3394;3387:12;3348:53;3419:1;3410:10;;3429:169;3443:2;3440:1;3437:9;3429:169;;;3500:23;3519:3;3500:23;:::i;:::-;3488:36;;3461:1;3454:9;;;;;3544:12;;;;3576;;3429:169;;;-1:-1:-1;3617:5:1;-1:-1:-1;3641:35:1;;-1:-1:-1;3657:18:1;;;3641:35;:::i;:::-;3631:45;;;;;;2649:1033;;;;;:::o;3687:180::-;3743:6;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;3835:26;3851:9;3835:26;:::i;3872:245::-;3930:6;3983:2;3971:9;3962:7;3958:23;3954:32;3951:52;;;3999:1;3996;3989:12;3951:52;4038:9;4025:23;4057:30;4081:5;4057:30;:::i;4122:249::-;4191:6;4244:2;4232:9;4223:7;4219:23;4215:32;4212:52;;;4260:1;4257;4250:12;4212:52;4292:9;4286:16;4311:30;4335:5;4311:30;:::i;4376:592::-;4447:6;4455;4508:2;4496:9;4487:7;4483:23;4479:32;4476:52;;;4524:1;4521;4514:12;4476:52;4564:9;4551:23;-1:-1:-1;;;;;4634:2:1;4626:6;4623:14;4620:34;;;4650:1;4647;4640:12;4620:34;4688:6;4677:9;4673:22;4663:32;;4733:7;4726:4;4722:2;4718:13;4714:27;4704:55;;4755:1;4752;4745:12;4704:55;4795:2;4782:16;4821:2;4813:6;4810:14;4807:34;;;4837:1;4834;4827:12;4807:34;4882:7;4877:2;4868:6;4864:2;4860:15;4856:24;4853:37;4850:57;;;4903:1;4900;4893:12;4850:57;4934:2;4926:11;;;;;4956:6;;-1:-1:-1;4376:592:1;;-1:-1:-1;;;;4376:592:1:o;4973:180::-;5032:6;5085:2;5073:9;5064:7;5060:23;5056:32;5053:52;;;5101:1;5098;5091:12;5053:52;-1:-1:-1;5124:23:1;;4973:180;-1:-1:-1;4973:180:1:o;5158:254::-;5226:6;5234;5287:2;5275:9;5266:7;5262:23;5258:32;5255:52;;;5303:1;5300;5293:12;5255:52;5339:9;5326:23;5316:33;;5368:38;5402:2;5391:9;5387:18;5368:38;:::i;5417:257::-;5458:3;5496:5;5490:12;5523:6;5518:3;5511:19;5539:63;5595:6;5588:4;5583:3;5579:14;5572:4;5565:5;5561:16;5539:63;:::i;:::-;5656:2;5635:15;-1:-1:-1;;5631:29:1;5622:39;;;;5663:4;5618:50;;5417:257;-1:-1:-1;;5417:257:1:o;5679:470::-;5858:3;5896:6;5890:13;5912:53;5958:6;5953:3;5946:4;5938:6;5934:17;5912:53;:::i;:::-;6028:13;;5987:16;;;;6050:57;6028:13;5987:16;6084:4;6072:17;;6050:57;:::i;:::-;6123:20;;5679:470;-1:-1:-1;;;;5679:470:1:o;6572:488::-;-1:-1:-1;;;;;6841:15:1;;;6823:34;;6893:15;;6888:2;6873:18;;6866:43;6940:2;6925:18;;6918:34;;;6988:3;6983:2;6968:18;;6961:31;;;6766:4;;7009:45;;7034:19;;7026:6;7009:45;:::i;:::-;7001:53;6572:488;-1:-1:-1;;;;;;6572:488:1:o;7065:632::-;7236:2;7288:21;;;7358:13;;7261:18;;;7380:22;;;7207:4;;7236:2;7459:15;;;;7433:2;7418:18;;;7207:4;7502:169;7516:6;7513:1;7510:13;7502:169;;;7577:13;;7565:26;;7646:15;;;;7611:12;;;;7538:1;7531:9;7502:169;;;-1:-1:-1;7688:3:1;;7065:632;-1:-1:-1;;;;;;7065:632:1:o;7894:219::-;8043:2;8032:9;8025:21;8006:4;8063:44;8103:2;8092:9;8088:18;8080:6;8063:44;:::i;8521:406::-;8723:2;8705:21;;;8762:2;8742:18;;;8735:30;8801:34;8796:2;8781:18;;8774:62;-1:-1:-1;;;8867:2:1;8852:18;;8845:40;8917:3;8902:19;;8521:406::o;11757:400::-;11959:2;11941:21;;;11998:2;11978:18;;;11971:30;12037:34;12032:2;12017:18;;12010:62;-1:-1:-1;;;12103:2:1;12088:18;;12081:34;12147:3;12132:19;;11757:400::o;12928:335::-;13130:2;13112:21;;;13169:2;13149:18;;;13142:30;-1:-1:-1;;;13203:2:1;13188:18;;13181:41;13254:2;13239:18;;12928:335::o;13675:343::-;13877:2;13859:21;;;13916:2;13896:18;;;13889:30;-1:-1:-1;;;13950:2:1;13935:18;;13928:49;14009:2;13994:18;;13675:343::o;14023:356::-;14225:2;14207:21;;;14244:18;;;14237:30;14303:34;14298:2;14283:18;;14276:62;14370:2;14355:18;;14023:356::o;14384:345::-;14586:2;14568:21;;;14625:2;14605:18;;;14598:30;-1:-1:-1;;;14659:2:1;14644:18;;14637:51;14720:2;14705:18;;14384:345::o;15924:348::-;16126:2;16108:21;;;16165:2;16145:18;;;16138:30;16204:26;16199:2;16184:18;;16177:54;16263:2;16248:18;;15924:348::o;17374:415::-;17576:2;17558:21;;;17615:2;17595:18;;;17588:30;17654:34;17649:2;17634:18;;17627:62;-1:-1:-1;;;17720:2:1;17705:18;;17698:49;17779:3;17764:19;;17374:415::o;20059:355::-;20261:2;20243:21;;;20300:2;20280:18;;;20273:30;20339:33;20334:2;20319:18;;20312:61;20405:2;20390:18;;20059:355::o;22199:275::-;22270:2;22264:9;22335:2;22316:13;;-1:-1:-1;;22312:27:1;22300:40;;-1:-1:-1;;;;;22355:34:1;;22391:22;;;22352:62;22349:88;;;22417:18;;:::i;:::-;22453:2;22446:22;22199:275;;-1:-1:-1;22199:275:1:o;22479:253::-;22519:3;-1:-1:-1;;;;;22608:2:1;22605:1;22601:10;22638:2;22635:1;22631:10;22669:3;22665:2;22661:12;22656:3;22653:21;22650:47;;;22677:18;;:::i;22737:128::-;22777:3;22808:1;22804:6;22801:1;22798:13;22795:39;;;22814:18;;:::i;:::-;-1:-1:-1;22850:9:1;;22737:128::o;22870:120::-;22910:1;22936;22926:35;;22941:18;;:::i;:::-;-1:-1:-1;22975:9:1;;22870:120::o;22995:168::-;23035:7;23101:1;23097;23093:6;23089:14;23086:1;23083:21;23078:1;23071:9;23064:17;23060:45;23057:71;;;23108:18;;:::i;:::-;-1:-1:-1;23148:9:1;;22995:168::o;23168:246::-;23208:4;-1:-1:-1;;;;;23321:10:1;;;;23291;;23343:12;;;23340:38;;;23358:18;;:::i;:::-;23395:13;;23168:246;-1:-1:-1;;;23168:246:1:o;23419:125::-;23459:4;23487:1;23484;23481:8;23478:34;;;23492:18;;:::i;:::-;-1:-1:-1;23529:9:1;;23419:125::o;23549:258::-;23621:1;23631:113;23645:6;23642:1;23639:13;23631:113;;;23721:11;;;23715:18;23702:11;;;23695:39;23667:2;23660:10;23631:113;;;23762:6;23759:1;23756:13;23753:48;;;-1:-1:-1;;23797:1:1;23779:16;;23772:27;23549:258::o;23812:136::-;23851:3;23879:5;23869:39;;23888:18;;:::i;:::-;-1:-1:-1;;;23924:18:1;;23812:136::o;23953:380::-;24032:1;24028:12;;;;24075;;;24096:61;;24150:4;24142:6;24138:17;24128:27;;24096:61;24203:2;24195:6;24192:14;24172:18;24169:38;24166:161;;;24249:10;24244:3;24240:20;24237:1;24230:31;24284:4;24281:1;24274:15;24312:4;24309:1;24302:15;24166:161;;23953:380;;;:::o;24338:135::-;24377:3;-1:-1:-1;;24398:17:1;;24395:43;;;24418:18;;:::i;:::-;-1:-1:-1;24465:1:1;24454:13;;24338:135::o;24478:112::-;24510:1;24536;24526:35;;24541:18;;:::i;:::-;-1:-1:-1;24575:9:1;;24478:112::o;24595:127::-;24656:10;24651:3;24647:20;24644:1;24637:31;24687:4;24684:1;24677:15;24711:4;24708:1;24701:15;24727:127;24788:10;24783:3;24779:20;24776:1;24769:31;24819:4;24816:1;24809:15;24843:4;24840:1;24833:15;24859:127;24920:10;24915:3;24911:20;24908:1;24901:31;24951:4;24948:1;24941:15;24975:4;24972:1;24965:15;24991:127;25052:10;25047:3;25043:20;25040:1;25033:31;25083:4;25080:1;25073:15;25107:4;25104:1;25097:15;25123:131;-1:-1:-1;;;;;;25197:32:1;;25187:43;;25177:71;;25244:1;25241;25234:12

Swarm Source

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