Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,555 SAPES
Holders
820
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SAPESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Wives
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-12 */ /** *Submitted for verification at Etherscan.io on 2022-07-09 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // 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/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: @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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: 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 {} } //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract Wives is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmeLQsiV3EYDehKmaFCEbvsFpK9gtJEcgnRpCMvz6nZ2p9/hidden"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 5; uint256 public maxSupply = 5555; uint256 public constant PUBLIC_SALE_PRICE = 0.0029 ether; uint256 public NUM_FREE_MINTS = 1500; bool public isPublicSaleActive = true; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier freeMintsAvailable() { require( totalSupply() <= NUM_FREE_MINTS, "Not enough free mints remain" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { if(totalSupply()>NUM_FREE_MINTS){ require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); } _; } constructor( ) ERC721A("The Saudi Apes", "SAPES", 100, maxSupply) { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } //A simple free mint function to avoid confusion //The normal mint function with a cost of 0 would work too // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setnumfree(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, ".json")); } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setnumfree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000805560006007556040518060600160405280603c815260200162004f53603c9139600b90805190602001906200003e92919062000323565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506115b3600d556105dc600e556001600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600e81526020017f54686520536175646920417065730000000000000000000000000000000000008152506040518060400160405280600581526020017f53415045530000000000000000000000000000000000000000000000000000008152506064600d54600081116200019b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001929062000443565b60405180910390fd5b60008211620001e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d89062000421565b60405180910390fd5b8360019080519060200190620001f992919062000323565b5082600290805190602001906200021292919062000323565b508160a08181525050806080818152505050505050620002476200023b6200025560201b60201c565b6200025d60201b60201c565b600160098190555062000579565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003319062000476565b90600052602060002090601f016020900481019282620003555760008555620003a1565b82601f106200037057805160ff1916838001178555620003a1565b82800160010185558215620003a1579182015b82811115620003a057825182559160200191906001019062000383565b5b509050620003b09190620003b4565b5090565b5b80821115620003cf576000816000905550600101620003b5565b5090565b6000620003e260278362000465565b9150620003ef82620004db565b604082019050919050565b600062000409602e8362000465565b915062000416826200052a565b604082019050919050565b600060208201905081810360008301526200043c81620003d3565b9050919050565b600060208201905081810360008301526200045e81620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048f57607f821691505b60208210811415620004a657620004a5620004ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516149a9620005aa600039600081816123ce015281816123f701526129c30152600050506149a96000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610727578063e43082f714610752578063e985e9c51461077b578063f0ea88ef146107b8578063f2fde38b146107e1576101f9565b8063b88d4fde1461066b578063c6a91b4214610694578063c87b56dd146106bf578063d5abeb01146106fc576101f9565b806395d89b41116100dc57806395d89b41146105d0578063982d669e146105fb578063a0712d6814610626578063a22cb46514610642576101f9565b806370a0823114610526578063714c539814610563578063715018a61461058e5780638da5cb5b146105a5576101f9565b806328cad13d1161019057806342842e0e1161015f57806342842e0e1461043157806349df728c1461045a5780634f6ccce71461048357806355f804b3146104c05780636352211e146104e9576101f9565b806328cad13d146103765780632a55205a1461039f5780632f745c59146103dd5780633ccfd60b1461041a576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f75780631e84c4131461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061328b565b61080a565b6040516102329190613980565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d919061399b565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613cdd565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613388565b610921565b6040516102c591906138f0565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131f1565b6109a6565b005b34801561030357600080fd5b5061030c610abf565b6040516103199190613cdd565b60405180910390f35b34801561032e57600080fd5b50610337610ac8565b6040516103449190613980565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906130db565b610adb565b005b34801561038257600080fd5b5061039d60048036038101906103989190613231565b610aeb565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906133e2565b610b84565b6040516103d4929190613957565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131f1565b610bf0565b6040516104119190613cdd565b60405180910390f35b34801561042657600080fd5b5061042f610dee565b005b34801561043d57600080fd5b50610458600480360381019061045391906130db565b610eb9565b005b34801561046657600080fd5b50610481600480360381019061047c91906132e5565b610ed9565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613388565b611074565b6040516104b79190613cdd565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061333f565b6110c7565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613388565b61115d565b60405161051d91906138f0565b60405180910390f35b34801561053257600080fd5b5061054d6004803603810190610548919061306e565b611173565b60405161055a9190613cdd565b60405180910390f35b34801561056f57600080fd5b5061057861125c565b604051610585919061399b565b60405180910390f35b34801561059a57600080fd5b506105a36112ee565b005b3480156105b157600080fd5b506105ba611376565b6040516105c791906138f0565b60405180910390f35b3480156105dc57600080fd5b506105e56113a0565b6040516105f2919061399b565b60405180910390f35b34801561060757600080fd5b50610610611432565b60405161061d9190613cdd565b60405180910390f35b610640600480360381019061063b9190613388565b611438565b005b34801561064e57600080fd5b50610669600480360381019061066491906131b1565b6115f3565b005b34801561067757600080fd5b50610692600480360381019061068d919061312e565b611774565b005b3480156106a057600080fd5b506106a96117d0565b6040516106b69190613cdd565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613388565b6117d5565b6040516106f3919061399b565b60405180910390f35b34801561070857600080fd5b50610711611847565b60405161071e9190613cdd565b60405180910390f35b34801561073357600080fd5b5061073c61184d565b6040516107499190613cdd565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613231565b611853565b005b34801561078757600080fd5b506107a2600480360381019061079d919061309b565b6118ec565b6040516107af9190613980565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613388565b611a06565b005b3480156107ed57600080fd5b506108086004803603810190610803919061306e565b611a8c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b84565b5b9050919050565b60606001805461089390614086565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90614086565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b660a4d88ddd9400081565b600061092c82611cce565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613c9d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b18261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990613b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611cdb565b6118ec565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613abd565b60405180910390fd5b610aba838383611ce3565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610ae6838383611d95565b505050565b610af3611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610b11611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613b1d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610b9084611cce565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613a9d565b60405180910390fd5b30610be5610bde85600561234e565b6064612364565b915091509250929050565b6000610bfb83611173565b8210610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906139bd565b60405180910390fd5b6000610c46610abf565b905060008060005b83811015610dac576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d985786841415610d89578195505050505050610de8565b8380610d94906140e9565b9450505b508080610da4906140e9565b915050610c4e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c1d565b60405180910390fd5b92915050565b610df6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610e14611376565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613b1d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed483838360405180602001604052806000815250611774565b505050565b610ee1611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610eff611376565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b1d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f9091906138f0565b60206040518083038186803b158015610fa857600080fd5b505afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe091906133b5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161101d929190613957565b602060405180830381600087803b15801561103757600080fd5b505af115801561104b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106f919061325e565b505050565b600061107e610abf565b82106110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a1d565b60405180910390fd5b819050919050565b6110cf611cdb565b73ffffffffffffffffffffffffffffffffffffffff166110ed611376565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613b1d565b60405180910390fd5b80600b9080519060200190611159929190612df4565b5050565b60006111688261237a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613add565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461126b90614086565b80601f016020809104026020016040519081016040528092919081815260200182805461129790614086565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b5050505050905090565b6112f6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611314611376565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613b1d565b60405180910390fd5b611374600061257d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113af90614086565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90614086565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600e5481565b6002600954141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590613c3d565b60405180910390fd5b6002600981905550660a4d88ddd9400081600e5461149a610abf565b11156114ee573481836114ad9190613ea4565b146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613bfd565b60405180910390fd5b5b600f60009054906101000a900460ff1661153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613c7d565b60405180910390fd5b82600d548161154a610abf565b6115549190613e1d565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613a3d565b60405180910390fd5b8360058111156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613a7d565b60405180910390fd5b6115e43386612643565b50505050600160098190555050565b6115fb611cdb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613b3d565b60405180910390fd5b8060066000611676611cdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611723611cdb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117689190613980565b60405180910390a35050565b61177f848484611d95565b61178b84848484612661565b6117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613b9d565b60405180910390fd5b50505050565b600581565b60606117e082611cce565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a9d565b60405180910390fd5b600b60405160200161183191906138ce565b6040516020818303038152906040529050919050565b600d5481565b60075481565b61185b611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611879611376565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613b1d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff1680156119e357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161197b91906138f0565b60206040518083038186803b15801561199357600080fd5b505afa1580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb9190613312565b73ffffffffffffffffffffffffffffffffffffffff16145b156119f2576001915050611a00565b6119fc84846127f8565b9150505b92915050565b611a0e611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611376565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613b1d565b60405180910390fd5b80600e8190555050565b611a94611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90613b1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906139dd565b60405180910390fd5b611b818161257d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc75750611cc68261288c565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da08261237a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc7611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480611e235750611dec611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611e0b84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3f5750611e3e8260000151611e39611cdb565b6118ec565b5b905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613b5d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613a5d565b60405180910390fd5b611f7085858560016128f6565b611f806000848460000151611ce3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fee9190613efe565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120929190613dd7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121989190613e1d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122de5761220e81611cce565b156122dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234686868660016128fc565b505050505050565b6000818361235c9190613ea4565b905092915050565b600081836123729190613e73565b905092915050565b612382612e7a565b61238b82611cce565b6123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906139fd565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061242e5760017f0000000000000000000000000000000000000000000000000000000000000000846124219190613f32565b61242b9190613e1d565b90505b60008390505b81811061253c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252857809350505050612578565b5080806125349061405c565b915050612434565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90613c5d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61265d828260405180602001604052806000815250612902565b5050565b60006126828473ffffffffffffffffffffffffffffffffffffffff16612de1565b156127eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ab611cdb565b8786866040518563ffffffff1660e01b81526004016126cd949392919061390b565b602060405180830381600087803b1580156126e757600080fd5b505af192505050801561271857506040513d601f19601f8201168201806040525081019061271591906132b8565b60015b61279b573d8060008114612748576040519150601f19603f3d011682016040523d82523d6000602084013e61274d565b606091505b50600081511415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90613b9d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f0565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f90613bdd565b60405180910390fd5b61298181611cce565b156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890613bbd565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613cbd565b60405180910390fd5b612a3160008583866128f6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b2e9190613dd7565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b559190613dd7565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d646000888488612661565b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90613b9d565b60405180910390fd5b8180612dae906140e9565b9250508080612dbc906140e9565b915050612cf3565b5080600081905550612dd960008785886128fc565b505050505050565b600080823b905060008111915050919050565b828054612e0090614086565b90600052602060002090601f016020900481019282612e225760008555612e69565b82601f10612e3b57805160ff1916838001178555612e69565b82800160010185558215612e69579182015b82811115612e68578251825591602001919060010190612e4d565b5b509050612e769190612eb4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ecd576000816000905550600101612eb5565b5090565b6000612ee4612edf84613d1d565b613cf8565b905082815260208101848484011115612f0057612eff6141f3565b5b612f0b84828561401a565b509392505050565b6000612f26612f2184613d4e565b613cf8565b905082815260208101848484011115612f4257612f416141f3565b5b612f4d84828561401a565b509392505050565b600081359050612f64816148e9565b92915050565b600081359050612f7981614900565b92915050565b600081519050612f8e81614900565b92915050565b600081359050612fa381614917565b92915050565b600081519050612fb881614917565b92915050565b600082601f830112612fd357612fd26141ee565b5b8135612fe3848260208601612ed1565b91505092915050565b600081359050612ffb8161492e565b92915050565b60008151905061301081614945565b92915050565b600082601f83011261302b5761302a6141ee565b5b813561303b848260208601612f13565b91505092915050565b6000813590506130538161495c565b92915050565b6000815190506130688161495c565b92915050565b600060208284031215613084576130836141fd565b5b600061309284828501612f55565b91505092915050565b600080604083850312156130b2576130b16141fd565b5b60006130c085828601612f55565b92505060206130d185828601612f55565b9150509250929050565b6000806000606084860312156130f4576130f36141fd565b5b600061310286828701612f55565b935050602061311386828701612f55565b925050604061312486828701613044565b9150509250925092565b60008060008060808587031215613148576131476141fd565b5b600061315687828801612f55565b945050602061316787828801612f55565b935050604061317887828801613044565b925050606085013567ffffffffffffffff811115613199576131986141f8565b5b6131a587828801612fbe565b91505092959194509250565b600080604083850312156131c8576131c76141fd565b5b60006131d685828601612f55565b92505060206131e785828601612f6a565b9150509250929050565b60008060408385031215613208576132076141fd565b5b600061321685828601612f55565b925050602061322785828601613044565b9150509250929050565b600060208284031215613247576132466141fd565b5b600061325584828501612f6a565b91505092915050565b600060208284031215613274576132736141fd565b5b600061328284828501612f7f565b91505092915050565b6000602082840312156132a1576132a06141fd565b5b60006132af84828501612f94565b91505092915050565b6000602082840312156132ce576132cd6141fd565b5b60006132dc84828501612fa9565b91505092915050565b6000602082840312156132fb576132fa6141fd565b5b600061330984828501612fec565b91505092915050565b600060208284031215613328576133276141fd565b5b600061333684828501613001565b91505092915050565b600060208284031215613355576133546141fd565b5b600082013567ffffffffffffffff811115613373576133726141f8565b5b61337f84828501613016565b91505092915050565b60006020828403121561339e5761339d6141fd565b5b60006133ac84828501613044565b91505092915050565b6000602082840312156133cb576133ca6141fd565b5b60006133d984828501613059565b91505092915050565b600080604083850312156133f9576133f86141fd565b5b600061340785828601613044565b925050602061341885828601613044565b9150509250929050565b61342b81613f66565b82525050565b61343a81613f78565b82525050565b600061344b82613d94565b6134558185613daa565b9350613465818560208601614029565b61346e81614202565b840191505092915050565b600061348482613d9f565b61348e8185613dbb565b935061349e818560208601614029565b6134a781614202565b840191505092915050565b600081546134bf81614086565b6134c98186613dcc565b945060018216600081146134e457600181146134f557613528565b60ff19831686528186019350613528565b6134fe85613d7f565b60005b8381101561352057815481890152600182019150602081019050613501565b838801955050505b50505092915050565b600061353e602283613dbb565b915061354982614213565b604082019050919050565b6000613561602683613dbb565b915061356c82614262565b604082019050919050565b6000613584602a83613dbb565b915061358f826142b1565b604082019050919050565b60006135a7602383613dbb565b91506135b282614300565b604082019050919050565b60006135ca602283613dbb565b91506135d58261434f565b604082019050919050565b60006135ed602583613dbb565b91506135f88261439e565b604082019050919050565b6000613610602283613dbb565b915061361b826143ed565b604082019050919050565b6000613633601183613dbb565b915061363e8261443c565b602082019050919050565b6000613656603983613dbb565b915061366182614465565b604082019050919050565b6000613679602b83613dbb565b9150613684826144b4565b604082019050919050565b600061369c602683613dbb565b91506136a782614503565b604082019050919050565b60006136bf600583613dcc565b91506136ca82614552565b600582019050919050565b60006136e2602083613dbb565b91506136ed8261457b565b602082019050919050565b6000613705601a83613dbb565b9150613710826145a4565b602082019050919050565b6000613728603283613dbb565b9150613733826145cd565b604082019050919050565b600061374b602283613dbb565b91506137568261461c565b604082019050919050565b600061376e603383613dbb565b91506137798261466b565b604082019050919050565b6000613791601d83613dbb565b915061379c826146ba565b602082019050919050565b60006137b4602183613dbb565b91506137bf826146e3565b604082019050919050565b60006137d7601883613dbb565b91506137e282614732565b602082019050919050565b60006137fa602e83613dbb565b91506138058261475b565b604082019050919050565b600061381d601f83613dbb565b9150613828826147aa565b602082019050919050565b6000613840602f83613dbb565b915061384b826147d3565b604082019050919050565b6000613863601783613dbb565b915061386e82614822565b602082019050919050565b6000613886602d83613dbb565b91506138918261484b565b604082019050919050565b60006138a9602283613dbb565b91506138b48261489a565b604082019050919050565b6138c881614010565b82525050565b60006138da82846134b2565b91506138e5826136b2565b915081905092915050565b60006020820190506139056000830184613422565b92915050565b60006080820190506139206000830187613422565b61392d6020830186613422565b61393a60408301856138bf565b818103606083015261394c8184613440565b905095945050505050565b600060408201905061396c6000830185613422565b61397960208301846138bf565b9392505050565b60006020820190506139956000830184613431565b92915050565b600060208201905081810360008301526139b58184613479565b905092915050565b600060208201905081810360008301526139d681613531565b9050919050565b600060208201905081810360008301526139f681613554565b9050919050565b60006020820190508181036000830152613a1681613577565b9050919050565b60006020820190508181036000830152613a368161359a565b9050919050565b60006020820190508181036000830152613a56816135bd565b9050919050565b60006020820190508181036000830152613a76816135e0565b9050919050565b60006020820190508181036000830152613a9681613603565b9050919050565b60006020820190508181036000830152613ab681613626565b9050919050565b60006020820190508181036000830152613ad681613649565b9050919050565b60006020820190508181036000830152613af68161366c565b9050919050565b60006020820190508181036000830152613b168161368f565b9050919050565b60006020820190508181036000830152613b36816136d5565b9050919050565b60006020820190508181036000830152613b56816136f8565b9050919050565b60006020820190508181036000830152613b768161371b565b9050919050565b60006020820190508181036000830152613b968161373e565b9050919050565b60006020820190508181036000830152613bb681613761565b9050919050565b60006020820190508181036000830152613bd681613784565b9050919050565b60006020820190508181036000830152613bf6816137a7565b9050919050565b60006020820190508181036000830152613c16816137ca565b9050919050565b60006020820190508181036000830152613c36816137ed565b9050919050565b60006020820190508181036000830152613c5681613810565b9050919050565b60006020820190508181036000830152613c7681613833565b9050919050565b60006020820190508181036000830152613c9681613856565b9050919050565b60006020820190508181036000830152613cb681613879565b9050919050565b60006020820190508181036000830152613cd68161389c565b9050919050565b6000602082019050613cf260008301846138bf565b92915050565b6000613d02613d13565b9050613d0e82826140b8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3857613d376141bf565b5b613d4182614202565b9050602081019050919050565b600067ffffffffffffffff821115613d6957613d686141bf565b5b613d7282614202565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de282613fd4565b9150613ded83613fd4565b9250826fffffffffffffffffffffffffffffffff03821115613e1257613e11614132565b5b828201905092915050565b6000613e2882614010565b9150613e3383614010565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6857613e67614132565b5b828201905092915050565b6000613e7e82614010565b9150613e8983614010565b925082613e9957613e98614161565b5b828204905092915050565b6000613eaf82614010565b9150613eba83614010565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef357613ef2614132565b5b828202905092915050565b6000613f0982613fd4565b9150613f1483613fd4565b925082821015613f2757613f26614132565b5b828203905092915050565b6000613f3d82614010565b9150613f4883614010565b925082821015613f5b57613f5a614132565b5b828203905092915050565b6000613f7182613ff0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613fbb82613f66565b9050919050565b6000613fcd82613f66565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561404757808201518184015260208101905061402c565b83811115614056576000848401525b50505050565b600061406782614010565b9150600082141561407b5761407a614132565b5b600182039050919050565b6000600282049050600182168061409e57607f821691505b602082108114156140b2576140b1614190565b5b50919050565b6140c182614202565b810181811067ffffffffffffffff821117156140e0576140df6141bf565b5b80604052505050565b60006140f482614010565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561412757614126614132565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6148f281613f66565b81146148fd57600080fd5b50565b61490981613f78565b811461491457600080fd5b50565b61492081613f84565b811461492b57600080fd5b50565b61493781613fb0565b811461494257600080fd5b50565b61494e81613fc2565b811461495957600080fd5b50565b61496581614010565b811461497057600080fd5b5056fea264697066735822122011957e42eaa68a21f72c062a9c104e030abdf60fb6937f08c0a011f4634d4c4964736f6c63430008070033697066733a2f2f516d654c517369563345594465684b6d6146434562767346704b3967744a4563676e5270434d767a366e5a3270392f68696464656e
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610727578063e43082f714610752578063e985e9c51461077b578063f0ea88ef146107b8578063f2fde38b146107e1576101f9565b8063b88d4fde1461066b578063c6a91b4214610694578063c87b56dd146106bf578063d5abeb01146106fc576101f9565b806395d89b41116100dc57806395d89b41146105d0578063982d669e146105fb578063a0712d6814610626578063a22cb46514610642576101f9565b806370a0823114610526578063714c539814610563578063715018a61461058e5780638da5cb5b146105a5576101f9565b806328cad13d1161019057806342842e0e1161015f57806342842e0e1461043157806349df728c1461045a5780634f6ccce71461048357806355f804b3146104c05780636352211e146104e9576101f9565b806328cad13d146103765780632a55205a1461039f5780632f745c59146103dd5780633ccfd60b1461041a576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce57806318160ddd146102f75780631e84c4131461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061328b565b61080a565b6040516102329190613980565b60405180910390f35b34801561024757600080fd5b50610250610884565b60405161025d919061399b565b60405180910390f35b34801561027257600080fd5b5061027b610916565b6040516102889190613cdd565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190613388565b610921565b6040516102c591906138f0565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f091906131f1565b6109a6565b005b34801561030357600080fd5b5061030c610abf565b6040516103199190613cdd565b60405180910390f35b34801561032e57600080fd5b50610337610ac8565b6040516103449190613980565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906130db565b610adb565b005b34801561038257600080fd5b5061039d60048036038101906103989190613231565b610aeb565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906133e2565b610b84565b6040516103d4929190613957565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131f1565b610bf0565b6040516104119190613cdd565b60405180910390f35b34801561042657600080fd5b5061042f610dee565b005b34801561043d57600080fd5b50610458600480360381019061045391906130db565b610eb9565b005b34801561046657600080fd5b50610481600480360381019061047c91906132e5565b610ed9565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613388565b611074565b6040516104b79190613cdd565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061333f565b6110c7565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613388565b61115d565b60405161051d91906138f0565b60405180910390f35b34801561053257600080fd5b5061054d6004803603810190610548919061306e565b611173565b60405161055a9190613cdd565b60405180910390f35b34801561056f57600080fd5b5061057861125c565b604051610585919061399b565b60405180910390f35b34801561059a57600080fd5b506105a36112ee565b005b3480156105b157600080fd5b506105ba611376565b6040516105c791906138f0565b60405180910390f35b3480156105dc57600080fd5b506105e56113a0565b6040516105f2919061399b565b60405180910390f35b34801561060757600080fd5b50610610611432565b60405161061d9190613cdd565b60405180910390f35b610640600480360381019061063b9190613388565b611438565b005b34801561064e57600080fd5b50610669600480360381019061066491906131b1565b6115f3565b005b34801561067757600080fd5b50610692600480360381019061068d919061312e565b611774565b005b3480156106a057600080fd5b506106a96117d0565b6040516106b69190613cdd565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613388565b6117d5565b6040516106f3919061399b565b60405180910390f35b34801561070857600080fd5b50610711611847565b60405161071e9190613cdd565b60405180910390f35b34801561073357600080fd5b5061073c61184d565b6040516107499190613cdd565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613231565b611853565b005b34801561078757600080fd5b506107a2600480360381019061079d919061309b565b6118ec565b6040516107af9190613980565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613388565b611a06565b005b3480156107ed57600080fd5b506108086004803603810190610803919061306e565b611a8c565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d575061087c82611b84565b5b9050919050565b60606001805461089390614086565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90614086565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b660a4d88ddd9400081565b600061092c82611cce565b61096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096290613c9d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b18261115d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990613b7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a41611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480610a705750610a6f81610a6a611cdb565b6118ec565b5b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613abd565b60405180910390fd5b610aba838383611ce3565b505050565b60008054905090565b600f60009054906101000a900460ff1681565b610ae6838383611d95565b505050565b610af3611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610b11611376565b73ffffffffffffffffffffffffffffffffffffffff1614610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90613b1d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610b9084611cce565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613a9d565b60405180910390fd5b30610be5610bde85600561234e565b6064612364565b915091509250929050565b6000610bfb83611173565b8210610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906139bd565b60405180910390fd5b6000610c46610abf565b905060008060005b83811015610dac576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d4057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d985786841415610d89578195505050505050610de8565b8380610d94906140e9565b9450505b508080610da4906140e9565b915050610c4e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90613c1d565b60405180910390fd5b92915050565b610df6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610e14611376565b73ffffffffffffffffffffffffffffffffffffffff1614610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613b1d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b5050565b610ed483838360405180602001604052806000815250611774565b505050565b610ee1611cdb565b73ffffffffffffffffffffffffffffffffffffffff16610eff611376565b73ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b1d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f9091906138f0565b60206040518083038186803b158015610fa857600080fd5b505afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe091906133b5565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161101d929190613957565b602060405180830381600087803b15801561103757600080fd5b505af115801561104b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106f919061325e565b505050565b600061107e610abf565b82106110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690613a1d565b60405180910390fd5b819050919050565b6110cf611cdb565b73ffffffffffffffffffffffffffffffffffffffff166110ed611376565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613b1d565b60405180910390fd5b80600b9080519060200190611159929190612df4565b5050565b60006111688261237a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90613add565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461126b90614086565b80601f016020809104026020016040519081016040528092919081815260200182805461129790614086565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b5050505050905090565b6112f6611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611314611376565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613b1d565b60405180910390fd5b611374600061257d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113af90614086565b80601f01602080910402602001604051908101604052809291908181526020018280546113db90614086565b80156114285780601f106113fd57610100808354040283529160200191611428565b820191906000526020600020905b81548152906001019060200180831161140b57829003601f168201915b5050505050905090565b600e5481565b6002600954141561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590613c3d565b60405180910390fd5b6002600981905550660a4d88ddd9400081600e5461149a610abf565b11156114ee573481836114ad9190613ea4565b146114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613bfd565b60405180910390fd5b5b600f60009054906101000a900460ff1661153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613c7d565b60405180910390fd5b82600d548161154a610abf565b6115549190613e1d565b1115611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613a3d565b60405180910390fd5b8360058111156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613a7d565b60405180910390fd5b6115e43386612643565b50505050600160098190555050565b6115fb611cdb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613b3d565b60405180910390fd5b8060066000611676611cdb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611723611cdb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117689190613980565b60405180910390a35050565b61177f848484611d95565b61178b84848484612661565b6117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613b9d565b60405180910390fd5b50505050565b600581565b60606117e082611cce565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a9d565b60405180910390fd5b600b60405160200161183191906138ce565b6040516020818303038152906040529050919050565b600d5481565b60075481565b61185b611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611879611376565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613b1d565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff1680156119e357508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161197b91906138f0565b60206040518083038186803b15801561199357600080fd5b505afa1580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb9190613312565b73ffffffffffffffffffffffffffffffffffffffff16145b156119f2576001915050611a00565b6119fc84846127f8565b9150505b92915050565b611a0e611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611a2c611376565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990613b1d565b60405180910390fd5b80600e8190555050565b611a94611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611376565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90613b1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906139dd565b60405180910390fd5b611b818161257d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cc75750611cc68261288c565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da08261237a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dc7611cdb565b73ffffffffffffffffffffffffffffffffffffffff161480611e235750611dec611cdb565b73ffffffffffffffffffffffffffffffffffffffff16611e0b84610921565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e3f5750611e3e8260000151611e39611cdb565b6118ec565b5b905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613b5d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a90613a5d565b60405180910390fd5b611f7085858560016128f6565b611f806000848460000151611ce3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fee9190613efe565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120929190613dd7565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121989190613e1d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122de5761220e81611cce565b156122dd576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234686868660016128fc565b505050505050565b6000818361235c9190613ea4565b905092915050565b600081836123729190613e73565b905092915050565b612382612e7a565b61238b82611cce565b6123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c1906139fd565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000064831061242e5760017f0000000000000000000000000000000000000000000000000000000000000064846124219190613f32565b61242b9190613e1d565b90505b60008390505b81811061253c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461252857809350505050612578565b5080806125349061405c565b915050612434565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90613c5d565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61265d828260405180602001604052806000815250612902565b5050565b60006126828473ffffffffffffffffffffffffffffffffffffffff16612de1565b156127eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126ab611cdb565b8786866040518563ffffffff1660e01b81526004016126cd949392919061390b565b602060405180830381600087803b1580156126e757600080fd5b505af192505050801561271857506040513d601f19601f8201168201806040525081019061271591906132b8565b60015b61279b573d8060008114612748576040519150601f19603f3d011682016040523d82523d6000602084013e61274d565b606091505b50600081511415612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a90613b9d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f0565b600190505b949350505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296f90613bdd565b60405180910390fd5b61298181611cce565b156129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890613bbd565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613cbd565b60405180910390fd5b612a3160008583866128f6565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b2e9190613dd7565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b559190613dd7565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d646000888488612661565b612da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9a90613b9d565b60405180910390fd5b8180612dae906140e9565b9250508080612dbc906140e9565b915050612cf3565b5080600081905550612dd960008785886128fc565b505050505050565b600080823b905060008111915050919050565b828054612e0090614086565b90600052602060002090601f016020900481019282612e225760008555612e69565b82601f10612e3b57805160ff1916838001178555612e69565b82800160010185558215612e69579182015b82811115612e68578251825591602001919060010190612e4d565b5b509050612e769190612eb4565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ecd576000816000905550600101612eb5565b5090565b6000612ee4612edf84613d1d565b613cf8565b905082815260208101848484011115612f0057612eff6141f3565b5b612f0b84828561401a565b509392505050565b6000612f26612f2184613d4e565b613cf8565b905082815260208101848484011115612f4257612f416141f3565b5b612f4d84828561401a565b509392505050565b600081359050612f64816148e9565b92915050565b600081359050612f7981614900565b92915050565b600081519050612f8e81614900565b92915050565b600081359050612fa381614917565b92915050565b600081519050612fb881614917565b92915050565b600082601f830112612fd357612fd26141ee565b5b8135612fe3848260208601612ed1565b91505092915050565b600081359050612ffb8161492e565b92915050565b60008151905061301081614945565b92915050565b600082601f83011261302b5761302a6141ee565b5b813561303b848260208601612f13565b91505092915050565b6000813590506130538161495c565b92915050565b6000815190506130688161495c565b92915050565b600060208284031215613084576130836141fd565b5b600061309284828501612f55565b91505092915050565b600080604083850312156130b2576130b16141fd565b5b60006130c085828601612f55565b92505060206130d185828601612f55565b9150509250929050565b6000806000606084860312156130f4576130f36141fd565b5b600061310286828701612f55565b935050602061311386828701612f55565b925050604061312486828701613044565b9150509250925092565b60008060008060808587031215613148576131476141fd565b5b600061315687828801612f55565b945050602061316787828801612f55565b935050604061317887828801613044565b925050606085013567ffffffffffffffff811115613199576131986141f8565b5b6131a587828801612fbe565b91505092959194509250565b600080604083850312156131c8576131c76141fd565b5b60006131d685828601612f55565b92505060206131e785828601612f6a565b9150509250929050565b60008060408385031215613208576132076141fd565b5b600061321685828601612f55565b925050602061322785828601613044565b9150509250929050565b600060208284031215613247576132466141fd565b5b600061325584828501612f6a565b91505092915050565b600060208284031215613274576132736141fd565b5b600061328284828501612f7f565b91505092915050565b6000602082840312156132a1576132a06141fd565b5b60006132af84828501612f94565b91505092915050565b6000602082840312156132ce576132cd6141fd565b5b60006132dc84828501612fa9565b91505092915050565b6000602082840312156132fb576132fa6141fd565b5b600061330984828501612fec565b91505092915050565b600060208284031215613328576133276141fd565b5b600061333684828501613001565b91505092915050565b600060208284031215613355576133546141fd565b5b600082013567ffffffffffffffff811115613373576133726141f8565b5b61337f84828501613016565b91505092915050565b60006020828403121561339e5761339d6141fd565b5b60006133ac84828501613044565b91505092915050565b6000602082840312156133cb576133ca6141fd565b5b60006133d984828501613059565b91505092915050565b600080604083850312156133f9576133f86141fd565b5b600061340785828601613044565b925050602061341885828601613044565b9150509250929050565b61342b81613f66565b82525050565b61343a81613f78565b82525050565b600061344b82613d94565b6134558185613daa565b9350613465818560208601614029565b61346e81614202565b840191505092915050565b600061348482613d9f565b61348e8185613dbb565b935061349e818560208601614029565b6134a781614202565b840191505092915050565b600081546134bf81614086565b6134c98186613dcc565b945060018216600081146134e457600181146134f557613528565b60ff19831686528186019350613528565b6134fe85613d7f565b60005b8381101561352057815481890152600182019150602081019050613501565b838801955050505b50505092915050565b600061353e602283613dbb565b915061354982614213565b604082019050919050565b6000613561602683613dbb565b915061356c82614262565b604082019050919050565b6000613584602a83613dbb565b915061358f826142b1565b604082019050919050565b60006135a7602383613dbb565b91506135b282614300565b604082019050919050565b60006135ca602283613dbb565b91506135d58261434f565b604082019050919050565b60006135ed602583613dbb565b91506135f88261439e565b604082019050919050565b6000613610602283613dbb565b915061361b826143ed565b604082019050919050565b6000613633601183613dbb565b915061363e8261443c565b602082019050919050565b6000613656603983613dbb565b915061366182614465565b604082019050919050565b6000613679602b83613dbb565b9150613684826144b4565b604082019050919050565b600061369c602683613dbb565b91506136a782614503565b604082019050919050565b60006136bf600583613dcc565b91506136ca82614552565b600582019050919050565b60006136e2602083613dbb565b91506136ed8261457b565b602082019050919050565b6000613705601a83613dbb565b9150613710826145a4565b602082019050919050565b6000613728603283613dbb565b9150613733826145cd565b604082019050919050565b600061374b602283613dbb565b91506137568261461c565b604082019050919050565b600061376e603383613dbb565b91506137798261466b565b604082019050919050565b6000613791601d83613dbb565b915061379c826146ba565b602082019050919050565b60006137b4602183613dbb565b91506137bf826146e3565b604082019050919050565b60006137d7601883613dbb565b91506137e282614732565b602082019050919050565b60006137fa602e83613dbb565b91506138058261475b565b604082019050919050565b600061381d601f83613dbb565b9150613828826147aa565b602082019050919050565b6000613840602f83613dbb565b915061384b826147d3565b604082019050919050565b6000613863601783613dbb565b915061386e82614822565b602082019050919050565b6000613886602d83613dbb565b91506138918261484b565b604082019050919050565b60006138a9602283613dbb565b91506138b48261489a565b604082019050919050565b6138c881614010565b82525050565b60006138da82846134b2565b91506138e5826136b2565b915081905092915050565b60006020820190506139056000830184613422565b92915050565b60006080820190506139206000830187613422565b61392d6020830186613422565b61393a60408301856138bf565b818103606083015261394c8184613440565b905095945050505050565b600060408201905061396c6000830185613422565b61397960208301846138bf565b9392505050565b60006020820190506139956000830184613431565b92915050565b600060208201905081810360008301526139b58184613479565b905092915050565b600060208201905081810360008301526139d681613531565b9050919050565b600060208201905081810360008301526139f681613554565b9050919050565b60006020820190508181036000830152613a1681613577565b9050919050565b60006020820190508181036000830152613a368161359a565b9050919050565b60006020820190508181036000830152613a56816135bd565b9050919050565b60006020820190508181036000830152613a76816135e0565b9050919050565b60006020820190508181036000830152613a9681613603565b9050919050565b60006020820190508181036000830152613ab681613626565b9050919050565b60006020820190508181036000830152613ad681613649565b9050919050565b60006020820190508181036000830152613af68161366c565b9050919050565b60006020820190508181036000830152613b168161368f565b9050919050565b60006020820190508181036000830152613b36816136d5565b9050919050565b60006020820190508181036000830152613b56816136f8565b9050919050565b60006020820190508181036000830152613b768161371b565b9050919050565b60006020820190508181036000830152613b968161373e565b9050919050565b60006020820190508181036000830152613bb681613761565b9050919050565b60006020820190508181036000830152613bd681613784565b9050919050565b60006020820190508181036000830152613bf6816137a7565b9050919050565b60006020820190508181036000830152613c16816137ca565b9050919050565b60006020820190508181036000830152613c36816137ed565b9050919050565b60006020820190508181036000830152613c5681613810565b9050919050565b60006020820190508181036000830152613c7681613833565b9050919050565b60006020820190508181036000830152613c9681613856565b9050919050565b60006020820190508181036000830152613cb681613879565b9050919050565b60006020820190508181036000830152613cd68161389c565b9050919050565b6000602082019050613cf260008301846138bf565b92915050565b6000613d02613d13565b9050613d0e82826140b8565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3857613d376141bf565b5b613d4182614202565b9050602081019050919050565b600067ffffffffffffffff821115613d6957613d686141bf565b5b613d7282614202565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613de282613fd4565b9150613ded83613fd4565b9250826fffffffffffffffffffffffffffffffff03821115613e1257613e11614132565b5b828201905092915050565b6000613e2882614010565b9150613e3383614010565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6857613e67614132565b5b828201905092915050565b6000613e7e82614010565b9150613e8983614010565b925082613e9957613e98614161565b5b828204905092915050565b6000613eaf82614010565b9150613eba83614010565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef357613ef2614132565b5b828202905092915050565b6000613f0982613fd4565b9150613f1483613fd4565b925082821015613f2757613f26614132565b5b828203905092915050565b6000613f3d82614010565b9150613f4883614010565b925082821015613f5b57613f5a614132565b5b828203905092915050565b6000613f7182613ff0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613fbb82613f66565b9050919050565b6000613fcd82613f66565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561404757808201518184015260208101905061402c565b83811115614056576000848401525b50505050565b600061406782614010565b9150600082141561407b5761407a614132565b5b600182039050919050565b6000600282049050600182168061409e57607f821691505b602082108114156140b2576140b1614190565b5b50919050565b6140c182614202565b810181811067ffffffffffffffff821117156140e0576140df6141bf565b5b80604052505050565b60006140f482614010565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561412757614126614132565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6148f281613f66565b81146148fd57600080fd5b50565b61490981613f78565b811461491457600080fd5b50565b61492081613f84565b811461492b57600080fd5b50565b61493781613fb0565b811461494257600080fd5b50565b61494e81613fc2565b811461495957600080fd5b50565b61496581614010565b811461497057600080fd5b5056fea264697066735822122011957e42eaa68a21f72c062a9c104e030abdf60fb6937f08c0a011f4634d4c4964736f6c63430008070033
Deployed Bytecode Sourcemap
55020:5680:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58918:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44239:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55540:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45764:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45327:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41074:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55646:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46614:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58023:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60379:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58335:143;;;;;;;;;;;;;:::i;:::-;;46819:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58486:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41237:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57625:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44062:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42939:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57461:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19097:103;;;;;;;;;;;;;:::i;:::-;;18446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44394:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55603:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56945:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46032:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47039:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55449:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60035:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55500:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51454:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57849:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59347:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58191:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58918:292;59066:4;59123:26;59108:41;;;:11;:41;;;;:94;;;;59166:36;59190:11;59166:23;:36::i;:::-;59108:94;59088:114;;58918:292;;;:::o;44239:94::-;44293:13;44322:5;44315:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44239:94;:::o;55540:56::-;55584:12;55540:56;:::o;45764:204::-;45832:7;45856:16;45864:7;45856;:16::i;:::-;45848:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45938:15;:24;45954:7;45938:24;;;;;;;;;;;;;;;;;;;;;45931:31;;45764:204;;;:::o;45327:379::-;45396:13;45412:24;45428:7;45412:15;:24::i;:::-;45396:40;;45457:5;45451:11;;:2;:11;;;;45443:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45542:5;45526:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45551:37;45568:5;45575:12;:10;:12::i;:::-;45551:16;:37::i;:::-;45526:62;45510:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45672:28;45681:2;45685:7;45694:5;45672:8;:28::i;:::-;45389:317;45327:379;;:::o;41074:94::-;41127:7;41150:12;;41143:19;;41074:94;:::o;55646:37::-;;;;;;;;;;;;;:::o;46614:142::-;46722:28;46732:4;46738:2;46742:7;46722:9;:28::i;:::-;46614:142;;;:::o;58023:158::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58154:19:::1;58133:18;;:40;;;;;;;;;;;;;;;;;;58023:158:::0;:::o;60379:318::-;60504:16;60522:21;60569:16;60577:7;60569;:16::i;:::-;60561:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60636:4;60643:45;60656:26;60669:9;60680:1;60656:12;:26::i;:::-;60684:3;60643:12;:45::i;:::-;60620:69;;;;60379:318;;;;;:::o;41705:744::-;41814:7;41849:16;41859:5;41849:9;:16::i;:::-;41841:5;:24;41833:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41911:22;41936:13;:11;:13::i;:::-;41911:38;;41956:19;41986:25;42036:9;42031:350;42055:14;42051:1;:18;42031:350;;;42085:31;42119:11;:14;42131:1;42119:14;;;;;;;;;;;42085:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42172:1;42146:28;;:9;:14;;;:28;;;42142:89;;42207:9;:14;;;42187:34;;42142:89;42264:5;42243:26;;:17;:26;;;42239:135;;;42301:5;42286:11;:20;42282:59;;;42328:1;42321:8;;;;;;;;;42282:59;42351:13;;;;;:::i;:::-;;;;42239:135;42076:305;42071:3;;;;;:::i;:::-;;;;42031:350;;;;42387:56;;;;;;;;;;:::i;:::-;;;;;;;;41705:744;;;;;:::o;58335:143::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58383:15:::1;58401:21;58383:39;;58441:10;58433:28;;:37;58462:7;58433:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58372:106;58335:143::o:0;46819:157::-;46931:39;46948:4;46954:2;46958:7;46931:39;;;;;;;;;;;;:16;:39::i;:::-;46819:157;;;:::o;58486:168::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58552:15:::1;58570:5;:15;;;58594:4;58570:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58552:48;;58611:5;:14;;;58626:10;58638:7;58611:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58541:113;58486:168:::0;:::o;41237:177::-;41304:7;41336:13;:11;:13::i;:::-;41328:5;:21;41320:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41403:5;41396:12;;41237:177;;;:::o;57625:100::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57709:8:::1;57699:7;:18;;;;;;;;;;;;:::i;:::-;;57625:100:::0;:::o;44062:118::-;44126:7;44149:20;44161:7;44149:11;:20::i;:::-;:25;;;44142:32;;44062:118;;;:::o;42939:211::-;43003:7;43044:1;43027:19;;:5;:19;;;;43019:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43116:12;:19;43129:5;43116:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43108:36;;43101:43;;42939:211;;;:::o;57461:93::-;57506:13;57539:7;57532:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57461:93;:::o;19097:103::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19162:30:::1;19189:1;19162:18;:30::i;:::-;19097:103::o:0;18446:87::-;18492:7;18519:6;;;;;;;;;;;18512:13;;18446:87;:::o;44394:98::-;44450:13;44479:7;44472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44394:98;:::o;55603:36::-;;;;:::o;56945:321::-;10375:1;10973:7;;:19;;10965:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10375:1;11106:7;:18;;;;55584:12:::1;57085:14;56615;;56601:13;:11;:13::i;:::-;:28;56598:166;;;56691:9;56672:14;56664:5;:22;;;;:::i;:::-;56663:37;56641:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56598:166;55813:18:::2;;;;;;;;;;;55805:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57148:14:::3;56224:9;;56189:14;56173:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56151:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57187:14:::4;55492:1;55971:14;:34;;55949:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57221:37:::5;57231:10;57243:14;57221:9;:37::i;:::-;56306:1:::4;55870::::3;11137::::1;;10331::::0;11285:7;:22;;;;56945:321;:::o;46032:274::-;46135:12;:10;:12::i;:::-;46123:24;;:8;:24;;;;46115:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46232:8;46187:18;:32;46206:12;:10;:12::i;:::-;46187:32;;;;;;;;;;;;;;;:42;46220:8;46187:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46281:8;46252:48;;46267:12;:10;:12::i;:::-;46252:48;;;46291:8;46252:48;;;;;;:::i;:::-;;;;;;;;46032:274;;:::o;47039:311::-;47176:28;47186:4;47192:2;47196:7;47176:9;:28::i;:::-;47227:48;47250:4;47256:2;47260:7;47269:5;47227:22;:48::i;:::-;47211:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47039:311;;;;:::o;55449:44::-;55492:1;55449:44;:::o;60035:278::-;60153:13;60192:16;60200:7;60192;:16::i;:::-;60184:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60287:7;60270:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;60243:62;;60035:278;;;:::o;55500:31::-;;;;:::o;51454:43::-;;;;:::o;57849:166::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57986:21:::1;57963:20;;:44;;;;;;;;;;;;;;;;;;57849:166:::0;:::o;59347:617::-;59472:4;59637:27;59695;;;;;;;;;;;59637:96;;59762:20;;;;;;;;;;;:86;;;;;59840:8;59799:49;;59807:13;:21;;;59829:5;59807:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59799:49;;;59762:86;59744:154;;;59882:4;59875:11;;;;;59744:154;59917:39;59940:5;59947:8;59917:22;:39::i;:::-;59910:46;;;59347:617;;;;;:::o;58191:134::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58304:13:::1;58287:14;:30;;;;58191:134:::0;:::o;19355:201::-;18677:12;:10;:12::i;:::-;18666:23;;:7;:5;:7::i;:::-;:23;;;18658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19464:1:::1;19444:22;;:8;:22;;;;19436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19520:28;19539:8;19520:18;:28::i;:::-;19355:201:::0;:::o;42513:370::-;42640:4;42685:25;42670:40;;;:11;:40;;;;:99;;;;42736:33;42721:48;;;:11;:48;;;;42670:99;:160;;;;42795:35;42780:50;;;:11;:50;;;;42670:160;:207;;;;42841:36;42865:11;42841:23;:36::i;:::-;42670:207;42656:221;;42513:370;;;:::o;47589:105::-;47646:4;47676:12;;47666:7;:22;47659:29;;47589:105;;;:::o;17170:98::-;17223:7;17250:10;17243:17;;17170:98;:::o;51276:172::-;51400:2;51373:15;:24;51389:7;51373:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51434:7;51430:2;51414:28;;51423:5;51414:28;;;;;;;;;;;;51276:172;;;:::o;49641:1529::-;49738:35;49776:20;49788:7;49776:11;:20::i;:::-;49738:58;;49805:22;49847:13;:18;;;49831:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49900:12;:10;:12::i;:::-;49876:36;;:20;49888:7;49876:11;:20::i;:::-;:36;;;49831:81;:142;;;;49923:50;49940:13;:18;;;49960:12;:10;:12::i;:::-;49923:16;:50::i;:::-;49831:142;49805:169;;49999:17;49983:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50131:4;50109:26;;:13;:18;;;:26;;;50093:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50220:1;50206:16;;:2;:16;;;;50198:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50273:43;50295:4;50301:2;50305:7;50314:1;50273:21;:43::i;:::-;50373:49;50390:1;50394:7;50403:13;:18;;;50373:8;:49::i;:::-;50461:1;50431:12;:18;50444:4;50431:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50497:1;50469:12;:16;50482:2;50469:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50528:43;;;;;;;;50543:2;50528:43;;;;;;50554:15;50528:43;;;;;50505:11;:20;50517:7;50505:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50799:19;50831:1;50821:7;:11;;;;:::i;:::-;50799:33;;50884:1;50843:43;;:11;:24;50855:11;50843:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50839:236;;;50901:20;50909:11;50901:7;:20::i;:::-;50897:171;;;50961:97;;;;;;;;50988:13;:18;;;50961:97;;;;;;51019:13;:28;;;50961:97;;;;;50934:11;:24;50946:11;50934:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50897:171;50839:236;51107:7;51103:2;51088:27;;51097:4;51088:27;;;;;;;;;;;;51122:42;51143:4;51149:2;51153:7;51162:1;51122:20;:42::i;:::-;49731:1439;;;49641:1529;;;:::o;3671:98::-;3729:7;3760:1;3756;:5;;;;:::i;:::-;3749:12;;3671:98;;;;:::o;4070:::-;4128:7;4159:1;4155;:5;;;;:::i;:::-;4148:12;;4070:98;;;;:::o;43402:606::-;43478:21;;:::i;:::-;43519:16;43527:7;43519;:16::i;:::-;43511:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:26;43639:12;43628:7;:23;43624:93;;43708:1;43693:12;43683:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43662:47;;43624:93;43730:12;43745:7;43730:22;;43725:212;43762:18;43754:4;:26;43725:212;;43799:31;43833:11;:17;43845:4;43833:17;;;;;;;;;;;43799:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43889:1;43863:28;;:9;:14;;;:28;;;43859:71;;43911:9;43904:16;;;;;;;43859:71;43790:147;43782:6;;;;;:::i;:::-;;;;43725:212;;;;43945:57;;;;;;;;;;:::i;:::-;;;;;;;;43402:606;;;;:::o;19716:191::-;19790:16;19809:6;;;;;;;;;;;19790:25;;19835:8;19826:6;;:17;;;;;;;;;;;;;;;;;;19890:8;19859:40;;19880:8;19859:40;;;;;;;;;;;;19779:128;19716:191;:::o;47700:98::-;47765:27;47775:2;47779:8;47765:27;;;;;;;;;;;;:9;:27::i;:::-;47700:98;;:::o;52991:690::-;53128:4;53145:15;:2;:13;;;:15::i;:::-;53141:535;;;53200:2;53184:36;;;53221:12;:10;:12::i;:::-;53235:4;53241:7;53250:5;53184:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53432:1;53415:6;:13;:18;53411:215;;;53448:61;;;;;;;;;;:::i;:::-;;;;;;;;53411:215;53594:6;53588:13;53579:6;53575:2;53571:15;53564:38;53171:464;53316:45;;;53306:55;;;:6;:55;;;;53299:62;;;;;53141:535;53664:4;53657:11;;52991:690;;;;;;;:::o;46369:186::-;46491:4;46514:18;:25;46533:5;46514:25;;;;;;;;;;;;;;;:35;46540:8;46514:35;;;;;;;;;;;;;;;;;;;;;;;;;46507:42;;46369:186;;;;:::o;31846:157::-;31931:4;31970:25;31955:40;;;:11;:40;;;;31948:47;;31846:157;;;:::o;54143:141::-;;;;;:::o;54670:140::-;;;;;:::o;48137:1272::-;48242:20;48265:12;;48242:35;;48306:1;48292:16;;:2;:16;;;;48284:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48483:21;48491:12;48483:7;:21::i;:::-;48482:22;48474:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48565:12;48553:8;:24;;48545:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:61;48655:1;48659:2;48663:12;48677:8;48625:21;:61::i;:::-;48695:30;48728:12;:16;48741:2;48728:16;;;;;;;;;;;;;;;48695:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48770:119;;;;;;;;48820:8;48790:11;:19;;;:39;;;;:::i;:::-;48770:119;;;;;;48873:8;48838:11;:24;;;:44;;;;:::i;:::-;48770:119;;;;;48751:12;:16;48764:2;48751:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48924:43;;;;;;;;48939:2;48924:43;;;;;;48950:15;48924:43;;;;;48896:11;:25;48908:12;48896:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48976:20;48999:12;48976:35;;49025:9;49020:281;49044:8;49040:1;:12;49020:281;;;49098:12;49094:2;49073:38;;49090:1;49073:38;;;;;;;;;;;;49138:59;49169:1;49173:2;49177:12;49191:5;49138:22;:59::i;:::-;49120:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49279:14;;;;;:::i;:::-;;;;49054:3;;;;;:::i;:::-;;;;49020:281;;;;49324:12;49309;:27;;;;49343:60;49372:1;49376:2;49380:12;49394:8;49343:20;:60::i;:::-;48235:1174;;;48137:1272;;;:::o;20734:387::-;20794:4;21002:12;21069:7;21057:20;21049:28;;21112:1;21105:4;:8;21098:15;;;20734:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2088:201::-;2174:5;2205:6;2199:13;2190:22;;2221:62;2277:5;2221:62;:::i;:::-;2088:201;;;;:::o;2309:340::-;2365:5;2414:3;2407:4;2399:6;2395:17;2391:27;2381:122;;2422:79;;:::i;:::-;2381:122;2539:6;2526:20;2564:79;2639:3;2631:6;2624:4;2616:6;2612:17;2564:79;:::i;:::-;2555:88;;2371:278;2309:340;;;;:::o;2655:139::-;2701:5;2739:6;2726:20;2717:29;;2755:33;2782:5;2755:33;:::i;:::-;2655:139;;;;:::o;2800:143::-;2857:5;2888:6;2882:13;2873:22;;2904:33;2931:5;2904:33;:::i;:::-;2800:143;;;;:::o;2949:329::-;3008:6;3057:2;3045:9;3036:7;3032:23;3028:32;3025:119;;;3063:79;;:::i;:::-;3025:119;3183:1;3208:53;3253:7;3244:6;3233:9;3229:22;3208:53;:::i;:::-;3198:63;;3154:117;2949:329;;;;:::o;3284:474::-;3352:6;3360;3409:2;3397:9;3388:7;3384:23;3380:32;3377:119;;;3415:79;;:::i;:::-;3377:119;3535:1;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3506:117;3662:2;3688:53;3733:7;3724:6;3713:9;3709:22;3688:53;:::i;:::-;3678:63;;3633:118;3284:474;;;;;:::o;3764:619::-;3841:6;3849;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;4287:2;4313:53;4358:7;4349:6;4338:9;4334:22;4313:53;:::i;:::-;4303:63;;4258:118;3764:619;;;;;:::o;4389:943::-;4484:6;4492;4500;4508;4557:3;4545:9;4536:7;4532:23;4528:33;4525:120;;;4564:79;;:::i;:::-;4525:120;4684:1;4709:53;4754:7;4745:6;4734:9;4730:22;4709:53;:::i;:::-;4699:63;;4655:117;4811:2;4837:53;4882:7;4873:6;4862:9;4858:22;4837:53;:::i;:::-;4827:63;;4782:118;4939:2;4965:53;5010:7;5001:6;4990:9;4986:22;4965:53;:::i;:::-;4955:63;;4910:118;5095:2;5084:9;5080:18;5067:32;5126:18;5118:6;5115:30;5112:117;;;5148:79;;:::i;:::-;5112:117;5253:62;5307:7;5298:6;5287:9;5283:22;5253:62;:::i;:::-;5243:72;;5038:287;4389:943;;;;;;;:::o;5338:468::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:50;5781:7;5772:6;5761:9;5757:22;5739:50;:::i;:::-;5729:60;;5684:115;5338:468;;;;;:::o;5812:474::-;5880:6;5888;5937:2;5925:9;5916:7;5912:23;5908:32;5905:119;;;5943:79;;:::i;:::-;5905:119;6063:1;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6034:117;6190:2;6216:53;6261:7;6252:6;6241:9;6237:22;6216:53;:::i;:::-;6206:63;;6161:118;5812:474;;;;;:::o;6292:323::-;6348:6;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6292:323;;;;:::o;6621:345::-;6688:6;6737:2;6725:9;6716:7;6712:23;6708:32;6705:119;;;6743:79;;:::i;:::-;6705:119;6863:1;6888:61;6941:7;6932:6;6921:9;6917:22;6888:61;:::i;:::-;6878:71;;6834:125;6621:345;;;;:::o;6972:327::-;7030:6;7079:2;7067:9;7058:7;7054:23;7050:32;7047:119;;;7085:79;;:::i;:::-;7047:119;7205:1;7230:52;7274:7;7265:6;7254:9;7250:22;7230:52;:::i;:::-;7220:62;;7176:116;6972:327;;;;:::o;7305:349::-;7374:6;7423:2;7411:9;7402:7;7398:23;7394:32;7391:119;;;7429:79;;:::i;:::-;7391:119;7549:1;7574:63;7629:7;7620:6;7609:9;7605:22;7574:63;:::i;:::-;7564:73;;7520:127;7305:349;;;;:::o;7660:357::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:67;7992:7;7983:6;7972:9;7968:22;7933:67;:::i;:::-;7923:77;;7879:131;7660:357;;;;:::o;8023:409::-;8122:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:119;;;8177:79;;:::i;:::-;8139:119;8297:1;8322:93;8407:7;8398:6;8387:9;8383:22;8322:93;:::i;:::-;8312:103;;8268:157;8023:409;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:329::-;9012:6;9061:2;9049:9;9040:7;9036:23;9032:32;9029:119;;;9067:79;;:::i;:::-;9029:119;9187:1;9212:53;9257:7;9248:6;9237:9;9233:22;9212:53;:::i;:::-;9202:63;;9158:117;8953:329;;;;:::o;9288:351::-;9358:6;9407:2;9395:9;9386:7;9382:23;9378:32;9375:119;;;9413:79;;:::i;:::-;9375:119;9533:1;9558:64;9614:7;9605:6;9594:9;9590:22;9558:64;:::i;:::-;9548:74;;9504:128;9288:351;;;;:::o;9645:474::-;9713:6;9721;9770:2;9758:9;9749:7;9745:23;9741:32;9738:119;;;9776:79;;:::i;:::-;9738:119;9896:1;9921:53;9966:7;9957:6;9946:9;9942:22;9921:53;:::i;:::-;9911:63;;9867:117;10023:2;10049:53;10094:7;10085:6;10074:9;10070:22;10049:53;:::i;:::-;10039:63;;9994:118;9645:474;;;;;:::o;10125:118::-;10212:24;10230:5;10212:24;:::i;:::-;10207:3;10200:37;10125:118;;:::o;10249:109::-;10330:21;10345:5;10330:21;:::i;:::-;10325:3;10318:34;10249:109;;:::o;10364:360::-;10450:3;10478:38;10510:5;10478:38;:::i;:::-;10532:70;10595:6;10590:3;10532:70;:::i;:::-;10525:77;;10611:52;10656:6;10651:3;10644:4;10637:5;10633:16;10611:52;:::i;:::-;10688:29;10710:6;10688:29;:::i;:::-;10683:3;10679:39;10672:46;;10454:270;10364:360;;;;:::o;10730:364::-;10818:3;10846:39;10879:5;10846:39;:::i;:::-;10901:71;10965:6;10960:3;10901:71;:::i;:::-;10894:78;;10981:52;11026:6;11021:3;11014:4;11007:5;11003:16;10981:52;:::i;:::-;11058:29;11080:6;11058:29;:::i;:::-;11053:3;11049:39;11042:46;;10822:272;10730:364;;;;:::o;11124:845::-;11227:3;11264:5;11258:12;11293:36;11319:9;11293:36;:::i;:::-;11345:89;11427:6;11422:3;11345:89;:::i;:::-;11338:96;;11465:1;11454:9;11450:17;11481:1;11476:137;;;;11627:1;11622:341;;;;11443:520;;11476:137;11560:4;11556:9;11545;11541:25;11536:3;11529:38;11596:6;11591:3;11587:16;11580:23;;11476:137;;11622:341;11689:38;11721:5;11689:38;:::i;:::-;11749:1;11763:154;11777:6;11774:1;11771:13;11763:154;;;11851:7;11845:14;11841:1;11836:3;11832:11;11825:35;11901:1;11892:7;11888:15;11877:26;;11799:4;11796:1;11792:12;11787:17;;11763:154;;;11946:6;11941:3;11937:16;11930:23;;11629:334;;11443:520;;11231:738;;11124:845;;;;:::o;11975:366::-;12117:3;12138:67;12202:2;12197:3;12138:67;:::i;:::-;12131:74;;12214:93;12303:3;12214:93;:::i;:::-;12332:2;12327:3;12323:12;12316:19;;11975:366;;;:::o;12347:::-;12489:3;12510:67;12574:2;12569:3;12510:67;:::i;:::-;12503:74;;12586:93;12675:3;12586:93;:::i;:::-;12704:2;12699:3;12695:12;12688:19;;12347:366;;;:::o;12719:::-;12861:3;12882:67;12946:2;12941:3;12882:67;:::i;:::-;12875:74;;12958:93;13047:3;12958:93;:::i;:::-;13076:2;13071:3;13067:12;13060:19;;12719:366;;;:::o;13091:::-;13233:3;13254:67;13318:2;13313:3;13254:67;:::i;:::-;13247:74;;13330:93;13419:3;13330:93;:::i;:::-;13448:2;13443:3;13439:12;13432:19;;13091:366;;;:::o;13463:::-;13605:3;13626:67;13690:2;13685:3;13626:67;:::i;:::-;13619:74;;13702:93;13791:3;13702:93;:::i;:::-;13820:2;13815:3;13811:12;13804:19;;13463:366;;;:::o;13835:::-;13977:3;13998:67;14062:2;14057:3;13998:67;:::i;:::-;13991:74;;14074:93;14163:3;14074:93;:::i;:::-;14192:2;14187:3;14183:12;14176:19;;13835:366;;;:::o;14207:::-;14349:3;14370:67;14434:2;14429:3;14370:67;:::i;:::-;14363:74;;14446:93;14535:3;14446:93;:::i;:::-;14564:2;14559:3;14555:12;14548:19;;14207:366;;;:::o;14579:::-;14721:3;14742:67;14806:2;14801:3;14742:67;:::i;:::-;14735:74;;14818:93;14907:3;14818:93;:::i;:::-;14936:2;14931:3;14927:12;14920:19;;14579:366;;;:::o;14951:::-;15093:3;15114:67;15178:2;15173:3;15114:67;:::i;:::-;15107:74;;15190:93;15279:3;15190:93;:::i;:::-;15308:2;15303:3;15299:12;15292:19;;14951:366;;;:::o;15323:::-;15465:3;15486:67;15550:2;15545:3;15486:67;:::i;:::-;15479:74;;15562:93;15651:3;15562:93;:::i;:::-;15680:2;15675:3;15671:12;15664:19;;15323:366;;;:::o;15695:::-;15837:3;15858:67;15922:2;15917:3;15858:67;:::i;:::-;15851:74;;15934:93;16023:3;15934:93;:::i;:::-;16052:2;16047:3;16043:12;16036:19;;15695:366;;;:::o;16067:400::-;16227:3;16248:84;16330:1;16325:3;16248:84;:::i;:::-;16241:91;;16341:93;16430:3;16341:93;:::i;:::-;16459:1;16454:3;16450:11;16443:18;;16067:400;;;:::o;16473:366::-;16615:3;16636:67;16700:2;16695:3;16636:67;:::i;:::-;16629:74;;16712:93;16801:3;16712:93;:::i;:::-;16830:2;16825:3;16821:12;16814:19;;16473:366;;;:::o;16845:::-;16987:3;17008:67;17072:2;17067:3;17008:67;:::i;:::-;17001:74;;17084:93;17173:3;17084:93;:::i;:::-;17202:2;17197:3;17193:12;17186:19;;16845:366;;;:::o;17217:::-;17359:3;17380:67;17444:2;17439:3;17380:67;:::i;:::-;17373:74;;17456:93;17545:3;17456:93;:::i;:::-;17574:2;17569:3;17565:12;17558:19;;17217:366;;;:::o;17589:::-;17731:3;17752:67;17816:2;17811:3;17752:67;:::i;:::-;17745:74;;17828:93;17917:3;17828:93;:::i;:::-;17946:2;17941:3;17937:12;17930:19;;17589:366;;;:::o;17961:::-;18103:3;18124:67;18188:2;18183:3;18124:67;:::i;:::-;18117:74;;18200:93;18289:3;18200:93;:::i;:::-;18318:2;18313:3;18309:12;18302:19;;17961:366;;;:::o;18333:::-;18475:3;18496:67;18560:2;18555:3;18496:67;:::i;:::-;18489:74;;18572:93;18661:3;18572:93;:::i;:::-;18690:2;18685:3;18681:12;18674:19;;18333:366;;;:::o;18705:::-;18847:3;18868:67;18932:2;18927:3;18868:67;:::i;:::-;18861:74;;18944:93;19033:3;18944:93;:::i;:::-;19062:2;19057:3;19053:12;19046:19;;18705:366;;;:::o;19077:::-;19219:3;19240:67;19304:2;19299:3;19240:67;:::i;:::-;19233:74;;19316:93;19405:3;19316:93;:::i;:::-;19434:2;19429:3;19425:12;19418:19;;19077:366;;;:::o;19449:::-;19591:3;19612:67;19676:2;19671:3;19612:67;:::i;:::-;19605:74;;19688:93;19777:3;19688:93;:::i;:::-;19806:2;19801:3;19797:12;19790:19;;19449:366;;;:::o;19821:::-;19963:3;19984:67;20048:2;20043:3;19984:67;:::i;:::-;19977:74;;20060:93;20149:3;20060:93;:::i;:::-;20178:2;20173:3;20169:12;20162:19;;19821:366;;;:::o;20193:::-;20335:3;20356:67;20420:2;20415:3;20356:67;:::i;:::-;20349:74;;20432:93;20521:3;20432:93;:::i;:::-;20550:2;20545:3;20541:12;20534:19;;20193:366;;;:::o;20565:::-;20707:3;20728:67;20792:2;20787:3;20728:67;:::i;:::-;20721:74;;20804:93;20893:3;20804:93;:::i;:::-;20922:2;20917:3;20913:12;20906:19;;20565:366;;;:::o;20937:::-;21079:3;21100:67;21164:2;21159:3;21100:67;:::i;:::-;21093:74;;21176:93;21265:3;21176:93;:::i;:::-;21294:2;21289:3;21285:12;21278:19;;20937:366;;;:::o;21309:::-;21451:3;21472:67;21536:2;21531:3;21472:67;:::i;:::-;21465:74;;21548:93;21637:3;21548:93;:::i;:::-;21666:2;21661:3;21657:12;21650:19;;21309:366;;;:::o;21681:118::-;21768:24;21786:5;21768:24;:::i;:::-;21763:3;21756:37;21681:118;;:::o;21805:535::-;22035:3;22057:92;22145:3;22136:6;22057:92;:::i;:::-;22050:99;;22166:148;22310:3;22166:148;:::i;:::-;22159:155;;22331:3;22324:10;;21805:535;;;;:::o;22346:222::-;22439:4;22477:2;22466:9;22462:18;22454:26;;22490:71;22558:1;22547:9;22543:17;22534:6;22490:71;:::i;:::-;22346:222;;;;:::o;22574:640::-;22769:4;22807:3;22796:9;22792:19;22784:27;;22821:71;22889:1;22878:9;22874:17;22865:6;22821:71;:::i;:::-;22902:72;22970:2;22959:9;22955:18;22946:6;22902:72;:::i;:::-;22984;23052:2;23041:9;23037:18;23028:6;22984:72;:::i;:::-;23103:9;23097:4;23093:20;23088:2;23077:9;23073:18;23066:48;23131:76;23202:4;23193:6;23131:76;:::i;:::-;23123:84;;22574:640;;;;;;;:::o;23220:332::-;23341:4;23379:2;23368:9;23364:18;23356:26;;23392:71;23460:1;23449:9;23445:17;23436:6;23392:71;:::i;:::-;23473:72;23541:2;23530:9;23526:18;23517:6;23473:72;:::i;:::-;23220:332;;;;;:::o;23558:210::-;23645:4;23683:2;23672:9;23668:18;23660:26;;23696:65;23758:1;23747:9;23743:17;23734:6;23696:65;:::i;:::-;23558:210;;;;:::o;23774:313::-;23887:4;23925:2;23914:9;23910:18;23902:26;;23974:9;23968:4;23964:20;23960:1;23949:9;23945:17;23938:47;24002:78;24075:4;24066:6;24002:78;:::i;:::-;23994:86;;23774:313;;;;:::o;24093:419::-;24259:4;24297:2;24286:9;24282:18;24274:26;;24346:9;24340:4;24336:20;24332:1;24321:9;24317:17;24310:47;24374:131;24500:4;24374:131;:::i;:::-;24366:139;;24093:419;;;:::o;24518:::-;24684:4;24722:2;24711:9;24707:18;24699:26;;24771:9;24765:4;24761:20;24757:1;24746:9;24742:17;24735:47;24799:131;24925:4;24799:131;:::i;:::-;24791:139;;24518:419;;;:::o;24943:::-;25109:4;25147:2;25136:9;25132:18;25124:26;;25196:9;25190:4;25186:20;25182:1;25171:9;25167:17;25160:47;25224:131;25350:4;25224:131;:::i;:::-;25216:139;;24943:419;;;:::o;25368:::-;25534:4;25572:2;25561:9;25557:18;25549:26;;25621:9;25615:4;25611:20;25607:1;25596:9;25592:17;25585:47;25649:131;25775:4;25649:131;:::i;:::-;25641:139;;25368:419;;;:::o;25793:::-;25959:4;25997:2;25986:9;25982:18;25974:26;;26046:9;26040:4;26036:20;26032:1;26021:9;26017:17;26010:47;26074:131;26200:4;26074:131;:::i;:::-;26066:139;;25793:419;;;:::o;26218:::-;26384:4;26422:2;26411:9;26407:18;26399:26;;26471:9;26465:4;26461:20;26457:1;26446:9;26442:17;26435:47;26499:131;26625:4;26499:131;:::i;:::-;26491:139;;26218:419;;;:::o;26643:::-;26809:4;26847:2;26836:9;26832:18;26824:26;;26896:9;26890:4;26886:20;26882:1;26871:9;26867:17;26860:47;26924:131;27050:4;26924:131;:::i;:::-;26916:139;;26643:419;;;:::o;27068:::-;27234:4;27272:2;27261:9;27257:18;27249:26;;27321:9;27315:4;27311:20;27307:1;27296:9;27292:17;27285:47;27349:131;27475:4;27349:131;:::i;:::-;27341:139;;27068:419;;;:::o;27493:::-;27659:4;27697:2;27686:9;27682:18;27674:26;;27746:9;27740:4;27736:20;27732:1;27721:9;27717:17;27710:47;27774:131;27900:4;27774:131;:::i;:::-;27766:139;;27493:419;;;:::o;27918:::-;28084:4;28122:2;28111:9;28107:18;28099:26;;28171:9;28165:4;28161:20;28157:1;28146:9;28142:17;28135:47;28199:131;28325:4;28199:131;:::i;:::-;28191:139;;27918:419;;;:::o;28343:::-;28509:4;28547:2;28536:9;28532:18;28524:26;;28596:9;28590:4;28586:20;28582:1;28571:9;28567:17;28560:47;28624:131;28750:4;28624:131;:::i;:::-;28616:139;;28343:419;;;:::o;28768:::-;28934:4;28972:2;28961:9;28957:18;28949:26;;29021:9;29015:4;29011:20;29007:1;28996:9;28992:17;28985:47;29049:131;29175:4;29049:131;:::i;:::-;29041:139;;28768:419;;;:::o;29193:::-;29359:4;29397:2;29386:9;29382:18;29374:26;;29446:9;29440:4;29436:20;29432:1;29421:9;29417:17;29410:47;29474:131;29600:4;29474:131;:::i;:::-;29466:139;;29193:419;;;:::o;29618:::-;29784:4;29822:2;29811:9;29807:18;29799:26;;29871:9;29865:4;29861:20;29857:1;29846:9;29842:17;29835:47;29899:131;30025:4;29899:131;:::i;:::-;29891:139;;29618:419;;;:::o;30043:::-;30209:4;30247:2;30236:9;30232:18;30224:26;;30296:9;30290:4;30286:20;30282:1;30271:9;30267:17;30260:47;30324:131;30450:4;30324:131;:::i;:::-;30316:139;;30043:419;;;:::o;30468:::-;30634:4;30672:2;30661:9;30657:18;30649:26;;30721:9;30715:4;30711:20;30707:1;30696:9;30692:17;30685:47;30749:131;30875:4;30749:131;:::i;:::-;30741:139;;30468:419;;;:::o;30893:::-;31059:4;31097:2;31086:9;31082:18;31074:26;;31146:9;31140:4;31136:20;31132:1;31121:9;31117:17;31110:47;31174:131;31300:4;31174:131;:::i;:::-;31166:139;;30893:419;;;:::o;31318:::-;31484:4;31522:2;31511:9;31507:18;31499:26;;31571:9;31565:4;31561:20;31557:1;31546:9;31542:17;31535:47;31599:131;31725:4;31599:131;:::i;:::-;31591:139;;31318:419;;;:::o;31743:::-;31909:4;31947:2;31936:9;31932:18;31924:26;;31996:9;31990:4;31986:20;31982:1;31971:9;31967:17;31960:47;32024:131;32150:4;32024:131;:::i;:::-;32016:139;;31743:419;;;:::o;32168:::-;32334:4;32372:2;32361:9;32357:18;32349:26;;32421:9;32415:4;32411:20;32407:1;32396:9;32392:17;32385:47;32449:131;32575:4;32449:131;:::i;:::-;32441:139;;32168:419;;;:::o;32593:::-;32759:4;32797:2;32786:9;32782:18;32774:26;;32846:9;32840:4;32836:20;32832:1;32821:9;32817:17;32810:47;32874:131;33000:4;32874:131;:::i;:::-;32866:139;;32593:419;;;:::o;33018:::-;33184:4;33222:2;33211:9;33207:18;33199:26;;33271:9;33265:4;33261:20;33257:1;33246:9;33242:17;33235:47;33299:131;33425:4;33299:131;:::i;:::-;33291:139;;33018:419;;;:::o;33443:::-;33609:4;33647:2;33636:9;33632:18;33624:26;;33696:9;33690:4;33686:20;33682:1;33671:9;33667:17;33660:47;33724:131;33850:4;33724:131;:::i;:::-;33716:139;;33443:419;;;:::o;33868:::-;34034:4;34072:2;34061:9;34057:18;34049:26;;34121:9;34115:4;34111:20;34107:1;34096:9;34092:17;34085:47;34149:131;34275:4;34149:131;:::i;:::-;34141:139;;33868:419;;;:::o;34293:::-;34459:4;34497:2;34486:9;34482:18;34474:26;;34546:9;34540:4;34536:20;34532:1;34521:9;34517:17;34510:47;34574:131;34700:4;34574:131;:::i;:::-;34566:139;;34293:419;;;:::o;34718:222::-;34811:4;34849:2;34838:9;34834:18;34826:26;;34862:71;34930:1;34919:9;34915:17;34906:6;34862:71;:::i;:::-;34718:222;;;;:::o;34946:129::-;34980:6;35007:20;;:::i;:::-;34997:30;;35036:33;35064:4;35056:6;35036:33;:::i;:::-;34946:129;;;:::o;35081:75::-;35114:6;35147:2;35141:9;35131:19;;35081:75;:::o;35162:307::-;35223:4;35313:18;35305:6;35302:30;35299:56;;;35335:18;;:::i;:::-;35299:56;35373:29;35395:6;35373:29;:::i;:::-;35365:37;;35457:4;35451;35447:15;35439:23;;35162:307;;;:::o;35475:308::-;35537:4;35627:18;35619:6;35616:30;35613:56;;;35649:18;;:::i;:::-;35613:56;35687:29;35709:6;35687:29;:::i;:::-;35679:37;;35771:4;35765;35761:15;35753:23;;35475:308;;;:::o;35789:141::-;35838:4;35861:3;35853:11;;35884:3;35881:1;35874:14;35918:4;35915:1;35905:18;35897:26;;35789:141;;;:::o;35936:98::-;35987:6;36021:5;36015:12;36005:22;;35936:98;;;:::o;36040:99::-;36092:6;36126:5;36120:12;36110:22;;36040:99;;;:::o;36145:168::-;36228:11;36262:6;36257:3;36250:19;36302:4;36297:3;36293:14;36278:29;;36145:168;;;;:::o;36319:169::-;36403:11;36437:6;36432:3;36425:19;36477:4;36472:3;36468:14;36453:29;;36319:169;;;;:::o;36494:148::-;36596:11;36633:3;36618:18;;36494:148;;;;:::o;36648:273::-;36688:3;36707:20;36725:1;36707:20;:::i;:::-;36702:25;;36741:20;36759:1;36741:20;:::i;:::-;36736:25;;36863:1;36827:34;36823:42;36820:1;36817:49;36814:75;;;36869:18;;:::i;:::-;36814:75;36913:1;36910;36906:9;36899:16;;36648:273;;;;:::o;36927:305::-;36967:3;36986:20;37004:1;36986:20;:::i;:::-;36981:25;;37020:20;37038:1;37020:20;:::i;:::-;37015:25;;37174:1;37106:66;37102:74;37099:1;37096:81;37093:107;;;37180:18;;:::i;:::-;37093:107;37224:1;37221;37217:9;37210:16;;36927:305;;;;:::o;37238:185::-;37278:1;37295:20;37313:1;37295:20;:::i;:::-;37290:25;;37329:20;37347:1;37329:20;:::i;:::-;37324:25;;37368:1;37358:35;;37373:18;;:::i;:::-;37358:35;37415:1;37412;37408:9;37403:14;;37238:185;;;;:::o;37429:348::-;37469:7;37492:20;37510:1;37492:20;:::i;:::-;37487:25;;37526:20;37544:1;37526:20;:::i;:::-;37521:25;;37714:1;37646:66;37642:74;37639:1;37636:81;37631:1;37624:9;37617:17;37613:105;37610:131;;;37721:18;;:::i;:::-;37610:131;37769:1;37766;37762:9;37751:20;;37429:348;;;;:::o;37783:191::-;37823:4;37843:20;37861:1;37843:20;:::i;:::-;37838:25;;37877:20;37895:1;37877:20;:::i;:::-;37872:25;;37916:1;37913;37910:8;37907:34;;;37921:18;;:::i;:::-;37907:34;37966:1;37963;37959:9;37951:17;;37783:191;;;;:::o;37980:::-;38020:4;38040:20;38058:1;38040:20;:::i;:::-;38035:25;;38074:20;38092:1;38074:20;:::i;:::-;38069:25;;38113:1;38110;38107:8;38104:34;;;38118:18;;:::i;:::-;38104:34;38163:1;38160;38156:9;38148:17;;37980:191;;;;:::o;38177:96::-;38214:7;38243:24;38261:5;38243:24;:::i;:::-;38232:35;;38177:96;;;:::o;38279:90::-;38313:7;38356:5;38349:13;38342:21;38331:32;;38279:90;;;:::o;38375:149::-;38411:7;38451:66;38444:5;38440:78;38429:89;;38375:149;;;:::o;38530:110::-;38581:7;38610:24;38628:5;38610:24;:::i;:::-;38599:35;;38530:110;;;:::o;38646:125::-;38712:7;38741:24;38759:5;38741:24;:::i;:::-;38730:35;;38646:125;;;:::o;38777:118::-;38814:7;38854:34;38847:5;38843:46;38832:57;;38777:118;;;:::o;38901:126::-;38938:7;38978:42;38971:5;38967:54;38956:65;;38901:126;;;:::o;39033:77::-;39070:7;39099:5;39088:16;;39033:77;;;:::o;39116:154::-;39200:6;39195:3;39190;39177:30;39262:1;39253:6;39248:3;39244:16;39237:27;39116:154;;;:::o;39276:307::-;39344:1;39354:113;39368:6;39365:1;39362:13;39354:113;;;39453:1;39448:3;39444:11;39438:18;39434:1;39429:3;39425:11;39418:39;39390:2;39387:1;39383:10;39378:15;;39354:113;;;39485:6;39482:1;39479:13;39476:101;;;39565:1;39556:6;39551:3;39547:16;39540:27;39476:101;39325:258;39276:307;;;:::o;39589:171::-;39628:3;39651:24;39669:5;39651:24;:::i;:::-;39642:33;;39697:4;39690:5;39687:15;39684:41;;;39705:18;;:::i;:::-;39684:41;39752:1;39745:5;39741:13;39734:20;;39589:171;;;:::o;39766:320::-;39810:6;39847:1;39841:4;39837:12;39827:22;;39894:1;39888:4;39884:12;39915:18;39905:81;;39971:4;39963:6;39959:17;39949:27;;39905:81;40033:2;40025:6;40022:14;40002:18;39999:38;39996:84;;;40052:18;;:::i;:::-;39996:84;39817:269;39766:320;;;:::o;40092:281::-;40175:27;40197:4;40175:27;:::i;:::-;40167:6;40163:40;40305:6;40293:10;40290:22;40269:18;40257:10;40254:34;40251:62;40248:88;;;40316:18;;:::i;:::-;40248:88;40356:10;40352:2;40345:22;40135:238;40092:281;;:::o;40379:233::-;40418:3;40441:24;40459:5;40441:24;:::i;:::-;40432:33;;40487:66;40480:5;40477:77;40474:103;;;40557:18;;:::i;:::-;40474:103;40604:1;40597:5;40593:13;40586:20;;40379:233;;;:::o;40618:180::-;40666:77;40663:1;40656:88;40763:4;40760:1;40753:15;40787:4;40784:1;40777:15;40804:180;40852:77;40849:1;40842:88;40949:4;40946:1;40939:15;40973:4;40970:1;40963:15;40990:180;41038:77;41035:1;41028:88;41135:4;41132:1;41125:15;41159:4;41156:1;41149:15;41176:180;41224:77;41221:1;41214:88;41321:4;41318:1;41311:15;41345:4;41342:1;41335:15;41362:117;41471:1;41468;41461:12;41485:117;41594:1;41591;41584:12;41608:117;41717:1;41714;41707:12;41731:117;41840:1;41837;41830:12;41854:102;41895:6;41946:2;41942:7;41937:2;41930:5;41926:14;41922:28;41912:38;;41854:102;;;:::o;41962:221::-;42102:34;42098:1;42090:6;42086:14;42079:58;42171:4;42166:2;42158:6;42154:15;42147:29;41962:221;:::o;42189:225::-;42329:34;42325:1;42317:6;42313:14;42306:58;42398:8;42393:2;42385:6;42381:15;42374:33;42189:225;:::o;42420:229::-;42560:34;42556:1;42548:6;42544:14;42537:58;42629:12;42624:2;42616:6;42612:15;42605:37;42420:229;:::o;42655:222::-;42795:34;42791:1;42783:6;42779:14;42772:58;42864:5;42859:2;42851:6;42847:15;42840:30;42655:222;:::o;42883:221::-;43023:34;43019:1;43011:6;43007:14;43000:58;43092:4;43087:2;43079:6;43075:15;43068:29;42883:221;:::o;43110:224::-;43250:34;43246:1;43238:6;43234:14;43227:58;43319:7;43314:2;43306:6;43302:15;43295:32;43110:224;:::o;43340:221::-;43480:34;43476:1;43468:6;43464:14;43457:58;43549:4;43544:2;43536:6;43532:15;43525:29;43340:221;:::o;43567:167::-;43707:19;43703:1;43695:6;43691:14;43684:43;43567:167;:::o;43740:244::-;43880:34;43876:1;43868:6;43864:14;43857:58;43949:27;43944:2;43936:6;43932:15;43925:52;43740:244;:::o;43990:230::-;44130:34;44126:1;44118:6;44114:14;44107:58;44199:13;44194:2;44186:6;44182:15;44175:38;43990:230;:::o;44226:225::-;44366:34;44362:1;44354:6;44350:14;44343:58;44435:8;44430:2;44422:6;44418:15;44411:33;44226:225;:::o;44457:155::-;44597:7;44593:1;44585:6;44581:14;44574:31;44457:155;:::o;44618:182::-;44758:34;44754:1;44746:6;44742:14;44735:58;44618:182;:::o;44806:176::-;44946:28;44942:1;44934:6;44930:14;44923:52;44806:176;:::o;44988:237::-;45128:34;45124:1;45116:6;45112:14;45105:58;45197:20;45192:2;45184:6;45180:15;45173:45;44988:237;:::o;45231:221::-;45371:34;45367:1;45359:6;45355:14;45348:58;45440:4;45435:2;45427:6;45423:15;45416:29;45231:221;:::o;45458:238::-;45598:34;45594:1;45586:6;45582:14;45575:58;45667:21;45662:2;45654:6;45650:15;45643:46;45458:238;:::o;45702:179::-;45842:31;45838:1;45830:6;45826:14;45819:55;45702:179;:::o;45887:220::-;46027:34;46023:1;46015:6;46011:14;46004:58;46096:3;46091:2;46083:6;46079:15;46072:28;45887:220;:::o;46113:174::-;46253:26;46249:1;46241:6;46237:14;46230:50;46113:174;:::o;46293:233::-;46433:34;46429:1;46421:6;46417:14;46410:58;46502:16;46497:2;46489:6;46485:15;46478:41;46293:233;:::o;46532:181::-;46672:33;46668:1;46660:6;46656:14;46649:57;46532:181;:::o;46719:234::-;46859:34;46855:1;46847:6;46843:14;46836:58;46928:17;46923:2;46915:6;46911:15;46904:42;46719:234;:::o;46959:173::-;47099:25;47095:1;47087:6;47083:14;47076:49;46959:173;:::o;47138:232::-;47278:34;47274:1;47266:6;47262:14;47255:58;47347:15;47342:2;47334:6;47330:15;47323:40;47138:232;:::o;47376:221::-;47516:34;47512:1;47504:6;47500:14;47493:58;47585:4;47580:2;47572:6;47568:15;47561:29;47376:221;:::o;47603:122::-;47676:24;47694:5;47676:24;:::i;:::-;47669:5;47666:35;47656:63;;47715:1;47712;47705:12;47656:63;47603:122;:::o;47731:116::-;47801:21;47816:5;47801:21;:::i;:::-;47794:5;47791:32;47781:60;;47837:1;47834;47827:12;47781:60;47731:116;:::o;47853:120::-;47925:23;47942:5;47925:23;:::i;:::-;47918:5;47915:34;47905:62;;47963:1;47960;47953:12;47905:62;47853:120;:::o;47979:150::-;48066:38;48098:5;48066:38;:::i;:::-;48059:5;48056:49;48046:77;;48119:1;48116;48109:12;48046:77;47979:150;:::o;48135:180::-;48237:53;48284:5;48237:53;:::i;:::-;48230:5;48227:64;48217:92;;48305:1;48302;48295:12;48217:92;48135:180;:::o;48321:122::-;48394:24;48412:5;48394:24;:::i;:::-;48387:5;48384:35;48374:63;;48433:1;48430;48423:12;48374:63;48321:122;:::o
Swarm Source
ipfs://11957e42eaa68a21f72c062a9c104e030abdf60fb6937f08c0a011f4634d4c49
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.