ERC-721
Overview
Max Total Supply
420 NANAS
Holders
346
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NANASLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BakedBananas
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-21 */ //██████╗░░█████╗░██╗░░██╗███████╗██████╗░ ██████╗░░█████╗░███╗░░██╗░█████╗░███╗░░██╗░█████╗░░██████╗ //██╔══██╗██╔══██╗██║░██╔╝██╔════╝██╔══██╗ ██╔══██╗██╔══██╗████╗░██║██╔══██╗████╗░██║██╔══██╗██╔════╝ //██████╦╝███████║█████═╝░█████╗░░██║░░██║ ██████╦╝███████║██╔██╗██║███████║██╔██╗██║███████║╚█████╗░ //██╔══██╗██╔══██║██╔═██╗░██╔══╝░░██║░░██║ ██╔══██╗██╔══██║██║╚████║██╔══██║██║╚████║██╔══██║░╚═══██╗ //██████╦╝██║░░██║██║░╚██╗███████╗██████╔╝ ██████╦╝██║░░██║██║░╚███║██║░░██║██║░╚███║██║░░██║██████╔╝ //╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚══════╝╚═════╝░ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░ // // // National Banana Day & 420 have landed on the same day, and the pairing is exquisite. // Yes, this is a real day, and we happen to be particularly fond of the whacky yellow foodstuff (and the green stuff). // We decided to create this free mint NFT collection to bring some fun and laughs to the NFT community on this special day <3 // -KevNFriends Team // https://discord.gg/kevnfriends // 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 BakedBananas is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = ""; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 1; uint256 public maxSupply = 420; uint256 public constant WALLETLIMIT = 0; uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether; uint256 public NUM_FREE_MINTS = 420; bool public isPublicSaleActive = false; // ============ 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" ); } _; } modifier isWalletLimit() { require( _numberMinted(msg.sender) <= WALLETLIMIT, "There is a per-wallet limit!" ); _; } constructor( ) ERC721A("Baked Bananas", "NANAS", 420, 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 function freeMint(uint256 numberOfTokens) external nonReentrant canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) freeMintsAvailable() isWalletLimit { _safeMint(msg.sender, numberOfTokens); } // ============ 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 setNumFreeMints(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, "/", (tokenId+1).toString(), ".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":[],"name":"WALLETLIMIT","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":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"setNumFreeMints","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
60c060405260008055600060075560405180602001604052806000815250600b9080519060200190620000349291906200031a565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60146101000a81548160ff0219169083151502179055506101a4600d556101a4600e556000600f60006101000a81548160ff021916908315150217905550348015620000d957600080fd5b506040518060400160405280600d81526020017f42616b65642042616e616e6173000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e414e41530000000000000000000000000000000000000000000000000000008152506101a4600d546000811162000192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000189906200043a565b60405180910390fd5b60008211620001d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cf9062000418565b60405180910390fd5b8360019080519060200190620001f09291906200031a565b508260029080519060200190620002099291906200031a565b508160a081815250508060808181525050505050506200023e620002326200024c60201b60201c565b6200025460201b60201c565b600160098190555062000570565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000328906200046d565b90600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b6000620003d96027836200045c565b9150620003e682620004d2565b604082019050919050565b600062000400602e836200045c565b91506200040d8262000521565b604082019050919050565b600060208201905081810360008301526200043381620003ca565b9050919050565b600060208201905081810360008301526200045581620003f1565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048657607f821691505b602082108114156200049d576200049c620004a3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615071620005a1600039600081816125ed015281816126160152612e2c0152600050506150716000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078f578063d7224ba0146107ba578063e43082f7146107e5578063e985e9c51461080e578063f2fde38b1461084b5761020f565b8063a22cb465146106d5578063b88d4fde146106fe578063c6a91b4214610727578063c87b56dd146107525761020f565b80637c928fe9116100e75780637c928fe91461060f5780638da5cb5b1461063857806395d89b4114610663578063982d669e1461068e578063a0712d68146106b95761020f565b80636352211e1461055357806370a0823114610590578063714c5398146105cd578063715018a6146105f85761020f565b806328cad13d1161019b578063409b06b51161016a578063409b06b51461047057806342842e0e1461049b57806349df728c146104c45780634f6ccce7146104ed57806355f804b31461052a5761020f565b806328cad13d146103b55780632a55205a146103de5780632f745c591461041c5780633ccfd60b146104595761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630a00ae831461030d57806318160ddd146103365780631e84c4131461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806306fdde031461025157806307e89ec01461027c578063081812fc146102a7575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906136f4565b610874565b6040516102489190613ebe565b60405180910390f35b34801561025d57600080fd5b506102666108ee565b6040516102739190613ed9565b60405180910390f35b34801561028857600080fd5b50610291610980565b60405161029e919061427b565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c991906137f1565b61098b565b6040516102db9190613e2e565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061365a565b610a10565b005b34801561031957600080fd5b50610334600480360381019061032f91906137f1565b610b29565b005b34801561034257600080fd5b5061034b610baf565b604051610358919061427b565b60405180910390f35b34801561036d57600080fd5b50610376610bb8565b6040516103839190613ebe565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613544565b610bcb565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061369a565b610bdb565b005b3480156103ea57600080fd5b506104056004803603810190610400919061384b565b610c74565b604051610413929190613e95565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061365a565b610ce0565b604051610450919061427b565b60405180910390f35b34801561046557600080fd5b5061046e610ede565b005b34801561047c57600080fd5b50610485610fa9565b604051610492919061427b565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613544565b610fae565b005b3480156104d057600080fd5b506104eb60048036038101906104e6919061374e565b610fce565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137f1565b611169565b604051610521919061427b565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c91906137a8565b6111bc565b005b34801561055f57600080fd5b5061057a600480360381019061057591906137f1565b611252565b6040516105879190613e2e565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906134d7565b611268565b6040516105c4919061427b565b60405180910390f35b3480156105d957600080fd5b506105e2611351565b6040516105ef9190613ed9565b60405180910390f35b34801561060457600080fd5b5061060d6113e3565b005b34801561061b57600080fd5b50610636600480360381019061063191906137f1565b61146b565b005b34801561064457600080fd5b5061064d611605565b60405161065a9190613e2e565b60405180910390f35b34801561066f57600080fd5b5061067861162f565b6040516106859190613ed9565b60405180910390f35b34801561069a57600080fd5b506106a36116c1565b6040516106b0919061427b565b60405180910390f35b6106d360048036038101906106ce91906137f1565b6116c7565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061361a565b611882565b005b34801561070a57600080fd5b5061072560048036038101906107209190613597565b611a03565b005b34801561073357600080fd5b5061073c611a5f565b604051610749919061427b565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906137f1565b611a64565b6040516107869190613ed9565b60405180910390f35b34801561079b57600080fd5b506107a4611aec565b6040516107b1919061427b565b60405180910390f35b3480156107c657600080fd5b506107cf611af2565b6040516107dc919061427b565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061369a565b611af8565b005b34801561081a57600080fd5b5061083560048036038101906108309190613504565b611b91565b6040516108429190613ebe565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d91906134d7565b611cab565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757506108e682611da3565b5b9050919050565b6060600180546108fd90614624565b80601f016020809104026020016040519081016040528092919081815260200182805461092990614624565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b5050505050905090565b662386f26fc1000081565b600061099682611eed565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc9061423b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1b82611252565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906140db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611efa565b73ffffffffffffffffffffffffffffffffffffffff161480610ada5750610ad981610ad4611efa565b611b91565b5b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061401b565b60405180910390fd5b610b24838383611f02565b505050565b610b31611efa565b73ffffffffffffffffffffffffffffffffffffffff16610b4f611605565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061407b565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610bd6838383611fb4565b505050565b610be3611efa565b73ffffffffffffffffffffffffffffffffffffffff16610c01611605565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061407b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c8084611eed565b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613ffb565b60405180910390fd5b30610cd5610cce85600561256d565b6064612583565b915091509250929050565b6000610ceb83611268565b8210610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613efb565b60405180910390fd5b6000610d36610baf565b905060008060005b83811015610e9c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e885786841415610e79578195505050505050610ed8565b8380610e8490614687565b9450505b508080610e9490614687565b915050610d3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf906141bb565b60405180910390fd5b92915050565b610ee6611efa565b73ffffffffffffffffffffffffffffffffffffffff16610f04611605565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f519061407b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa5573d6000803e3d6000fd5b5050565b600081565b610fc983838360405180602001604052806000815250611a03565b505050565b610fd6611efa565b73ffffffffffffffffffffffffffffffffffffffff16610ff4611605565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110419061407b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110859190613e2e565b60206040518083038186803b15801561109d57600080fd5b505afa1580156110b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d5919061381e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611112929190613e95565b602060405180830381600087803b15801561112c57600080fd5b505af1158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906136c7565b505050565b6000611173610baf565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613f5b565b60405180910390fd5b819050919050565b6111c4611efa565b73ffffffffffffffffffffffffffffffffffffffff166111e2611605565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061407b565b60405180910390fd5b80600b908051906020019061124e92919061325d565b5050565b600061125d82612599565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061403b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461136090614624565b80601f016020809104026020016040519081016040528092919081815260200182805461138c90614624565b80156113d95780601f106113ae576101008083540402835291602001916113d9565b820191906000526020600020905b8154815290600101906020018083116113bc57829003601f168201915b5050505050905090565b6113eb611efa565b73ffffffffffffffffffffffffffffffffffffffff16611409611605565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061407b565b60405180910390fd5b611469600061279c565b565b600260095414156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906141db565b60405180910390fd5b600260098190555080600d54816114c6610baf565b6114d091906143bb565b1115611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613f7b565b60405180910390fd5b816001811115611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613fdb565b60405180910390fd5b600e54611561610baf565b11156115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061417b565b60405180910390fd5b60006115ad33612862565b11156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061413b565b60405180910390fd5b6115f8338461294b565b5050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461163e90614624565b80601f016020809104026020016040519081016040528092919081815260200182805461166a90614624565b80156116b75780601f1061168c576101008083540402835291602001916116b7565b820191906000526020600020905b81548152906001019060200180831161169a57829003601f168201915b5050505050905090565b600e5481565b6002600954141561170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906141db565b60405180910390fd5b6002600981905550662386f26fc1000081600e54611729610baf565b111561177d5734818361173c9190614442565b1461177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061419b565b60405180910390fd5b5b600f60009054906101000a900460ff166117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061421b565b60405180910390fd5b82600d54816117d9610baf565b6117e391906143bb565b1115611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90613f7b565b60405180910390fd5b836001811115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613fdb565b60405180910390fd5b611873338661294b565b50505050600160098190555050565b61188a611efa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef9061409b565b60405180910390fd5b8060066000611905611efa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b2611efa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f79190613ebe565b60405180910390a35050565b611a0e848484611fb4565b611a1a84848484612969565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906140fb565b60405180910390fd5b50505050565b600181565b6060611a6f82611eed565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613ffb565b60405180910390fd5b600b611ac5600184611ac091906143bb565b612b00565b604051602001611ad6929190613df4565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611b00611efa565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611605565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b9061407b565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c8857508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611c209190613e2e565b60206040518083038186803b158015611c3857600080fd5b505afa158015611c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c70919061377b565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c97576001915050611ca5565b611ca18484612c61565b9150505b92915050565b611cb3611efa565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611605565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061407b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613f1b565b60405180910390fd5b611da08161279c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ed657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ee65750611ee582612cf5565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fbf82612599565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe6611efa565b73ffffffffffffffffffffffffffffffffffffffff161480612042575061200b611efa565b73ffffffffffffffffffffffffffffffffffffffff1661202a8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205e575061205d8260000151612058611efa565b611b91565b5b9050806120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906140bb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121099061405b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990613f9b565b60405180910390fd5b61218f8585856001612d5f565b61219f6000848460000151611f02565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661220d919061449c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122b19190614375565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123b791906143bb565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124fd5761242d81611eed565b156124fc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125658686866001612d65565b505050505050565b6000818361257b9190614442565b905092915050565b600081836125919190614411565b905092915050565b6125a16132e3565b6125aa82611eed565b6125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090613f3b565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061264d5760017f00000000000000000000000000000000000000000000000000000000000000008461264091906144d0565b61264a91906143bb565b90505b60008390505b81811061275b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461274757809350505050612797565b508080612753906145fa565b915050612653565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e906141fb565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca90613fbb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612965828260405180602001604052806000815250612d6b565b5050565b600061298a8473ffffffffffffffffffffffffffffffffffffffff1661324a565b15612af3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b3611efa565b8786866040518563ffffffff1660e01b81526004016129d59493929190613e49565b602060405180830381600087803b1580156129ef57600080fd5b505af1925050508015612a2057506040513d601f19601f82011682018060405250810190612a1d9190613721565b60015b612aa3573d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b50600081511415612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a92906140fb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af8565b600190505b949350505050565b60606000821415612b48576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c5c565b600082905060005b60008214612b7a578080612b6390614687565b915050600a82612b739190614411565b9150612b50565b60008167ffffffffffffffff811115612b9657612b956147bd565b5b6040519080825280601f01601f191660200182016040528015612bc85781602001600182028036833780820191505090505b5090505b60008514612c5557600182612be191906144d0565b9150600a85612bf091906146d0565b6030612bfc91906143bb565b60f81b818381518110612c1257612c1161478e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c4e9190614411565b9450612bcc565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd89061415b565b60405180910390fd5b612dea81611eed565b15612e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e219061411b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e849061425b565b60405180910390fd5b612e9a6000858386612d5f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f979190614375565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fbe9190614375565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cd6000888488612969565b61320c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613203906140fb565b60405180910390fd5b818061321790614687565b925050808061322590614687565b91505061315c565b50806000819055506132426000878588612d65565b505050505050565b600080823b905060008111915050919050565b82805461326990614624565b90600052602060002090601f01602090048101928261328b57600085556132d2565b82601f106132a457805160ff19168380011785556132d2565b828001600101855582156132d2579182015b828111156132d15782518255916020019190600101906132b6565b5b5090506132df919061331d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333657600081600090555060010161331e565b5090565b600061334d613348846142bb565b614296565b905082815260208101848484011115613369576133686147f1565b5b6133748482856145b8565b509392505050565b600061338f61338a846142ec565b614296565b9050828152602081018484840111156133ab576133aa6147f1565b5b6133b68482856145b8565b509392505050565b6000813590506133cd81614fb1565b92915050565b6000813590506133e281614fc8565b92915050565b6000815190506133f781614fc8565b92915050565b60008135905061340c81614fdf565b92915050565b60008151905061342181614fdf565b92915050565b600082601f83011261343c5761343b6147ec565b5b813561344c84826020860161333a565b91505092915050565b60008135905061346481614ff6565b92915050565b6000815190506134798161500d565b92915050565b600082601f830112613494576134936147ec565b5b81356134a484826020860161337c565b91505092915050565b6000813590506134bc81615024565b92915050565b6000815190506134d181615024565b92915050565b6000602082840312156134ed576134ec6147fb565b5b60006134fb848285016133be565b91505092915050565b6000806040838503121561351b5761351a6147fb565b5b6000613529858286016133be565b925050602061353a858286016133be565b9150509250929050565b60008060006060848603121561355d5761355c6147fb565b5b600061356b868287016133be565b935050602061357c868287016133be565b925050604061358d868287016134ad565b9150509250925092565b600080600080608085870312156135b1576135b06147fb565b5b60006135bf878288016133be565b94505060206135d0878288016133be565b93505060406135e1878288016134ad565b925050606085013567ffffffffffffffff811115613602576136016147f6565b5b61360e87828801613427565b91505092959194509250565b60008060408385031215613631576136306147fb565b5b600061363f858286016133be565b9250506020613650858286016133d3565b9150509250929050565b60008060408385031215613671576136706147fb565b5b600061367f858286016133be565b9250506020613690858286016134ad565b9150509250929050565b6000602082840312156136b0576136af6147fb565b5b60006136be848285016133d3565b91505092915050565b6000602082840312156136dd576136dc6147fb565b5b60006136eb848285016133e8565b91505092915050565b60006020828403121561370a576137096147fb565b5b6000613718848285016133fd565b91505092915050565b600060208284031215613737576137366147fb565b5b600061374584828501613412565b91505092915050565b600060208284031215613764576137636147fb565b5b600061377284828501613455565b91505092915050565b600060208284031215613791576137906147fb565b5b600061379f8482850161346a565b91505092915050565b6000602082840312156137be576137bd6147fb565b5b600082013567ffffffffffffffff8111156137dc576137db6147f6565b5b6137e88482850161347f565b91505092915050565b600060208284031215613807576138066147fb565b5b6000613815848285016134ad565b91505092915050565b600060208284031215613834576138336147fb565b5b6000613842848285016134c2565b91505092915050565b60008060408385031215613862576138616147fb565b5b6000613870858286016134ad565b9250506020613881858286016134ad565b9150509250929050565b61389481614504565b82525050565b6138a381614516565b82525050565b60006138b482614332565b6138be8185614348565b93506138ce8185602086016145c7565b6138d781614800565b840191505092915050565b60006138ed8261433d565b6138f78185614359565b93506139078185602086016145c7565b61391081614800565b840191505092915050565b60006139268261433d565b613930818561436a565b93506139408185602086016145c7565b80840191505092915050565b6000815461395981614624565b613963818661436a565b9450600182166000811461397e576001811461398f576139c2565b60ff198316865281860193506139c2565b6139988561431d565b60005b838110156139ba5781548189015260018201915060208101905061399b565b838801955050505b50505092915050565b60006139d8602283614359565b91506139e382614811565b604082019050919050565b60006139fb602683614359565b9150613a0682614860565b604082019050919050565b6000613a1e602a83614359565b9150613a29826148af565b604082019050919050565b6000613a41602383614359565b9150613a4c826148fe565b604082019050919050565b6000613a64602283614359565b9150613a6f8261494d565b604082019050919050565b6000613a87602583614359565b9150613a928261499c565b604082019050919050565b6000613aaa603183614359565b9150613ab5826149eb565b604082019050919050565b6000613acd602283614359565b9150613ad882614a3a565b604082019050919050565b6000613af0601183614359565b9150613afb82614a89565b602082019050919050565b6000613b13603983614359565b9150613b1e82614ab2565b604082019050919050565b6000613b36602b83614359565b9150613b4182614b01565b604082019050919050565b6000613b59602683614359565b9150613b6482614b50565b604082019050919050565b6000613b7c60058361436a565b9150613b8782614b9f565b600582019050919050565b6000613b9f602083614359565b9150613baa82614bc8565b602082019050919050565b6000613bc2601a83614359565b9150613bcd82614bf1565b602082019050919050565b6000613be5603283614359565b9150613bf082614c1a565b604082019050919050565b6000613c08602283614359565b9150613c1382614c69565b604082019050919050565b6000613c2b603383614359565b9150613c3682614cb8565b604082019050919050565b6000613c4e601d83614359565b9150613c5982614d07565b602082019050919050565b6000613c71601c83614359565b9150613c7c82614d30565b602082019050919050565b6000613c94602183614359565b9150613c9f82614d59565b604082019050919050565b6000613cb7601c83614359565b9150613cc282614da8565b602082019050919050565b6000613cda601883614359565b9150613ce582614dd1565b602082019050919050565b6000613cfd602e83614359565b9150613d0882614dfa565b604082019050919050565b6000613d20601f83614359565b9150613d2b82614e49565b602082019050919050565b6000613d43602f83614359565b9150613d4e82614e72565b604082019050919050565b6000613d66601783614359565b9150613d7182614ec1565b602082019050919050565b6000613d89602d83614359565b9150613d9482614eea565b604082019050919050565b6000613dac602283614359565b9150613db782614f39565b604082019050919050565b6000613dcf60018361436a565b9150613dda82614f88565b600182019050919050565b613dee816145ae565b82525050565b6000613e00828561394c565b9150613e0b82613dc2565b9150613e17828461391b565b9150613e2282613b6f565b91508190509392505050565b6000602082019050613e43600083018461388b565b92915050565b6000608082019050613e5e600083018761388b565b613e6b602083018661388b565b613e786040830185613de5565b8181036060830152613e8a81846138a9565b905095945050505050565b6000604082019050613eaa600083018561388b565b613eb76020830184613de5565b9392505050565b6000602082019050613ed3600083018461389a565b92915050565b60006020820190508181036000830152613ef381846138e2565b905092915050565b60006020820190508181036000830152613f14816139cb565b9050919050565b60006020820190508181036000830152613f34816139ee565b9050919050565b60006020820190508181036000830152613f5481613a11565b9050919050565b60006020820190508181036000830152613f7481613a34565b9050919050565b60006020820190508181036000830152613f9481613a57565b9050919050565b60006020820190508181036000830152613fb481613a7a565b9050919050565b60006020820190508181036000830152613fd481613a9d565b9050919050565b60006020820190508181036000830152613ff481613ac0565b9050919050565b6000602082019050818103600083015261401481613ae3565b9050919050565b6000602082019050818103600083015261403481613b06565b9050919050565b6000602082019050818103600083015261405481613b29565b9050919050565b6000602082019050818103600083015261407481613b4c565b9050919050565b6000602082019050818103600083015261409481613b92565b9050919050565b600060208201905081810360008301526140b481613bb5565b9050919050565b600060208201905081810360008301526140d481613bd8565b9050919050565b600060208201905081810360008301526140f481613bfb565b9050919050565b6000602082019050818103600083015261411481613c1e565b9050919050565b6000602082019050818103600083015261413481613c41565b9050919050565b6000602082019050818103600083015261415481613c64565b9050919050565b6000602082019050818103600083015261417481613c87565b9050919050565b6000602082019050818103600083015261419481613caa565b9050919050565b600060208201905081810360008301526141b481613ccd565b9050919050565b600060208201905081810360008301526141d481613cf0565b9050919050565b600060208201905081810360008301526141f481613d13565b9050919050565b6000602082019050818103600083015261421481613d36565b9050919050565b6000602082019050818103600083015261423481613d59565b9050919050565b6000602082019050818103600083015261425481613d7c565b9050919050565b6000602082019050818103600083015261427481613d9f565b9050919050565b60006020820190506142906000830184613de5565b92915050565b60006142a06142b1565b90506142ac8282614656565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d6576142d56147bd565b5b6142df82614800565b9050602081019050919050565b600067ffffffffffffffff821115614307576143066147bd565b5b61431082614800565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061438082614572565b915061438b83614572565b9250826fffffffffffffffffffffffffffffffff038211156143b0576143af614701565b5b828201905092915050565b60006143c6826145ae565b91506143d1836145ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440657614405614701565b5b828201905092915050565b600061441c826145ae565b9150614427836145ae565b92508261443757614436614730565b5b828204905092915050565b600061444d826145ae565b9150614458836145ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449157614490614701565b5b828202905092915050565b60006144a782614572565b91506144b283614572565b9250828210156144c5576144c4614701565b5b828203905092915050565b60006144db826145ae565b91506144e6836145ae565b9250828210156144f9576144f8614701565b5b828203905092915050565b600061450f8261458e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455982614504565b9050919050565b600061456b82614504565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145e55780820151818401526020810190506145ca565b838111156145f4576000848401525b50505050565b6000614605826145ae565b9150600082141561461957614618614701565b5b600182039050919050565b6000600282049050600182168061463c57607f821691505b602082108114156146505761464f61475f565b5b50919050565b61465f82614800565b810181811067ffffffffffffffff8211171561467e5761467d6147bd565b5b80604052505050565b6000614692826145ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c5576146c4614701565b5b600182019050919050565b60006146db826145ae565b91506146e6836145ae565b9250826146f6576146f5614730565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f54686572652069732061207065722d77616c6c6574206c696d69742100000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614fba81614504565b8114614fc557600080fd5b50565b614fd181614516565b8114614fdc57600080fd5b50565b614fe881614522565b8114614ff357600080fd5b50565b614fff8161454e565b811461500a57600080fd5b50565b61501681614560565b811461502157600080fd5b50565b61502d816145ae565b811461503857600080fd5b5056fea2646970667358221220566ee9bd320924c9b050cae1c4ab80bdef5b680c485b4c9131e2e51d2b98754764736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078f578063d7224ba0146107ba578063e43082f7146107e5578063e985e9c51461080e578063f2fde38b1461084b5761020f565b8063a22cb465146106d5578063b88d4fde146106fe578063c6a91b4214610727578063c87b56dd146107525761020f565b80637c928fe9116100e75780637c928fe91461060f5780638da5cb5b1461063857806395d89b4114610663578063982d669e1461068e578063a0712d68146106b95761020f565b80636352211e1461055357806370a0823114610590578063714c5398146105cd578063715018a6146105f85761020f565b806328cad13d1161019b578063409b06b51161016a578063409b06b51461047057806342842e0e1461049b57806349df728c146104c45780634f6ccce7146104ed57806355f804b31461052a5761020f565b806328cad13d146103b55780632a55205a146103de5780632f745c591461041c5780633ccfd60b146104595761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630a00ae831461030d57806318160ddd146103365780631e84c4131461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806306fdde031461025157806307e89ec01461027c578063081812fc146102a7575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906136f4565b610874565b6040516102489190613ebe565b60405180910390f35b34801561025d57600080fd5b506102666108ee565b6040516102739190613ed9565b60405180910390f35b34801561028857600080fd5b50610291610980565b60405161029e919061427b565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c991906137f1565b61098b565b6040516102db9190613e2e565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061365a565b610a10565b005b34801561031957600080fd5b50610334600480360381019061032f91906137f1565b610b29565b005b34801561034257600080fd5b5061034b610baf565b604051610358919061427b565b60405180910390f35b34801561036d57600080fd5b50610376610bb8565b6040516103839190613ebe565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613544565b610bcb565b005b3480156103c157600080fd5b506103dc60048036038101906103d7919061369a565b610bdb565b005b3480156103ea57600080fd5b506104056004803603810190610400919061384b565b610c74565b604051610413929190613e95565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061365a565b610ce0565b604051610450919061427b565b60405180910390f35b34801561046557600080fd5b5061046e610ede565b005b34801561047c57600080fd5b50610485610fa9565b604051610492919061427b565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613544565b610fae565b005b3480156104d057600080fd5b506104eb60048036038101906104e6919061374e565b610fce565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137f1565b611169565b604051610521919061427b565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c91906137a8565b6111bc565b005b34801561055f57600080fd5b5061057a600480360381019061057591906137f1565b611252565b6040516105879190613e2e565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906134d7565b611268565b6040516105c4919061427b565b60405180910390f35b3480156105d957600080fd5b506105e2611351565b6040516105ef9190613ed9565b60405180910390f35b34801561060457600080fd5b5061060d6113e3565b005b34801561061b57600080fd5b50610636600480360381019061063191906137f1565b61146b565b005b34801561064457600080fd5b5061064d611605565b60405161065a9190613e2e565b60405180910390f35b34801561066f57600080fd5b5061067861162f565b6040516106859190613ed9565b60405180910390f35b34801561069a57600080fd5b506106a36116c1565b6040516106b0919061427b565b60405180910390f35b6106d360048036038101906106ce91906137f1565b6116c7565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061361a565b611882565b005b34801561070a57600080fd5b5061072560048036038101906107209190613597565b611a03565b005b34801561073357600080fd5b5061073c611a5f565b604051610749919061427b565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906137f1565b611a64565b6040516107869190613ed9565b60405180910390f35b34801561079b57600080fd5b506107a4611aec565b6040516107b1919061427b565b60405180910390f35b3480156107c657600080fd5b506107cf611af2565b6040516107dc919061427b565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061369a565b611af8565b005b34801561081a57600080fd5b5061083560048036038101906108309190613504565b611b91565b6040516108429190613ebe565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d91906134d7565b611cab565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e757506108e682611da3565b5b9050919050565b6060600180546108fd90614624565b80601f016020809104026020016040519081016040528092919081815260200182805461092990614624565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b5050505050905090565b662386f26fc1000081565b600061099682611eed565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc9061423b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1b82611252565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906140db565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611efa565b73ffffffffffffffffffffffffffffffffffffffff161480610ada5750610ad981610ad4611efa565b611b91565b5b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061401b565b60405180910390fd5b610b24838383611f02565b505050565b610b31611efa565b73ffffffffffffffffffffffffffffffffffffffff16610b4f611605565b73ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061407b565b60405180910390fd5b80600e8190555050565b60008054905090565b600f60009054906101000a900460ff1681565b610bd6838383611fb4565b505050565b610be3611efa565b73ffffffffffffffffffffffffffffffffffffffff16610c01611605565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e9061407b565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b600080610c8084611eed565b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690613ffb565b60405180910390fd5b30610cd5610cce85600561256d565b6064612583565b915091509250929050565b6000610ceb83611268565b8210610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390613efb565b60405180910390fd5b6000610d36610baf565b905060008060005b83811015610e9c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e885786841415610e79578195505050505050610ed8565b8380610e8490614687565b9450505b508080610e9490614687565b915050610d3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf906141bb565b60405180910390fd5b92915050565b610ee6611efa565b73ffffffffffffffffffffffffffffffffffffffff16610f04611605565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f519061407b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa5573d6000803e3d6000fd5b5050565b600081565b610fc983838360405180602001604052806000815250611a03565b505050565b610fd6611efa565b73ffffffffffffffffffffffffffffffffffffffff16610ff4611605565b73ffffffffffffffffffffffffffffffffffffffff161461104a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110419061407b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110859190613e2e565b60206040518083038186803b15801561109d57600080fd5b505afa1580156110b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d5919061381e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611112929190613e95565b602060405180830381600087803b15801561112c57600080fd5b505af1158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906136c7565b505050565b6000611173610baf565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613f5b565b60405180910390fd5b819050919050565b6111c4611efa565b73ffffffffffffffffffffffffffffffffffffffff166111e2611605565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061407b565b60405180910390fd5b80600b908051906020019061124e92919061325d565b5050565b600061125d82612599565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061403b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461136090614624565b80601f016020809104026020016040519081016040528092919081815260200182805461138c90614624565b80156113d95780601f106113ae576101008083540402835291602001916113d9565b820191906000526020600020905b8154815290600101906020018083116113bc57829003601f168201915b5050505050905090565b6113eb611efa565b73ffffffffffffffffffffffffffffffffffffffff16611409611605565b73ffffffffffffffffffffffffffffffffffffffff161461145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061407b565b60405180910390fd5b611469600061279c565b565b600260095414156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906141db565b60405180910390fd5b600260098190555080600d54816114c6610baf565b6114d091906143bb565b1115611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613f7b565b60405180910390fd5b816001811115611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613fdb565b60405180910390fd5b600e54611561610baf565b11156115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061417b565b60405180910390fd5b60006115ad33612862565b11156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061413b565b60405180910390fd5b6115f8338461294b565b5050600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461163e90614624565b80601f016020809104026020016040519081016040528092919081815260200182805461166a90614624565b80156116b75780601f1061168c576101008083540402835291602001916116b7565b820191906000526020600020905b81548152906001019060200180831161169a57829003601f168201915b5050505050905090565b600e5481565b6002600954141561170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906141db565b60405180910390fd5b6002600981905550662386f26fc1000081600e54611729610baf565b111561177d5734818361173c9190614442565b1461177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061419b565b60405180910390fd5b5b600f60009054906101000a900460ff166117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061421b565b60405180910390fd5b82600d54816117d9610baf565b6117e391906143bb565b1115611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90613f7b565b60405180910390fd5b836001811115611869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186090613fdb565b60405180910390fd5b611873338661294b565b50505050600160098190555050565b61188a611efa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef9061409b565b60405180910390fd5b8060066000611905611efa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b2611efa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f79190613ebe565b60405180910390a35050565b611a0e848484611fb4565b611a1a84848484612969565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906140fb565b60405180910390fd5b50505050565b600181565b6060611a6f82611eed565b611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613ffb565b60405180910390fd5b600b611ac5600184611ac091906143bb565b612b00565b604051602001611ad6929190613df4565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611b00611efa565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611605565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b9061407b565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611c8857508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611c209190613e2e565b60206040518083038186803b158015611c3857600080fd5b505afa158015611c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c70919061377b565b73ffffffffffffffffffffffffffffffffffffffff16145b15611c97576001915050611ca5565b611ca18484612c61565b9150505b92915050565b611cb3611efa565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611605565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e9061407b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613f1b565b60405180910390fd5b611da08161279c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ed657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ee65750611ee582612cf5565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fbf82612599565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe6611efa565b73ffffffffffffffffffffffffffffffffffffffff161480612042575061200b611efa565b73ffffffffffffffffffffffffffffffffffffffff1661202a8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061205e575061205d8260000151612058611efa565b611b91565b5b9050806120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906140bb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121099061405b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990613f9b565b60405180910390fd5b61218f8585856001612d5f565b61219f6000848460000151611f02565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661220d919061449c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122b19190614375565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123b791906143bb565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124fd5761242d81611eed565b156124fc576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125658686866001612d65565b505050505050565b6000818361257b9190614442565b905092915050565b600081836125919190614411565b905092915050565b6125a16132e3565b6125aa82611eed565b6125e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e090613f3b565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000001a4831061264d5760017f00000000000000000000000000000000000000000000000000000000000001a48461264091906144d0565b61264a91906143bb565b90505b60008390505b81811061275b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461274757809350505050612797565b508080612753906145fa565b915050612653565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e906141fb565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ca90613fbb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612965828260405180602001604052806000815250612d6b565b5050565b600061298a8473ffffffffffffffffffffffffffffffffffffffff1661324a565b15612af3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b3611efa565b8786866040518563ffffffff1660e01b81526004016129d59493929190613e49565b602060405180830381600087803b1580156129ef57600080fd5b505af1925050508015612a2057506040513d601f19601f82011682018060405250810190612a1d9190613721565b60015b612aa3573d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b50600081511415612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a92906140fb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af8565b600190505b949350505050565b60606000821415612b48576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c5c565b600082905060005b60008214612b7a578080612b6390614687565b915050600a82612b739190614411565b9150612b50565b60008167ffffffffffffffff811115612b9657612b956147bd565b5b6040519080825280601f01601f191660200182016040528015612bc85781602001600182028036833780820191505090505b5090505b60008514612c5557600182612be191906144d0565b9150600a85612bf091906146d0565b6030612bfc91906143bb565b60f81b818381518110612c1257612c1161478e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c4e9190614411565b9450612bcc565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd89061415b565b60405180910390fd5b612dea81611eed565b15612e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e219061411b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000001a4831115612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e849061425b565b60405180910390fd5b612e9a6000858386612d5f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f979190614375565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fbe9190614375565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561322d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131cd6000888488612969565b61320c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613203906140fb565b60405180910390fd5b818061321790614687565b925050808061322590614687565b91505061315c565b50806000819055506132426000878588612d65565b505050505050565b600080823b905060008111915050919050565b82805461326990614624565b90600052602060002090601f01602090048101928261328b57600085556132d2565b82601f106132a457805160ff19168380011785556132d2565b828001600101855582156132d2579182015b828111156132d15782518255916020019190600101906132b6565b5b5090506132df919061331d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333657600081600090555060010161331e565b5090565b600061334d613348846142bb565b614296565b905082815260208101848484011115613369576133686147f1565b5b6133748482856145b8565b509392505050565b600061338f61338a846142ec565b614296565b9050828152602081018484840111156133ab576133aa6147f1565b5b6133b68482856145b8565b509392505050565b6000813590506133cd81614fb1565b92915050565b6000813590506133e281614fc8565b92915050565b6000815190506133f781614fc8565b92915050565b60008135905061340c81614fdf565b92915050565b60008151905061342181614fdf565b92915050565b600082601f83011261343c5761343b6147ec565b5b813561344c84826020860161333a565b91505092915050565b60008135905061346481614ff6565b92915050565b6000815190506134798161500d565b92915050565b600082601f830112613494576134936147ec565b5b81356134a484826020860161337c565b91505092915050565b6000813590506134bc81615024565b92915050565b6000815190506134d181615024565b92915050565b6000602082840312156134ed576134ec6147fb565b5b60006134fb848285016133be565b91505092915050565b6000806040838503121561351b5761351a6147fb565b5b6000613529858286016133be565b925050602061353a858286016133be565b9150509250929050565b60008060006060848603121561355d5761355c6147fb565b5b600061356b868287016133be565b935050602061357c868287016133be565b925050604061358d868287016134ad565b9150509250925092565b600080600080608085870312156135b1576135b06147fb565b5b60006135bf878288016133be565b94505060206135d0878288016133be565b93505060406135e1878288016134ad565b925050606085013567ffffffffffffffff811115613602576136016147f6565b5b61360e87828801613427565b91505092959194509250565b60008060408385031215613631576136306147fb565b5b600061363f858286016133be565b9250506020613650858286016133d3565b9150509250929050565b60008060408385031215613671576136706147fb565b5b600061367f858286016133be565b9250506020613690858286016134ad565b9150509250929050565b6000602082840312156136b0576136af6147fb565b5b60006136be848285016133d3565b91505092915050565b6000602082840312156136dd576136dc6147fb565b5b60006136eb848285016133e8565b91505092915050565b60006020828403121561370a576137096147fb565b5b6000613718848285016133fd565b91505092915050565b600060208284031215613737576137366147fb565b5b600061374584828501613412565b91505092915050565b600060208284031215613764576137636147fb565b5b600061377284828501613455565b91505092915050565b600060208284031215613791576137906147fb565b5b600061379f8482850161346a565b91505092915050565b6000602082840312156137be576137bd6147fb565b5b600082013567ffffffffffffffff8111156137dc576137db6147f6565b5b6137e88482850161347f565b91505092915050565b600060208284031215613807576138066147fb565b5b6000613815848285016134ad565b91505092915050565b600060208284031215613834576138336147fb565b5b6000613842848285016134c2565b91505092915050565b60008060408385031215613862576138616147fb565b5b6000613870858286016134ad565b9250506020613881858286016134ad565b9150509250929050565b61389481614504565b82525050565b6138a381614516565b82525050565b60006138b482614332565b6138be8185614348565b93506138ce8185602086016145c7565b6138d781614800565b840191505092915050565b60006138ed8261433d565b6138f78185614359565b93506139078185602086016145c7565b61391081614800565b840191505092915050565b60006139268261433d565b613930818561436a565b93506139408185602086016145c7565b80840191505092915050565b6000815461395981614624565b613963818661436a565b9450600182166000811461397e576001811461398f576139c2565b60ff198316865281860193506139c2565b6139988561431d565b60005b838110156139ba5781548189015260018201915060208101905061399b565b838801955050505b50505092915050565b60006139d8602283614359565b91506139e382614811565b604082019050919050565b60006139fb602683614359565b9150613a0682614860565b604082019050919050565b6000613a1e602a83614359565b9150613a29826148af565b604082019050919050565b6000613a41602383614359565b9150613a4c826148fe565b604082019050919050565b6000613a64602283614359565b9150613a6f8261494d565b604082019050919050565b6000613a87602583614359565b9150613a928261499c565b604082019050919050565b6000613aaa603183614359565b9150613ab5826149eb565b604082019050919050565b6000613acd602283614359565b9150613ad882614a3a565b604082019050919050565b6000613af0601183614359565b9150613afb82614a89565b602082019050919050565b6000613b13603983614359565b9150613b1e82614ab2565b604082019050919050565b6000613b36602b83614359565b9150613b4182614b01565b604082019050919050565b6000613b59602683614359565b9150613b6482614b50565b604082019050919050565b6000613b7c60058361436a565b9150613b8782614b9f565b600582019050919050565b6000613b9f602083614359565b9150613baa82614bc8565b602082019050919050565b6000613bc2601a83614359565b9150613bcd82614bf1565b602082019050919050565b6000613be5603283614359565b9150613bf082614c1a565b604082019050919050565b6000613c08602283614359565b9150613c1382614c69565b604082019050919050565b6000613c2b603383614359565b9150613c3682614cb8565b604082019050919050565b6000613c4e601d83614359565b9150613c5982614d07565b602082019050919050565b6000613c71601c83614359565b9150613c7c82614d30565b602082019050919050565b6000613c94602183614359565b9150613c9f82614d59565b604082019050919050565b6000613cb7601c83614359565b9150613cc282614da8565b602082019050919050565b6000613cda601883614359565b9150613ce582614dd1565b602082019050919050565b6000613cfd602e83614359565b9150613d0882614dfa565b604082019050919050565b6000613d20601f83614359565b9150613d2b82614e49565b602082019050919050565b6000613d43602f83614359565b9150613d4e82614e72565b604082019050919050565b6000613d66601783614359565b9150613d7182614ec1565b602082019050919050565b6000613d89602d83614359565b9150613d9482614eea565b604082019050919050565b6000613dac602283614359565b9150613db782614f39565b604082019050919050565b6000613dcf60018361436a565b9150613dda82614f88565b600182019050919050565b613dee816145ae565b82525050565b6000613e00828561394c565b9150613e0b82613dc2565b9150613e17828461391b565b9150613e2282613b6f565b91508190509392505050565b6000602082019050613e43600083018461388b565b92915050565b6000608082019050613e5e600083018761388b565b613e6b602083018661388b565b613e786040830185613de5565b8181036060830152613e8a81846138a9565b905095945050505050565b6000604082019050613eaa600083018561388b565b613eb76020830184613de5565b9392505050565b6000602082019050613ed3600083018461389a565b92915050565b60006020820190508181036000830152613ef381846138e2565b905092915050565b60006020820190508181036000830152613f14816139cb565b9050919050565b60006020820190508181036000830152613f34816139ee565b9050919050565b60006020820190508181036000830152613f5481613a11565b9050919050565b60006020820190508181036000830152613f7481613a34565b9050919050565b60006020820190508181036000830152613f9481613a57565b9050919050565b60006020820190508181036000830152613fb481613a7a565b9050919050565b60006020820190508181036000830152613fd481613a9d565b9050919050565b60006020820190508181036000830152613ff481613ac0565b9050919050565b6000602082019050818103600083015261401481613ae3565b9050919050565b6000602082019050818103600083015261403481613b06565b9050919050565b6000602082019050818103600083015261405481613b29565b9050919050565b6000602082019050818103600083015261407481613b4c565b9050919050565b6000602082019050818103600083015261409481613b92565b9050919050565b600060208201905081810360008301526140b481613bb5565b9050919050565b600060208201905081810360008301526140d481613bd8565b9050919050565b600060208201905081810360008301526140f481613bfb565b9050919050565b6000602082019050818103600083015261411481613c1e565b9050919050565b6000602082019050818103600083015261413481613c41565b9050919050565b6000602082019050818103600083015261415481613c64565b9050919050565b6000602082019050818103600083015261417481613c87565b9050919050565b6000602082019050818103600083015261419481613caa565b9050919050565b600060208201905081810360008301526141b481613ccd565b9050919050565b600060208201905081810360008301526141d481613cf0565b9050919050565b600060208201905081810360008301526141f481613d13565b9050919050565b6000602082019050818103600083015261421481613d36565b9050919050565b6000602082019050818103600083015261423481613d59565b9050919050565b6000602082019050818103600083015261425481613d7c565b9050919050565b6000602082019050818103600083015261427481613d9f565b9050919050565b60006020820190506142906000830184613de5565b92915050565b60006142a06142b1565b90506142ac8282614656565b919050565b6000604051905090565b600067ffffffffffffffff8211156142d6576142d56147bd565b5b6142df82614800565b9050602081019050919050565b600067ffffffffffffffff821115614307576143066147bd565b5b61431082614800565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061438082614572565b915061438b83614572565b9250826fffffffffffffffffffffffffffffffff038211156143b0576143af614701565b5b828201905092915050565b60006143c6826145ae565b91506143d1836145ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440657614405614701565b5b828201905092915050565b600061441c826145ae565b9150614427836145ae565b92508261443757614436614730565b5b828204905092915050565b600061444d826145ae565b9150614458836145ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449157614490614701565b5b828202905092915050565b60006144a782614572565b91506144b283614572565b9250828210156144c5576144c4614701565b5b828203905092915050565b60006144db826145ae565b91506144e6836145ae565b9250828210156144f9576144f8614701565b5b828203905092915050565b600061450f8261458e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455982614504565b9050919050565b600061456b82614504565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145e55780820151818401526020810190506145ca565b838111156145f4576000848401525b50505050565b6000614605826145ae565b9150600082141561461957614618614701565b5b600182039050919050565b6000600282049050600182168061463c57607f821691505b602082108114156146505761464f61475f565b5b50919050565b61465f82614800565b810181811067ffffffffffffffff8211171561467e5761467d6147bd565b5b80604052505050565b6000614692826145ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c5576146c4614701565b5b600182019050919050565b60006146db826145ae565b91506146e6836145ae565b9250826146f6576146f5614730565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f54686572652069732061207065722d77616c6c6574206c696d69742100000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682066726565206d696e74732072656d61696e00000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b614fba81614504565b8114614fc557600080fd5b50565b614fd181614516565b8114614fdc57600080fd5b50565b614fe881614522565b8114614ff357600080fd5b50565b614fff8161454e565b811461500a57600080fd5b50565b61501681614560565b811461502157600080fd5b50565b61502d816145ae565b811461503857600080fd5b5056fea2646970667358221220566ee9bd320924c9b050cae1c4ab80bdef5b680c485b4c9131e2e51d2b98754764736f6c63430008070033
Deployed Bytecode Sourcemap
57180:6180:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61549:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46399:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57692:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47924:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47487:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60817:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43234:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57795:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48774:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60651:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63039:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;43865:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60966:143;;;;;;;;;;;;;:::i;:::-;;57644:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48979:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61117:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43397:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60253:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46222:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45099:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60089:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21257:103;;;;;;;;;;;;;:::i;:::-;;59740:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20606:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46554:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57753:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59289:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48192:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49199:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57556:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62666:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57607:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53614:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60477:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61978:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21515:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61549:292;61697:4;61754:26;61739:41;;;:11;:41;;;;:94;;;;61797:36;61821:11;61797:23;:36::i;:::-;61739:94;61719:114;;61549:292;;;:::o;46399:94::-;46453:13;46482:5;46475:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46399:94;:::o;57692:54::-;57736:10;57692:54;:::o;47924:204::-;47992:7;48016:16;48024:7;48016;:16::i;:::-;48008:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;48098:15;:24;48114:7;48098:24;;;;;;;;;;;;;;;;;;;;;48091:31;;47924:204;;;:::o;47487:379::-;47556:13;47572:24;47588:7;47572:15;:24::i;:::-;47556:40;;47617:5;47611:11;;:2;:11;;;;47603:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47702:5;47686:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;47711:37;47728:5;47735:12;:10;:12::i;:::-;47711:16;:37::i;:::-;47686:62;47670:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47832:28;47841:2;47845:7;47854:5;47832:8;:28::i;:::-;47549:317;47487:379;;:::o;60817:139::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60935:13:::1;60918:14;:30;;;;60817:139:::0;:::o;43234:94::-;43287:7;43310:12;;43303:19;;43234:94;:::o;57795:38::-;;;;;;;;;;;;;:::o;48774:142::-;48882:28;48892:4;48898:2;48902:7;48882:9;:28::i;:::-;48774:142;;;:::o;60651:158::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60782:19:::1;60761:18;;:40;;;;;;;;;;;;;;;;;;60651:158:::0;:::o;63039:318::-;63164:16;63182:21;63229:16;63237:7;63229;:16::i;:::-;63221:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63296:4;63303:45;63316:26;63329:9;63340:1;63316:12;:26::i;:::-;63344:3;63303:12;:45::i;:::-;63280:69;;;;63039:318;;;;;:::o;43865:744::-;43974:7;44009:16;44019:5;44009:9;:16::i;:::-;44001:5;:24;43993:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44071:22;44096:13;:11;:13::i;:::-;44071:38;;44116:19;44146:25;44196:9;44191:350;44215:14;44211:1;:18;44191:350;;;44245:31;44279:11;:14;44291:1;44279:14;;;;;;;;;;;44245:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44332:1;44306:28;;:9;:14;;;:28;;;44302:89;;44367:9;:14;;;44347:34;;44302:89;44424:5;44403:26;;:17;:26;;;44399:135;;;44461:5;44446:11;:20;44442:59;;;44488:1;44481:8;;;;;;;;;44442:59;44511:13;;;;;:::i;:::-;;;;44399:135;44236:305;44231:3;;;;;:::i;:::-;;;;44191:350;;;;44547:56;;;;;;;;;;:::i;:::-;;;;;;;;43865:744;;;;;:::o;60966:143::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61014:15:::1;61032:21;61014:39;;61072:10;61064:28;;:37;61093:7;61064:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61003:106;60966:143::o:0;57644:39::-;57682:1;57644:39;:::o;48979:157::-;49091:39;49108:4;49114:2;49118:7;49091:39;;;;;;;;;;;;:16;:39::i;:::-;48979:157;;;:::o;61117:168::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61183:15:::1;61201:5;:15;;;61225:4;61201:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61183:48;;61242:5;:14;;;61257:10;61269:7;61242:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61172:113;61117:168:::0;:::o;43397:177::-;43464:7;43496:13;:11;:13::i;:::-;43488:5;:21;43480:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43563:5;43556:12;;43397:177;;;:::o;60253:100::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60337:8:::1;60327:7;:18;;;;;;;;;;;;:::i;:::-;;60253:100:::0;:::o;46222:118::-;46286:7;46309:20;46321:7;46309:11;:20::i;:::-;:25;;;46302:32;;46222:118;;;:::o;45099:211::-;45163:7;45204:1;45187:19;;:5;:19;;;;45179:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;45276:12;:19;45289:5;45276:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;45268:36;;45261:43;;45099:211;;;:::o;60089:93::-;60134:13;60167:7;60160:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60089:93;:::o;21257:103::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21322:30:::1;21349:1;21322:18;:30::i;:::-;21257:103::o:0;59740:272::-;12535:1;13133:7;;:19;;13125:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12535:1;13266:7;:18;;;;59843:14:::1;58374:9;;58339:14;58323:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;58301:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;59882:14:::2;57599:1;58121:14;:34;;58099:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;58570:14:::3;;58536:13;:11;:13::i;:::-;:48;;58514:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;57682:1:::4;59001:25;59015:10;59001:13;:25::i;:::-;:56;;58979:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;59967:37:::5;59977:10;59989:14;59967:9;:37::i;:::-;58456:1:::2;13297::::1;12491::::0;13445:7;:22;;;;59740:272;:::o;20606:87::-;20652:7;20679:6;;;;;;;;;;;20672:13;;20606:87;:::o;46554:98::-;46610:13;46639:7;46632:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46554:98;:::o;57753:35::-;;;;:::o;59289:321::-;12535:1;13133:7;;:19;;13125:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12535:1;13266:7;:18;;;;57736:10:::1;59429:14;58765;;58751:13;:11;:13::i;:::-;:28;58748:166;;;58841:9;58822:14;58814:5;:22;;;;:::i;:::-;58813:37;58791:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;58748:166;57963:18:::2;;;;;;;;;;;57955:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;59492:14:::3;58374:9;;58339:14;58323:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;58301:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;59531:14:::4;57599:1;58121:14;:34;;58099:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;59565:37:::5;59575:10;59587:14;59565:9;:37::i;:::-;58456:1:::4;58020::::3;13297::::1;;12491::::0;13445:7;:22;;;;59289:321;:::o;48192:274::-;48295:12;:10;:12::i;:::-;48283:24;;:8;:24;;;;48275:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48392:8;48347:18;:32;48366:12;:10;:12::i;:::-;48347:32;;;;;;;;;;;;;;;:42;48380:8;48347:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;48441:8;48412:48;;48427:12;:10;:12::i;:::-;48412:48;;;48451:8;48412:48;;;;;;:::i;:::-;;;;;;;;48192:274;;:::o;49199:311::-;49336:28;49346:4;49352:2;49356:7;49336:9;:28::i;:::-;49387:48;49410:4;49416:2;49420:7;49429:5;49387:22;:48::i;:::-;49371:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:311;;;;:::o;57556:44::-;57599:1;57556:44;:::o;62666:307::-;62784:13;62823:16;62831:7;62823;:16::i;:::-;62815:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;62918:7;62932:22;62941:1;62933:7;:9;;;;:::i;:::-;62932:20;:22::i;:::-;62901:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62874:91;;62666:307;;;:::o;57607:30::-;;;;:::o;53614:43::-;;;;:::o;60477:166::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60614:21:::1;60591:20;;:44;;;;;;;;;;;;;;;;;;60477:166:::0;:::o;61978:617::-;62103:4;62268:27;62326;;;;;;;;;;;62268:96;;62393:20;;;;;;;;;;;:86;;;;;62471:8;62430:49;;62438:13;:21;;;62460:5;62438:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62430:49;;;62393:86;62375:154;;;62513:4;62506:11;;;;;62375:154;62548:39;62571:5;62578:8;62548:22;:39::i;:::-;62541:46;;;61978:617;;;;;:::o;21515:201::-;20837:12;:10;:12::i;:::-;20826:23;;:7;:5;:7::i;:::-;:23;;;20818:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21624:1:::1;21604:22;;:8;:22;;;;21596:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21680:28;21699:8;21680:18;:28::i;:::-;21515:201:::0;:::o;44673:370::-;44800:4;44845:25;44830:40;;;:11;:40;;;;:99;;;;44896:33;44881:48;;;:11;:48;;;;44830:99;:160;;;;44955:35;44940:50;;;:11;:50;;;;44830:160;:207;;;;45001:36;45025:11;45001:23;:36::i;:::-;44830:207;44816:221;;44673:370;;;:::o;49749:105::-;49806:4;49836:12;;49826:7;:22;49819:29;;49749:105;;;:::o;19330:98::-;19383:7;19410:10;19403:17;;19330:98;:::o;53436:172::-;53560:2;53533:15;:24;53549:7;53533:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53594:7;53590:2;53574:28;;53583:5;53574:28;;;;;;;;;;;;53436:172;;;:::o;51801:1529::-;51898:35;51936:20;51948:7;51936:11;:20::i;:::-;51898:58;;51965:22;52007:13;:18;;;51991:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;52060:12;:10;:12::i;:::-;52036:36;;:20;52048:7;52036:11;:20::i;:::-;:36;;;51991:81;:142;;;;52083:50;52100:13;:18;;;52120:12;:10;:12::i;:::-;52083:16;:50::i;:::-;51991:142;51965:169;;52159:17;52143:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;52291:4;52269:26;;:13;:18;;;:26;;;52253:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52380:1;52366:16;;:2;:16;;;;52358:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;52433:43;52455:4;52461:2;52465:7;52474:1;52433:21;:43::i;:::-;52533:49;52550:1;52554:7;52563:13;:18;;;52533:8;:49::i;:::-;52621:1;52591:12;:18;52604:4;52591:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52657:1;52629:12;:16;52642:2;52629:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52688:43;;;;;;;;52703:2;52688:43;;;;;;52714:15;52688:43;;;;;52665:11;:20;52677:7;52665:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52959:19;52991:1;52981:7;:11;;;;:::i;:::-;52959:33;;53044:1;53003:43;;:11;:24;53015:11;53003:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;52999:236;;;53061:20;53069:11;53061:7;:20::i;:::-;53057:171;;;53121:97;;;;;;;;53148:13;:18;;;53121:97;;;;;;53179:13;:28;;;53121:97;;;;;53094:11;:24;53106:11;53094:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53057:171;52999:236;53267:7;53263:2;53248:27;;53257:4;53248:27;;;;;;;;;;;;53282:42;53303:4;53309:2;53313:7;53322:1;53282:20;:42::i;:::-;51891:1439;;;51801:1529;;;:::o;5831:98::-;5889:7;5920:1;5916;:5;;;;:::i;:::-;5909:12;;5831:98;;;;:::o;6230:::-;6288:7;6319:1;6315;:5;;;;:::i;:::-;6308:12;;6230:98;;;;:::o;45562:606::-;45638:21;;:::i;:::-;45679:16;45687:7;45679;:16::i;:::-;45671:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45751:26;45799:12;45788:7;:23;45784:93;;45868:1;45853:12;45843:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;45822:47;;45784:93;45890:12;45905:7;45890:22;;45885:212;45922:18;45914:4;:26;45885:212;;45959:31;45993:11;:17;46005:4;45993:17;;;;;;;;;;;45959:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46049:1;46023:28;;:9;:14;;;:28;;;46019:71;;46071:9;46064:16;;;;;;;46019:71;45950:147;45942:6;;;;;:::i;:::-;;;;45885:212;;;;46105:57;;;;;;;;;;:::i;:::-;;;;;;;;45562:606;;;;:::o;21876:191::-;21950:16;21969:6;;;;;;;;;;;21950:25;;21995:8;21986:6;;:17;;;;;;;;;;;;;;;;;;22050:8;22019:40;;22040:8;22019:40;;;;;;;;;;;;21939:128;21876:191;:::o;45316:240::-;45377:7;45426:1;45409:19;;:5;:19;;;;45393:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;45517:12;:19;45530:5;45517:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;45509:41;;45502:48;;45316:240;;;:::o;49860:98::-;49925:27;49935:2;49939:8;49925:27;;;;;;;;;;;;:9;:27::i;:::-;49860:98;;:::o;55151:690::-;55288:4;55305:15;:2;:13;;;:15::i;:::-;55301:535;;;55360:2;55344:36;;;55381:12;:10;:12::i;:::-;55395:4;55401:7;55410:5;55344:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55331:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55592:1;55575:6;:13;:18;55571:215;;;55608:61;;;;;;;;;;:::i;:::-;;;;;;;;55571:215;55754:6;55748:13;55739:6;55735:2;55731:15;55724:38;55331:464;55476:45;;;55466:55;;;:6;:55;;;;55459:62;;;;;55301:535;55824:4;55817:11;;55151:690;;;;;;;:::o;16892:723::-;16948:13;17178:1;17169:5;:10;17165:53;;;17196:10;;;;;;;;;;;;;;;;;;;;;17165:53;17228:12;17243:5;17228:20;;17259:14;17284:78;17299:1;17291:4;:9;17284:78;;17317:8;;;;;:::i;:::-;;;;17348:2;17340:10;;;;;:::i;:::-;;;17284:78;;;17372:19;17404:6;17394:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17372:39;;17422:154;17438:1;17429:5;:10;17422:154;;17466:1;17456:11;;;;;:::i;:::-;;;17533:2;17525:5;:10;;;;:::i;:::-;17512:2;:24;;;;:::i;:::-;17499:39;;17482:6;17489;17482:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17562:2;17553:11;;;;;:::i;:::-;;;17422:154;;;17600:6;17586:21;;;;;16892:723;;;;:::o;48529:186::-;48651:4;48674:18;:25;48693:5;48674:25;;;;;;;;;;;;;;;:35;48700:8;48674:35;;;;;;;;;;;;;;;;;;;;;;;;;48667:42;;48529:186;;;;:::o;34006:157::-;34091:4;34130:25;34115:40;;;:11;:40;;;;34108:47;;34006:157;;;:::o;56303:141::-;;;;;:::o;56830:140::-;;;;;:::o;50297:1272::-;50402:20;50425:12;;50402:35;;50466:1;50452:16;;:2;:16;;;;50444:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50643:21;50651:12;50643:7;:21::i;:::-;50642:22;50634:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50725:12;50713:8;:24;;50705:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50785:61;50815:1;50819:2;50823:12;50837:8;50785:21;:61::i;:::-;50855:30;50888:12;:16;50901:2;50888:16;;;;;;;;;;;;;;;50855:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50930:119;;;;;;;;50980:8;50950:11;:19;;;:39;;;;:::i;:::-;50930:119;;;;;;51033:8;50998:11;:24;;;:44;;;;:::i;:::-;50930:119;;;;;50911:12;:16;50924:2;50911:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51084:43;;;;;;;;51099:2;51084:43;;;;;;51110:15;51084:43;;;;;51056:11;:25;51068:12;51056:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51136:20;51159:12;51136:35;;51185:9;51180:281;51204:8;51200:1;:12;51180:281;;;51258:12;51254:2;51233:38;;51250:1;51233:38;;;;;;;;;;;;51298:59;51329:1;51333:2;51337:12;51351:5;51298:22;:59::i;:::-;51280:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;51439:14;;;;;:::i;:::-;;;;51214:3;;;;;:::i;:::-;;;;51180:281;;;;51484:12;51469;:27;;;;51503:60;51532:1;51536:2;51540:12;51554:8;51503:20;:60::i;:::-;50395:1174;;;50297:1272;;;:::o;22894:387::-;22954:4;23162:12;23229:7;23217:20;23209:28;;23272:1;23265:4;:8;23258:15;;;22894: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;11100:377::-;11206:3;11234:39;11267:5;11234:39;:::i;:::-;11289:89;11371:6;11366:3;11289:89;:::i;:::-;11282:96;;11387:52;11432:6;11427:3;11420:4;11413:5;11409:16;11387:52;:::i;:::-;11464:6;11459:3;11455:16;11448:23;;11210:267;11100:377;;;;:::o;11507:845::-;11610:3;11647:5;11641:12;11676:36;11702:9;11676:36;:::i;:::-;11728:89;11810:6;11805:3;11728:89;:::i;:::-;11721:96;;11848:1;11837:9;11833:17;11864:1;11859:137;;;;12010:1;12005:341;;;;11826:520;;11859:137;11943:4;11939:9;11928;11924:25;11919:3;11912:38;11979:6;11974:3;11970:16;11963:23;;11859:137;;12005:341;12072:38;12104:5;12072:38;:::i;:::-;12132:1;12146:154;12160:6;12157:1;12154:13;12146:154;;;12234:7;12228:14;12224:1;12219:3;12215:11;12208:35;12284:1;12275:7;12271:15;12260:26;;12182:4;12179:1;12175:12;12170:17;;12146:154;;;12329:6;12324:3;12320:16;12313:23;;12012:334;;11826:520;;11614:738;;11507:845;;;;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:::-;12872:3;12893:67;12957:2;12952:3;12893:67;:::i;:::-;12886:74;;12969:93;13058:3;12969:93;:::i;:::-;13087:2;13082:3;13078:12;13071:19;;12730:366;;;:::o;13102:::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:::-;15104:3;15125:67;15189:2;15184:3;15125:67;:::i;:::-;15118:74;;15201:93;15290:3;15201:93;:::i;:::-;15319:2;15314:3;15310:12;15303:19;;14962:366;;;:::o;15334:::-;15476:3;15497:67;15561:2;15556:3;15497:67;:::i;:::-;15490:74;;15573:93;15662:3;15573:93;:::i;:::-;15691:2;15686:3;15682:12;15675:19;;15334:366;;;:::o;15706:::-;15848:3;15869:67;15933:2;15928:3;15869:67;:::i;:::-;15862:74;;15945:93;16034:3;15945:93;:::i;:::-;16063:2;16058:3;16054:12;16047:19;;15706:366;;;:::o;16078:::-;16220:3;16241:67;16305:2;16300:3;16241:67;:::i;:::-;16234:74;;16317:93;16406:3;16317:93;:::i;:::-;16435:2;16430:3;16426:12;16419:19;;16078:366;;;:::o;16450:::-;16592:3;16613:67;16677:2;16672:3;16613:67;:::i;:::-;16606:74;;16689:93;16778:3;16689:93;:::i;:::-;16807:2;16802:3;16798:12;16791:19;;16450:366;;;:::o;16822:400::-;16982:3;17003:84;17085:1;17080:3;17003:84;:::i;:::-;16996:91;;17096:93;17185:3;17096:93;:::i;:::-;17214:1;17209:3;17205:11;17198:18;;16822:400;;;:::o;17228:366::-;17370:3;17391:67;17455:2;17450:3;17391:67;:::i;:::-;17384:74;;17467:93;17556:3;17467:93;:::i;:::-;17585:2;17580:3;17576:12;17569:19;;17228:366;;;:::o;17600:::-;17742:3;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17839:93;17928:3;17839:93;:::i;:::-;17957:2;17952:3;17948:12;17941:19;;17600:366;;;:::o;17972:::-;18114:3;18135:67;18199:2;18194:3;18135:67;:::i;:::-;18128:74;;18211:93;18300:3;18211:93;:::i;:::-;18329:2;18324:3;18320:12;18313:19;;17972:366;;;:::o;18344:::-;18486:3;18507:67;18571:2;18566:3;18507:67;:::i;:::-;18500:74;;18583:93;18672:3;18583:93;:::i;:::-;18701:2;18696:3;18692:12;18685:19;;18344:366;;;:::o;18716:::-;18858:3;18879:67;18943:2;18938:3;18879:67;:::i;:::-;18872:74;;18955:93;19044:3;18955:93;:::i;:::-;19073:2;19068:3;19064:12;19057:19;;18716:366;;;:::o;19088:::-;19230:3;19251:67;19315:2;19310:3;19251:67;:::i;:::-;19244:74;;19327:93;19416:3;19327:93;:::i;:::-;19445:2;19440:3;19436:12;19429:19;;19088:366;;;:::o;19460:::-;19602:3;19623:67;19687:2;19682:3;19623:67;:::i;:::-;19616:74;;19699:93;19788:3;19699:93;:::i;:::-;19817:2;19812:3;19808:12;19801:19;;19460:366;;;:::o;19832:::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:::-;20346:3;20367:67;20431:2;20426:3;20367:67;:::i;:::-;20360:74;;20443:93;20532:3;20443:93;:::i;:::-;20561:2;20556:3;20552:12;20545:19;;20204:366;;;:::o;20576:::-;20718:3;20739:67;20803:2;20798:3;20739:67;:::i;:::-;20732:74;;20815:93;20904:3;20815:93;:::i;:::-;20933:2;20928:3;20924:12;20917:19;;20576:366;;;:::o;20948:::-;21090:3;21111:67;21175:2;21170:3;21111:67;:::i;:::-;21104:74;;21187:93;21276:3;21187:93;:::i;:::-;21305:2;21300:3;21296:12;21289:19;;20948:366;;;:::o;21320:::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:::-;21834:3;21855:67;21919:2;21914:3;21855:67;:::i;:::-;21848:74;;21931:93;22020:3;21931:93;:::i;:::-;22049:2;22044:3;22040:12;22033:19;;21692:366;;;:::o;22064:::-;22206:3;22227:67;22291:2;22286:3;22227:67;:::i;:::-;22220:74;;22303:93;22392:3;22303:93;:::i;:::-;22421:2;22416:3;22412:12;22405:19;;22064:366;;;:::o;22436:::-;22578:3;22599:67;22663:2;22658:3;22599:67;:::i;:::-;22592:74;;22675:93;22764:3;22675:93;:::i;:::-;22793:2;22788:3;22784:12;22777:19;;22436:366;;;:::o;22808:::-;22950:3;22971:67;23035:2;23030:3;22971:67;:::i;:::-;22964:74;;23047:93;23136:3;23047:93;:::i;:::-;23165:2;23160:3;23156:12;23149:19;;22808:366;;;:::o;23180:400::-;23340:3;23361:84;23443:1;23438:3;23361:84;:::i;:::-;23354:91;;23454:93;23543:3;23454:93;:::i;:::-;23572:1;23567:3;23563:11;23556:18;;23180:400;;;:::o;23586:118::-;23673:24;23691:5;23673:24;:::i;:::-;23668:3;23661:37;23586:118;;:::o;23710:961::-;24089:3;24111:92;24199:3;24190:6;24111:92;:::i;:::-;24104:99;;24220:148;24364:3;24220:148;:::i;:::-;24213:155;;24385:95;24476:3;24467:6;24385:95;:::i;:::-;24378:102;;24497:148;24641:3;24497:148;:::i;:::-;24490:155;;24662:3;24655:10;;23710:961;;;;;:::o;24677:222::-;24770:4;24808:2;24797:9;24793:18;24785:26;;24821:71;24889:1;24878:9;24874:17;24865:6;24821:71;:::i;:::-;24677:222;;;;:::o;24905:640::-;25100:4;25138:3;25127:9;25123:19;25115:27;;25152:71;25220:1;25209:9;25205:17;25196:6;25152:71;:::i;:::-;25233:72;25301:2;25290:9;25286:18;25277:6;25233:72;:::i;:::-;25315;25383:2;25372:9;25368:18;25359:6;25315:72;:::i;:::-;25434:9;25428:4;25424:20;25419:2;25408:9;25404:18;25397:48;25462:76;25533:4;25524:6;25462:76;:::i;:::-;25454:84;;24905:640;;;;;;;:::o;25551:332::-;25672:4;25710:2;25699:9;25695:18;25687:26;;25723:71;25791:1;25780:9;25776:17;25767:6;25723:71;:::i;:::-;25804:72;25872:2;25861:9;25857:18;25848:6;25804:72;:::i;:::-;25551:332;;;;;:::o;25889:210::-;25976:4;26014:2;26003:9;25999:18;25991:26;;26027:65;26089:1;26078:9;26074:17;26065:6;26027:65;:::i;:::-;25889:210;;;;:::o;26105:313::-;26218:4;26256:2;26245:9;26241:18;26233:26;;26305:9;26299:4;26295:20;26291:1;26280:9;26276:17;26269:47;26333:78;26406:4;26397:6;26333:78;:::i;:::-;26325:86;;26105:313;;;;:::o;26424:419::-;26590:4;26628:2;26617:9;26613:18;26605:26;;26677:9;26671:4;26667:20;26663:1;26652:9;26648:17;26641:47;26705:131;26831:4;26705:131;:::i;:::-;26697:139;;26424:419;;;:::o;26849:::-;27015:4;27053:2;27042:9;27038:18;27030:26;;27102:9;27096:4;27092:20;27088:1;27077:9;27073:17;27066:47;27130:131;27256:4;27130:131;:::i;:::-;27122:139;;26849:419;;;:::o;27274:::-;27440:4;27478:2;27467:9;27463:18;27455:26;;27527:9;27521:4;27517:20;27513:1;27502:9;27498:17;27491:47;27555:131;27681:4;27555:131;:::i;:::-;27547:139;;27274:419;;;:::o;27699:::-;27865:4;27903:2;27892:9;27888:18;27880:26;;27952:9;27946:4;27942:20;27938:1;27927:9;27923:17;27916:47;27980:131;28106:4;27980:131;:::i;:::-;27972:139;;27699:419;;;:::o;28124:::-;28290:4;28328:2;28317:9;28313:18;28305:26;;28377:9;28371:4;28367:20;28363:1;28352:9;28348:17;28341:47;28405:131;28531:4;28405:131;:::i;:::-;28397:139;;28124:419;;;:::o;28549:::-;28715:4;28753:2;28742:9;28738:18;28730:26;;28802:9;28796:4;28792:20;28788:1;28777:9;28773:17;28766:47;28830:131;28956:4;28830:131;:::i;:::-;28822:139;;28549:419;;;:::o;28974:::-;29140:4;29178:2;29167:9;29163:18;29155:26;;29227:9;29221:4;29217:20;29213:1;29202:9;29198:17;29191:47;29255:131;29381:4;29255:131;:::i;:::-;29247:139;;28974:419;;;:::o;29399:::-;29565:4;29603:2;29592:9;29588:18;29580:26;;29652:9;29646:4;29642:20;29638:1;29627:9;29623:17;29616:47;29680:131;29806:4;29680:131;:::i;:::-;29672:139;;29399:419;;;:::o;29824:::-;29990:4;30028:2;30017:9;30013:18;30005:26;;30077:9;30071:4;30067:20;30063:1;30052:9;30048:17;30041:47;30105:131;30231:4;30105:131;:::i;:::-;30097:139;;29824:419;;;:::o;30249:::-;30415:4;30453:2;30442:9;30438:18;30430:26;;30502:9;30496:4;30492:20;30488:1;30477:9;30473:17;30466:47;30530:131;30656:4;30530:131;:::i;:::-;30522:139;;30249:419;;;:::o;30674:::-;30840:4;30878:2;30867:9;30863:18;30855:26;;30927:9;30921:4;30917:20;30913:1;30902:9;30898:17;30891:47;30955:131;31081:4;30955:131;:::i;:::-;30947:139;;30674:419;;;:::o;31099:::-;31265:4;31303:2;31292:9;31288:18;31280:26;;31352:9;31346:4;31342:20;31338:1;31327:9;31323:17;31316:47;31380:131;31506:4;31380:131;:::i;:::-;31372:139;;31099:419;;;:::o;31524:::-;31690:4;31728:2;31717:9;31713:18;31705:26;;31777:9;31771:4;31767:20;31763:1;31752:9;31748:17;31741:47;31805:131;31931:4;31805:131;:::i;:::-;31797:139;;31524:419;;;:::o;31949:::-;32115:4;32153:2;32142:9;32138:18;32130:26;;32202:9;32196:4;32192:20;32188:1;32177:9;32173:17;32166:47;32230:131;32356:4;32230:131;:::i;:::-;32222:139;;31949:419;;;:::o;32374:::-;32540:4;32578:2;32567:9;32563:18;32555:26;;32627:9;32621:4;32617:20;32613:1;32602:9;32598:17;32591:47;32655:131;32781:4;32655:131;:::i;:::-;32647:139;;32374:419;;;:::o;32799:::-;32965:4;33003:2;32992:9;32988:18;32980:26;;33052:9;33046:4;33042:20;33038:1;33027:9;33023:17;33016:47;33080:131;33206:4;33080:131;:::i;:::-;33072:139;;32799:419;;;:::o;33224:::-;33390:4;33428:2;33417:9;33413:18;33405:26;;33477:9;33471:4;33467:20;33463:1;33452:9;33448:17;33441:47;33505:131;33631:4;33505:131;:::i;:::-;33497:139;;33224:419;;;:::o;33649:::-;33815:4;33853:2;33842:9;33838:18;33830:26;;33902:9;33896:4;33892:20;33888:1;33877:9;33873:17;33866:47;33930:131;34056:4;33930:131;:::i;:::-;33922:139;;33649:419;;;:::o;34074:::-;34240:4;34278:2;34267:9;34263:18;34255:26;;34327:9;34321:4;34317:20;34313:1;34302:9;34298:17;34291:47;34355:131;34481:4;34355:131;:::i;:::-;34347:139;;34074:419;;;:::o;34499:::-;34665:4;34703:2;34692:9;34688:18;34680:26;;34752:9;34746:4;34742:20;34738:1;34727:9;34723:17;34716:47;34780:131;34906:4;34780:131;:::i;:::-;34772:139;;34499:419;;;:::o;34924:::-;35090:4;35128:2;35117:9;35113:18;35105:26;;35177:9;35171:4;35167:20;35163:1;35152:9;35148:17;35141:47;35205:131;35331:4;35205:131;:::i;:::-;35197:139;;34924:419;;;:::o;35349:::-;35515:4;35553:2;35542:9;35538:18;35530:26;;35602:9;35596:4;35592:20;35588:1;35577:9;35573:17;35566:47;35630:131;35756:4;35630:131;:::i;:::-;35622:139;;35349:419;;;:::o;35774:::-;35940:4;35978:2;35967:9;35963:18;35955:26;;36027:9;36021:4;36017:20;36013:1;36002:9;35998:17;35991:47;36055:131;36181:4;36055:131;:::i;:::-;36047:139;;35774:419;;;:::o;36199:::-;36365:4;36403:2;36392:9;36388:18;36380:26;;36452:9;36446:4;36442:20;36438:1;36427:9;36423:17;36416:47;36480:131;36606:4;36480:131;:::i;:::-;36472:139;;36199:419;;;:::o;36624:::-;36790:4;36828:2;36817:9;36813:18;36805:26;;36877:9;36871:4;36867:20;36863:1;36852:9;36848:17;36841:47;36905:131;37031:4;36905:131;:::i;:::-;36897:139;;36624:419;;;:::o;37049:::-;37215:4;37253:2;37242:9;37238:18;37230:26;;37302:9;37296:4;37292:20;37288:1;37277:9;37273:17;37266:47;37330:131;37456:4;37330:131;:::i;:::-;37322:139;;37049:419;;;:::o;37474:::-;37640:4;37678:2;37667:9;37663:18;37655:26;;37727:9;37721:4;37717:20;37713:1;37702:9;37698:17;37691:47;37755:131;37881:4;37755:131;:::i;:::-;37747:139;;37474:419;;;:::o;37899:::-;38065:4;38103:2;38092:9;38088:18;38080:26;;38152:9;38146:4;38142:20;38138:1;38127:9;38123:17;38116:47;38180:131;38306:4;38180:131;:::i;:::-;38172:139;;37899:419;;;:::o;38324:222::-;38417:4;38455:2;38444:9;38440:18;38432:26;;38468:71;38536:1;38525:9;38521:17;38512:6;38468:71;:::i;:::-;38324:222;;;;:::o;38552:129::-;38586:6;38613:20;;:::i;:::-;38603:30;;38642:33;38670:4;38662:6;38642:33;:::i;:::-;38552:129;;;:::o;38687:75::-;38720:6;38753:2;38747:9;38737:19;;38687:75;:::o;38768:307::-;38829:4;38919:18;38911:6;38908:30;38905:56;;;38941:18;;:::i;:::-;38905:56;38979:29;39001:6;38979:29;:::i;:::-;38971:37;;39063:4;39057;39053:15;39045:23;;38768:307;;;:::o;39081:308::-;39143:4;39233:18;39225:6;39222:30;39219:56;;;39255:18;;:::i;:::-;39219:56;39293:29;39315:6;39293:29;:::i;:::-;39285:37;;39377:4;39371;39367:15;39359:23;;39081:308;;;:::o;39395:141::-;39444:4;39467:3;39459:11;;39490:3;39487:1;39480:14;39524:4;39521:1;39511:18;39503:26;;39395:141;;;:::o;39542:98::-;39593:6;39627:5;39621:12;39611:22;;39542:98;;;:::o;39646:99::-;39698:6;39732:5;39726:12;39716:22;;39646:99;;;:::o;39751:168::-;39834:11;39868:6;39863:3;39856:19;39908:4;39903:3;39899:14;39884:29;;39751:168;;;;:::o;39925:169::-;40009:11;40043:6;40038:3;40031:19;40083:4;40078:3;40074:14;40059:29;;39925:169;;;;:::o;40100:148::-;40202:11;40239:3;40224:18;;40100:148;;;;:::o;40254:273::-;40294:3;40313:20;40331:1;40313:20;:::i;:::-;40308:25;;40347:20;40365:1;40347:20;:::i;:::-;40342:25;;40469:1;40433:34;40429:42;40426:1;40423:49;40420:75;;;40475:18;;:::i;:::-;40420:75;40519:1;40516;40512:9;40505:16;;40254:273;;;;:::o;40533:305::-;40573:3;40592:20;40610:1;40592:20;:::i;:::-;40587:25;;40626:20;40644:1;40626:20;:::i;:::-;40621:25;;40780:1;40712:66;40708:74;40705:1;40702:81;40699:107;;;40786:18;;:::i;:::-;40699:107;40830:1;40827;40823:9;40816:16;;40533:305;;;;:::o;40844:185::-;40884:1;40901:20;40919:1;40901:20;:::i;:::-;40896:25;;40935:20;40953:1;40935:20;:::i;:::-;40930:25;;40974:1;40964:35;;40979:18;;:::i;:::-;40964:35;41021:1;41018;41014:9;41009:14;;40844:185;;;;:::o;41035:348::-;41075:7;41098:20;41116:1;41098:20;:::i;:::-;41093:25;;41132:20;41150:1;41132:20;:::i;:::-;41127:25;;41320:1;41252:66;41248:74;41245:1;41242:81;41237:1;41230:9;41223:17;41219:105;41216:131;;;41327:18;;:::i;:::-;41216:131;41375:1;41372;41368:9;41357:20;;41035:348;;;;:::o;41389:191::-;41429:4;41449:20;41467:1;41449:20;:::i;:::-;41444:25;;41483:20;41501:1;41483:20;:::i;:::-;41478:25;;41522:1;41519;41516:8;41513:34;;;41527:18;;:::i;:::-;41513:34;41572:1;41569;41565:9;41557:17;;41389:191;;;;:::o;41586:::-;41626:4;41646:20;41664:1;41646:20;:::i;:::-;41641:25;;41680:20;41698:1;41680:20;:::i;:::-;41675:25;;41719:1;41716;41713:8;41710:34;;;41724:18;;:::i;:::-;41710:34;41769:1;41766;41762:9;41754:17;;41586:191;;;;:::o;41783:96::-;41820:7;41849:24;41867:5;41849:24;:::i;:::-;41838:35;;41783:96;;;:::o;41885:90::-;41919:7;41962:5;41955:13;41948:21;41937:32;;41885:90;;;:::o;41981:149::-;42017:7;42057:66;42050:5;42046:78;42035:89;;41981:149;;;:::o;42136:110::-;42187:7;42216:24;42234:5;42216:24;:::i;:::-;42205:35;;42136:110;;;:::o;42252:125::-;42318:7;42347:24;42365:5;42347:24;:::i;:::-;42336:35;;42252:125;;;:::o;42383:118::-;42420:7;42460:34;42453:5;42449:46;42438:57;;42383:118;;;:::o;42507:126::-;42544:7;42584:42;42577:5;42573:54;42562:65;;42507:126;;;:::o;42639:77::-;42676:7;42705:5;42694:16;;42639:77;;;:::o;42722:154::-;42806:6;42801:3;42796;42783:30;42868:1;42859:6;42854:3;42850:16;42843:27;42722:154;;;:::o;42882:307::-;42950:1;42960:113;42974:6;42971:1;42968:13;42960:113;;;43059:1;43054:3;43050:11;43044:18;43040:1;43035:3;43031:11;43024:39;42996:2;42993:1;42989:10;42984:15;;42960:113;;;43091:6;43088:1;43085:13;43082:101;;;43171:1;43162:6;43157:3;43153:16;43146:27;43082:101;42931:258;42882:307;;;:::o;43195:171::-;43234:3;43257:24;43275:5;43257:24;:::i;:::-;43248:33;;43303:4;43296:5;43293:15;43290:41;;;43311:18;;:::i;:::-;43290:41;43358:1;43351:5;43347:13;43340:20;;43195:171;;;:::o;43372:320::-;43416:6;43453:1;43447:4;43443:12;43433:22;;43500:1;43494:4;43490:12;43521:18;43511:81;;43577:4;43569:6;43565:17;43555:27;;43511:81;43639:2;43631:6;43628:14;43608:18;43605:38;43602:84;;;43658:18;;:::i;:::-;43602:84;43423:269;43372:320;;;:::o;43698:281::-;43781:27;43803:4;43781:27;:::i;:::-;43773:6;43769:40;43911:6;43899:10;43896:22;43875:18;43863:10;43860:34;43857:62;43854:88;;;43922:18;;:::i;:::-;43854:88;43962:10;43958:2;43951:22;43741:238;43698:281;;:::o;43985:233::-;44024:3;44047:24;44065:5;44047:24;:::i;:::-;44038:33;;44093:66;44086:5;44083:77;44080:103;;;44163:18;;:::i;:::-;44080:103;44210:1;44203:5;44199:13;44192:20;;43985:233;;;:::o;44224:176::-;44256:1;44273:20;44291:1;44273:20;:::i;:::-;44268:25;;44307:20;44325:1;44307:20;:::i;:::-;44302:25;;44346:1;44336:35;;44351:18;;:::i;:::-;44336:35;44392:1;44389;44385:9;44380:14;;44224:176;;;;:::o;44406:180::-;44454:77;44451:1;44444:88;44551:4;44548:1;44541:15;44575:4;44572:1;44565:15;44592:180;44640:77;44637:1;44630:88;44737:4;44734:1;44727:15;44761:4;44758:1;44751:15;44778:180;44826:77;44823:1;44816:88;44923:4;44920:1;44913:15;44947:4;44944:1;44937:15;44964:180;45012:77;45009:1;45002:88;45109:4;45106:1;45099:15;45133:4;45130:1;45123:15;45150:180;45198:77;45195:1;45188:88;45295:4;45292:1;45285:15;45319:4;45316:1;45309:15;45336:117;45445:1;45442;45435:12;45459:117;45568:1;45565;45558:12;45582:117;45691:1;45688;45681:12;45705:117;45814:1;45811;45804:12;45828:102;45869:6;45920:2;45916:7;45911:2;45904:5;45900:14;45896:28;45886:38;;45828:102;;;:::o;45936:221::-;46076:34;46072:1;46064:6;46060:14;46053:58;46145:4;46140:2;46132:6;46128:15;46121:29;45936:221;:::o;46163:225::-;46303:34;46299:1;46291:6;46287:14;46280:58;46372:8;46367:2;46359:6;46355:15;46348:33;46163:225;:::o;46394:229::-;46534:34;46530:1;46522:6;46518:14;46511:58;46603:12;46598:2;46590:6;46586:15;46579:37;46394:229;:::o;46629:222::-;46769:34;46765:1;46757:6;46753:14;46746:58;46838:5;46833:2;46825:6;46821:15;46814:30;46629:222;:::o;46857:221::-;46997:34;46993:1;46985:6;46981:14;46974:58;47066:4;47061:2;47053:6;47049:15;47042:29;46857:221;:::o;47084:224::-;47224:34;47220:1;47212:6;47208:14;47201:58;47293:7;47288:2;47280:6;47276:15;47269:32;47084:224;:::o;47314:236::-;47454:34;47450:1;47442:6;47438:14;47431:58;47523:19;47518:2;47510:6;47506:15;47499:44;47314:236;:::o;47556:221::-;47696:34;47692:1;47684:6;47680:14;47673:58;47765:4;47760:2;47752:6;47748:15;47741:29;47556:221;:::o;47783:167::-;47923:19;47919:1;47911:6;47907:14;47900:43;47783:167;:::o;47956:244::-;48096:34;48092:1;48084:6;48080:14;48073:58;48165:27;48160:2;48152:6;48148:15;48141:52;47956:244;:::o;48206:230::-;48346:34;48342:1;48334:6;48330:14;48323:58;48415:13;48410:2;48402:6;48398:15;48391:38;48206:230;:::o;48442:225::-;48582:34;48578:1;48570:6;48566:14;48559:58;48651:8;48646:2;48638:6;48634:15;48627:33;48442:225;:::o;48673:155::-;48813:7;48809:1;48801:6;48797:14;48790:31;48673:155;:::o;48834:182::-;48974:34;48970:1;48962:6;48958:14;48951:58;48834:182;:::o;49022:176::-;49162:28;49158:1;49150:6;49146:14;49139:52;49022:176;:::o;49204:237::-;49344:34;49340:1;49332:6;49328:14;49321:58;49413:20;49408:2;49400:6;49396:15;49389:45;49204:237;:::o;49447:221::-;49587:34;49583:1;49575:6;49571:14;49564:58;49656:4;49651:2;49643:6;49639:15;49632:29;49447:221;:::o;49674:238::-;49814:34;49810:1;49802:6;49798:14;49791:58;49883:21;49878:2;49870:6;49866:15;49859:46;49674:238;:::o;49918:179::-;50058:31;50054:1;50046:6;50042:14;50035:55;49918:179;:::o;50103:178::-;50243:30;50239:1;50231:6;50227:14;50220:54;50103:178;:::o;50287:220::-;50427:34;50423:1;50415:6;50411:14;50404:58;50496:3;50491:2;50483:6;50479:15;50472:28;50287:220;:::o;50513:178::-;50653:30;50649:1;50641:6;50637:14;50630:54;50513:178;:::o;50697:174::-;50837:26;50833:1;50825:6;50821:14;50814:50;50697:174;:::o;50877:233::-;51017:34;51013:1;51005:6;51001:14;50994:58;51086:16;51081:2;51073:6;51069:15;51062:41;50877:233;:::o;51116:181::-;51256:33;51252:1;51244:6;51240:14;51233:57;51116:181;:::o;51303:234::-;51443:34;51439:1;51431:6;51427:14;51420:58;51512:17;51507:2;51499:6;51495:15;51488:42;51303:234;:::o;51543:173::-;51683:25;51679:1;51671:6;51667:14;51660:49;51543:173;:::o;51722:232::-;51862:34;51858:1;51850:6;51846:14;51839:58;51931:15;51926:2;51918:6;51914:15;51907:40;51722:232;:::o;51960:221::-;52100:34;52096:1;52088:6;52084:14;52077:58;52169:4;52164:2;52156:6;52152:15;52145:29;51960:221;:::o;52187:151::-;52327:3;52323:1;52315:6;52311:14;52304:27;52187:151;:::o;52344:122::-;52417:24;52435:5;52417:24;:::i;:::-;52410:5;52407:35;52397:63;;52456:1;52453;52446:12;52397:63;52344:122;:::o;52472:116::-;52542:21;52557:5;52542:21;:::i;:::-;52535:5;52532:32;52522:60;;52578:1;52575;52568:12;52522:60;52472:116;:::o;52594:120::-;52666:23;52683:5;52666:23;:::i;:::-;52659:5;52656:34;52646:62;;52704:1;52701;52694:12;52646:62;52594:120;:::o;52720:150::-;52807:38;52839:5;52807:38;:::i;:::-;52800:5;52797:49;52787:77;;52860:1;52857;52850:12;52787:77;52720:150;:::o;52876:180::-;52978:53;53025:5;52978:53;:::i;:::-;52971:5;52968:64;52958:92;;53046:1;53043;53036:12;52958:92;52876:180;:::o;53062:122::-;53135:24;53153:5;53135:24;:::i;:::-;53128:5;53125:35;53115:63;;53174:1;53171;53164:12;53115:63;53062:122;:::o
Swarm Source
ipfs://566ee9bd320924c9b050cae1c4ab80bdef5b680c485b4c9131e2e51d2b987547
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.