ERC-721
Overview
Max Total Supply
0 LIFE
Holders
10
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Lifeforms2
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-03-29 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <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/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <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/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity >=0.6.2 <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/IERC721Receiver.sol pragma solidity >=0.6.0 <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/introspection/ERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity >=0.6.2 <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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: contracts/EIP712Base.sol pragma solidity >=0.6.0 <0.8.0; /** * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/Initializable.sol */ contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } /** * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/EIP712Base.sol */ contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contractsa that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public pure returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // File: contracts/NativeMetaTransaction.sol pragma solidity >=0.6.0 <0.8.0; //import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; /** * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/NativeMetaTransaction.sol */ contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, msg.sender, functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File: contracts/ContextMixin.sol pragma solidity >=0.6.0 <0.8.0; /** * https://github.com/maticnetwork/pos-portal/blob/master/contracts/common/ContextMixin.sol */ abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = msg.sender; } return sender; } } // File: contracts/Lifeforms2.sol pragma solidity ^0.7.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract Lifeforms2 is Context, ERC165, IERC721, IERC721Metadata, Ownable, ContextMixin, NativeMetaTransaction { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; // Mapping from token ID to age mapping (uint256 => uint) private _tokenBirth; // Mapping from token ID to duration of this ownership period mapping (uint256 => uint) private _tokenOwnerBeginning; // Mapping from token ID to blockhash at birth mapping (uint256 => bytes32) public _seed; uint256 public maxDuration; uint256 public price; string public contractURI; bool public isOpen; address public gravedigger; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_, uint256 _maxDuration, uint256 price_) Ownable() { _name = name_; _symbol = symbol_; maxDuration = _maxDuration; price = price_; _initializeEIP712(name_); // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } modifier onlyGravedigger() { require(msg.sender == gravedigger, "Must be gravedigger"); _; } function setPrice(uint256 price_) public onlyOwner { price = price_; } function setGravedigger(address gravedigger_) public onlyOwner { gravedigger = gravedigger_; } function setDuration(uint256 duration_) public onlyOwner { maxDuration = duration_; } function setBaseURI(string memory baseURI_) public onlyOwner { _setBaseURI(baseURI_); } function setContractURI(string memory contractURI_) public onlyOwner { contractURI = contractURI_; } function setIsOpen(bool isOpen_) public onlyOwner { isOpen = isOpen_; } function withdraw() public onlyOwner { bool sent = payable(owner()).send(address(this).balance); require(sent, "Failed to send Ether"); } function isDead(uint256 tokenId) public view returns (bool) { // lifeform was never born if (!_exists(tokenId)) { return false; } // lifeform was not transfered in time, and is dead if (block.timestamp - _tokenOwnerBeginning[tokenId] > maxDuration) { return true; } // lifeform is alive currently return false; } function isAlive(uint256 tokenId) public view returns (bool) { return (_exists(tokenId) && !isDead(tokenId)); } function _birth(uint256 tokenId) internal { _tokenBirth[tokenId] = block.timestamp; _tokenOwnerBeginning[tokenId] = block.timestamp; _seed[tokenId] = blockhash(block.number-1); //_setTokenURI(tokenId, uint2str(tokenId)); } function birth(address to, uint256 tokenId) public payable { require(msg.value >= price, "Insufficient funds"); require(isOpen, "Not currently open to the public"); _mint(to, tokenId); _birth(tokenId); } function safeBirth(address to, uint256 tokenId) public payable { require(msg.value >= price, "Insufficient funds"); require(isOpen, "Not currently open to the public"); _safeMint(to, tokenId); _birth(tokenId); } function ownerBirth(address to, uint256 tokenId) public onlyOwner { _mint(to, tokenId); _birth(tokenId); } function gravediggerCleanup(uint256 tokenId) public onlyGravedigger { require(isDead(tokenId), "Can only clean up dead lifeforms"); _burn(tokenId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { uint count = 0; for (uint i = 0; i < _holderTokens[owner].length(); i++) { if (isAlive(uint256(_holderTokens[owner]._inner._values[i]))) { count += 1; } } return count; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { if (isAlive(tokenId)) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } else { return address(0); } } function _ownerOf(uint256 tokenId) internal view returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @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"); if (!isAlive(tokenId)) { return ""; } string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } function getSeed(uint256 tokenId) public view virtual returns (bytes32) { if (isAlive(tokenId)) { return _seed[tokenId]; } else { return bytes32(""); } } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } function tokenOwnerBeginning(uint256 tokenId) public view virtual returns (uint256) { if (isAlive(tokenId)) { return _tokenOwnerBeginning[tokenId]; } else { return 0; } } function tokenBirth(uint256 tokenId) public view virtual returns (uint256) { if (isAlive(tokenId)) { return _tokenBirth[tokenId]; } else { return 0; } } function getLifeform(uint256 tokenId) public view virtual returns (string memory, address, uint256, uint256, bytes32) { if (isAlive(tokenId)) { return (tokenURI(tokenId), ownerOf(tokenId), _tokenBirth[tokenId], _tokenOwnerBeginning[tokenId], _seed[tokenId]); } else { return ("", address(0), 0, 0, bytes32(0)); } } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address payable sender) { return ContextMixin.msgSender(); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = Lifeforms2.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || Lifeforms2.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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) { if (operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) { return true; } return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { if (!isDead(tokenId)) { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); if (from != to) { _tokenOwnerBeginning[tokenId] = block.timestamp; } } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { if (!isDead(tokenId)) { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); if (from != to) { _tokenOwnerBeginning[tokenId] = block.timestamp; } } } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = Lifeforms2.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || Lifeforms2.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = Lifeforms2._ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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) internal virtual { require(Lifeforms2.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(Lifeforms2.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"_maxDuration","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_seed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"birth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLifeform","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gravedigger","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"gravediggerCleanup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isAlive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isDead","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerBirth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeBirth","outputs":[],"stateMutability":"payable","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":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"duration_","type":"uint256"}],"name":"setDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gravedigger_","type":"address"}],"name":"setGravedigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpen_","type":"bool"}],"name":"setIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenBirth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenOwnerBeginning","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":[{"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"}]
Contract Creation Code
60806040526000600160146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162005a4a38038062005a4a833981810160405260808110156200005257600080fd5b81019080805160405193929190846401000000008211156200007357600080fd5b838201915060208201858111156200008a57600080fd5b8251866001820283011164010000000082111715620000a857600080fd5b8083526020830192505050908051906020019080838360005b83811015620000de578082015181840152602081019050620000c1565b50505050905090810190601f1680156200010c5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013057600080fd5b838201915060208201858111156200014757600080fd5b82518660018202830111640100000000821117156200016557600080fd5b8083526020830192505050908051906020019080838360005b838110156200019b5780820151818401526020810190506200017e565b50505050905090810190601f168015620001c95780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190505050620001ff6301ffc9a760e01b6200035360201b60201c565b6000620002116200045c60201b60201c565b905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508360099080519060200190620002c8929190620006c5565b5082600a9080519060200190620002e1929190620006c5565b50816010819055508060118190555062000301846200047860201b60201c565b620003196380ac58cd60e01b6200035360201b60201c565b62000331635b5e139f60e01b6200035360201b60201c565b6200034963780e9d6360e01b6200035360201b60201c565b505050506200077b565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620003f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000620004736200052a60201b620036fb1760201c565b905090565b600160149054906101000a900460ff1615620004fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f616c726561647920696e6974656400000000000000000000000000000000000081525060200191505060405180910390fd5b6200050d81620005dd60201b60201c565b60018060146101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415620005d657600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050620005da565b3390505b90565b6040518060800160405280604f8152602001620059fb604f91398051906020012081805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001203062000654620006b860201b60201c565b60001b604051602001808681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001955050505050506040516020818303038152906040528051906020012060028190555050565b6000804690508091505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620006fd576000855562000749565b82601f106200071857805160ff191683800117855562000749565b8280016001018555821562000749579182015b82811115620007485782518255916020019190600101906200072b565b5b5090506200075891906200075c565b5090565b5b80821115620007775760008160009055506001016200075d565b5090565b615270806200078b6000396000f3fe6080604052600436106102725760003560e01c80636db5c8fd1161014f578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d485146112df578063e985e9c51461136f578063f2fde38b146113f6578063f444ee5514611447578063f6be71d114611495578063fdb3ec76146114d057610272565b8063b88d4fde14610fe7578063c87b56dd146110f9578063cf21b99f146111ad578063d84b2361146111fe578063e07aa1a61461124f578063e0d4ea371461129057610272565b80638da5cb5b116101135780638da5cb5b14610d8b57806391b7f5ed14610dcc578063938e3d7b14610e0757806395d89b4114610ecf578063a035b1fe14610f5f578063a22cb46514610f8a57610272565b80636db5c8fd14610c5b57806370a0823114610c86578063715018a614610ceb578063852e077314610d0257806387336cd214610d5057610272565b80632dfd8ffe116101e857806347535d7b116101ac57806347535d7b146109c757806351e8b548146109f457806355f804b314610a4357806358154ff514610b0b5780636352211e14610b665780636c0360eb14610bcb57610272565b80632dfd8ffe146107d35780633408e470146108245780633ccfd60b1461084f5780633f01d40d1461086657806342842e0e1461094c57610272565b80630c53c51c1161023a5780630c53c51c146104745780630f7e5970146105e9578063189710991461067957806320379ee5146106c857806323b872dd146106f35780632d0335ab1461076e57610272565b806301ffc9a71461027757806306fdde03146102e7578063081812fc14610377578063085a10cf146103dc578063095ea7b314610419575b600080fd5b34801561028357600080fd5b506102cf6004803603602081101561029a57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061151f565b60405180821515815260200191505060405180910390f35b3480156102f357600080fd5b506102fc611586565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033c578082015181840152602081019050610321565b50505050905090810190601f1680156103695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038357600080fd5b506103b06004803603602081101561039a57600080fd5b8101908080359060200190929190505050611628565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e857600080fd5b50610417600480360360208110156103ff57600080fd5b810190808035151590602001909291905050506116c3565b005b34801561042557600080fd5b506104726004803603604081101561043c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061178f565b005b61056e600480360360a081101561048a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104c757600080fd5b8201836020820111156104d957600080fd5b803590602001918460018302840111640100000000831117156104fb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803560ff1690602001909291905050506118d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105ae578082015181840152602081019050610593565b50505050905090810190601f1680156105db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105f557600080fd5b506105fe611ce0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063e578082015181840152602081019050610623565b50505050905090810190601f16801561066b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561068557600080fd5b506106b26004803603602081101561069c57600080fd5b8101908080359060200190929190505050611d19565b6040518082815260200191505060405180910390f35b3480156106d457600080fd5b506106dd611d31565b6040518082815260200191505060405180910390f35b3480156106ff57600080fd5b5061076c6004803603606081101561071657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d3b565b005b34801561077a57600080fd5b506107bd6004803603602081101561079157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e0b565b6040518082815260200191505060405180910390f35b3480156107df57600080fd5b5061080c600480360360208110156107f657600080fd5b8101908080359060200190929190505050611e54565b60405180821515815260200191505060405180910390f35b34801561083057600080fd5b50610839611e9e565b6040518082815260200191505060405180910390f35b34801561085b57600080fd5b50610864611eab565b005b34801561087257600080fd5b5061089f6004803603602081101561088957600080fd5b8101908080359060200190929190505050612010565b60405180806020018673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001838152602001828103825287818151815260200191508051906020019080838360005b8381101561090d5780820151818401526020810190506108f2565b50505050905090810190601f16801561093a5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b34801561095857600080fd5b506109c56004803603606081101561096f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120b4565b005b3480156109d357600080fd5b506109dc6120d4565b60405180821515815260200191505060405180910390f35b348015610a0057600080fd5b50610a2d60048036036020811015610a1757600080fd5b81019080803590602001909291905050506120e7565b6040518082815260200191505060405180910390f35b348015610a4f57600080fd5b50610b0960048036036020811015610a6657600080fd5b8101908080359060200190640100000000811115610a8357600080fd5b820183602082011115610a9557600080fd5b80359060200191846001830284011164010000000083111715610ab757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061211c565b005b348015610b1757600080fd5b50610b6460048036036040811015610b2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121d7565b005b348015610b7257600080fd5b50610b9f60048036036020811015610b8957600080fd5b810190808035906020019092919050505061229d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bd757600080fd5b50610be06122ec565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c20578082015181840152602081019050610c05565b50505050905090810190601f168015610c4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6757600080fd5b50610c7061238e565b6040518082815260200191505060405180910390f35b348015610c9257600080fd5b50610cd560048036036020811015610ca957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612394565b6040518082815260200191505060405180910390f35b348015610cf757600080fd5b50610d00612475565b005b610d4e60048036036040811015610d1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125e5565b005b348015610d5c57600080fd5b50610d8960048036036020811015610d7357600080fd5b81019080803590602001909291905050506126f6565b005b348015610d9757600080fd5b50610da0612840565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610dd857600080fd5b50610e0560048036036020811015610def57600080fd5b810190808035906020019092919050505061286a565b005b348015610e1357600080fd5b50610ecd60048036036020811015610e2a57600080fd5b8101908080359060200190640100000000811115610e4757600080fd5b820183602082011115610e5957600080fd5b80359060200191846001830284011164010000000083111715610e7b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612923565b005b348015610edb57600080fd5b50610ee46129ec565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f24578082015181840152602081019050610f09565b50505050905090810190601f168015610f515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f6b57600080fd5b50610f74612a8e565b6040518082815260200191505060405180910390f35b348015610f9657600080fd5b50610fe560048036036040811015610fad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612a94565b005b348015610ff357600080fd5b506110f76004803603608081101561100a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561107157600080fd5b82018360208201111561108357600080fd5b803590602001918460018302840111640100000000831117156110a557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c4a565b005b34801561110557600080fd5b506111326004803603602081101561111c57600080fd5b8101908080359060200190929190505050612d1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611172578082015181840152602081019050611157565b50505050905090810190601f16801561119f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111b957600080fd5b506111fc600480360360208110156111d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613011565b005b34801561120a57600080fd5b506112376004803603602081101561122157600080fd5b8101908080359060200190929190505050613104565b60405180821515815260200191505060405180910390f35b34801561125b57600080fd5b50611264613128565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561129c57600080fd5b506112c9600480360360208110156112b357600080fd5b810190808035906020019092919050505061314e565b6040518082815260200191505060405180910390f35b3480156112eb57600080fd5b506112f4613183565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611334578082015181840152602081019050611319565b50505050905090810190601f1680156113615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561137b57600080fd5b506113de6004803603604081101561139257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613221565b60405180821515815260200191505060405180910390f35b34801561140257600080fd5b506114456004803603602081101561141957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613307565b005b6114936004803603604081101561145d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134fc565b005b3480156114a157600080fd5b506114ce600480360360208110156114b857600080fd5b810190808035906020019092919050505061360d565b005b3480156114dc57600080fd5b50611509600480360360208110156114f357600080fd5b81019080803590602001909291905050506136c6565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b5050505050905090565b6000611633826137ac565b611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615144602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6116cb6137c9565b73ffffffffffffffffffffffffffffffffffffffff166116e9612840565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600061179a8261229d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611821576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151e96021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166118406137c9565b73ffffffffffffffffffffffffffffffffffffffff16148061186f575061186e816118696137c9565b613221565b5b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150e36038913960400191505060405180910390fd5b6118ce83836137d8565b505050565b606060006040518060600160405280600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781525090506119568782878787613891565b6119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151996021913960400191505060405180910390fd5b6119fe6001600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c590919063ffffffff16565b600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611add578082015181840152602081019050611ac2565b50505050905090810190601f168015611b0a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a6040516020018083805190602001908083835b60208310611b6b5780518252602082019150602081019050602083039250611b48565b6001836020036101000a0380198251168184511680821785525050505050509050018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b60208310611bf25780518252602082019150602081019050602083039250611bcf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611c54576040519150601f19603f3d011682016040523d82523d6000602084013e611c59565b606091505b509150915081611cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000081525060200191505060405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600f6020528060005260406000206000915090505481565b6000600254905090565b611d4481611e54565b611e0657611d59611d536137c9565b82613a4d565b611dae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061520a6031913960400191505060405180910390fd5b611db9838383613b41565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e055742600e6000838152602001908152602001600020819055505b5b505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611e5f826137ac565b611e6c5760009050611e99565b601054600e60008481526020019081526020016000205442031115611e945760019050611e99565b600090505b919050565b6000804690508091505090565b611eb36137c9565b73ffffffffffffffffffffffffffffffffffffffff16611ed1612840565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611f64612840565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4661696c656420746f2073656e6420457468657200000000000000000000000081525060200191505060405180910390fd5b50565b606060008060008061202186613104565b156120835761202f86612d1c565b6120388761229d565b600d600089815260200190815260200160002054600e60008a815260200190815260200160002054600f60008b815260200190815260200160002054945094509450945094506120ab565b60008060008060001b6040518060200160405280600081525093929190945094509450945094505b91939590929450565b6120cf83838360405180602001604052806000815250612c4a565b505050565b601360009054906101000a900460ff1681565b60006120f282613104565b1561211257600d6000838152602001908152602001600020549050612117565b600090505b919050565b6121246137c9565b73ffffffffffffffffffffffffffffffffffffffff16612142612840565b73ffffffffffffffffffffffffffffffffffffffff16146121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6121d481613d84565b50565b6121df6137c9565b73ffffffffffffffffffffffffffffffffffffffff166121fd612840565b73ffffffffffffffffffffffffffffffffffffffff1614612286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6122908282613d9e565b61229981613f92565b5050565b60006122a882613104565b156122e2576122db8260405180606001604052806029815260200161511b602991396005613fe19092919063ffffffff16565b90506122e7565b600090505b919050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b60105481565b6000806000905060005b6123e5600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614000565b81101561246b57612452600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600001828154811061243f57fe5b906000526020600020015460001c613104565b1561245e576001820191505b808060010191505061239e565b5080915050919050565b61247d6137c9565b73ffffffffffffffffffffffffffffffffffffffff1661249b612840565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115434101561265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b601360009054906101000a900460ff166126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4e6f742063757272656e746c79206f70656e20746f20746865207075626c696381525060200191505060405180910390fd5b6126e98282614015565b6126f281613f92565b5050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d7573742062652067726176656469676765720000000000000000000000000081525060200191505060405180910390fd5b6127c281611e54565b612834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616e206f6e6c7920636c65616e2075702064656164206c696665666f726d7381525060200191505060405180910390fd5b61283d81614033565b50565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6128726137c9565b73ffffffffffffffffffffffffffffffffffffffff16612890612840565b73ffffffffffffffffffffffffffffffffffffffff1614612919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b61292b6137c9565b73ffffffffffffffffffffffffffffffffffffffff16612949612840565b73ffffffffffffffffffffffffffffffffffffffff16146129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601290805190602001906129e8929190614eb9565b5050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a845780601f10612a5957610100808354040283529160200191612a84565b820191906000526020600020905b815481529060010190602001808311612a6757829003601f168201915b5050505050905090565b60115481565b612a9c6137c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060086000612b4a6137c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612bf76137c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612c5382611e54565b612d1657612c68612c626137c9565b83613a4d565b612cbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061520a6031913960400191505060405180910390fd5b612cc98484848461416d565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612d155742600e6000848152602001908152602001600020819055505b5b50505050565b6060612d27826137ac565b612d7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806151ba602f913960400191505060405180910390fd5b612d8582613104565b612da05760405180602001604052806000815250905061300c565b6000600b60008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612e495780601f10612e1e57610100808354040283529160200191612e49565b820191906000526020600020905b815481529060010190602001808311612e2c57829003601f168201915b505050505090506000612e5a6122ec565b9050600081511415612e7057819250505061300c565b600082511115612f415780826040516020018083805190602001908083835b60208310612eb25780518252602082019150602081019050602083039250612e8f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612f035780518252602082019150602081019050602083039250612ee0565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061300c565b80612f4b856141df565b6040516020018083805190602001908083835b60208310612f815780518252602082019150602081019050602083039250612f5e565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612fd25780518252602082019150602081019050602083039250612faf565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6130196137c9565b73ffffffffffffffffffffffffffffffffffffffff16613037612840565b73ffffffffffffffffffffffffffffffffffffffff16146130c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061310f826137ac565b8015613121575061311f82611e54565b155b9050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061315982613104565b1561317957600f600083815260200190815260200160002054905061317e565b600090505b919050565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132195780601f106131ee57610100808354040283529160200191613219565b820191906000526020600020905b8154815290600101906020018083116131fc57829003601f168201915b505050505081565b60007358807bad0b376efc12f5ad86aac70e78ed67deae73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132745760019050613301565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b61330f6137c9565b73ffffffffffffffffffffffffffffffffffffffff1661332d612840565b73ffffffffffffffffffffffffffffffffffffffff16146133b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150226026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601154341015613574576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b601360009054906101000a900460ff166135f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4e6f742063757272656e746c79206f70656e20746f20746865207075626c696381525060200191505060405180910390fd5b6136008282613d9e565b61360981613f92565b5050565b6136156137c9565b73ffffffffffffffffffffffffffffffffffffffff16613633612840565b73ffffffffffffffffffffffffffffffffffffffff16146136bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b60006136d182613104565b156136f157600e60008381526020019081526020016000205490506136f6565b600090505b919050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156137a557600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff8183015116925050506137a9565b3390505b90565b60006137c282600561432690919063ffffffff16565b9050919050565b60006137d36136fb565b905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661384b8361229d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600161392b61392687614340565b6143d0565b83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613982573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600080828401905083811015613a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000613a58826137ac565b613aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615092602c913960400191505060405180910390fd5b6000613ab88361229d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613b2757508373ffffffffffffffffffffffffffffffffffffffff16613b0f84611628565b73ffffffffffffffffffffffffffffffffffffffff16145b80613b385750613b378185613221565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613b618261229d565b73ffffffffffffffffffffffffffffffffffffffff1614613bcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151706029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150486024913960400191505060405180910390fd5b613c5e838383614437565b613c696000826137d8565b613cba81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061443c90919063ffffffff16565b50613d0c81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061445690919063ffffffff16565b50613d23818360056144709092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600c9080519060200190613d9a929190614eb9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613e4a816137ac565b15613ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613ec960008383614437565b613f1a81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061445690919063ffffffff16565b50613f31818360056144709092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b42600d60008381526020019081526020016000208190555042600e6000838152602001908152602001600020819055506001430340600f60008381526020019081526020016000208190555050565b6000613ff4846000018460001b846144a5565b60001c90509392505050565b600061400e8260000161459b565b9050919050565b61402f8282604051806020016040528060008152506145ac565b5050565b600061403e8261461d565b905061404c81600084614437565b6140576000836137d8565b6000600b6000848152602001908152602001600020805460018160011615610100020316600290049050146140a657600b600083815260200190815260200160002060006140a59190614f47565b5b6140f782600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061443c90919063ffffffff16565b5061410c82600561465490919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b614178848484613b41565b6141848484848461466e565b6141d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fad6032913960400191505060405180910390fd5b50505050565b60606000821415614227576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614321565b600082905060005b60008214614251578080600101915050600a828161424957fe5b04915061422f565b60008167ffffffffffffffff8111801561426a57600080fd5b506040519080825280601f01601f19166020018201604052801561429d5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461431957600a84816142be57fe5b0660300160f81b828280600190039350815181106142d857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161431157fe5b0493506142ac565b819450505050505b919050565b6000614338836000018360001b614887565b905092915050565b6000604051806080016040528060438152602001614fdf604391398051906020012082600001518360200151846040015180519060200120604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b60006143da611d31565b8260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b505050565b600061444e836000018360001b6148aa565b905092915050565b6000614468836000018360001b614992565b905092915050565b600061449c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614a02565b90509392505050565b6000808460010160008581526020019081526020016000205490506000811415839061456c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614531578082015181840152602081019050614516565b50505050905090810190601f16801561455e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061457f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6145b68383613d9e565b6145c3600084848461466e565b614618576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fad6032913960400191505060405180910390fd5b505050565b600061464d8260405180606001604052806029815260200161511b602991396005613fe19092919063ffffffff16565b9050919050565b6000614666836000018360001b614ade565b905092915050565b600061468f8473ffffffffffffffffffffffffffffffffffffffff16614bf7565b61469c576001905061487f565b600061480663150b7a0260e01b6146b16137c9565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561473557808201518184015260208101905061471a565b50505050905090810190601f1680156147625780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fad603291398773ffffffffffffffffffffffffffffffffffffffff16614c0a9092919063ffffffff16565b9050600081806020019051602081101561481f57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461498657600060018203905060006001866000018054905003905060008660000182815481106148f557fe5b906000526020600020015490508087600001848154811061491257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061494a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061498c565b60009150505b92915050565b600061499e8383614c22565b6149f75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506149fc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614aa957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614ad7565b82856000016001830381548110614abc57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114614beb5760006001820390506000600186600001805490500390506000866000018281548110614b2957fe5b9060005260206000209060020201905080876000018481548110614b4957fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614b9c57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614bf1565b60009150505b92915050565b600080823b905060008111915050919050565b6060614c198484600085614c45565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061506c6026913960400191505060405180910390fd5b614ca985614bf7565b614d1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d6a5780518252602082019150602081019050602083039250614d47565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614dcc576040519150601f19603f3d011682016040523d82523d6000602084013e614dd1565b606091505b5091509150614de1828286614ded565b92505050949350505050565b60608315614dfd57829050614eb2565b600083511115614e105782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e77578082015181840152602081019050614e5c565b50505050905090810190601f168015614ea45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614eef5760008555614f36565b82601f10614f0857805160ff1916838001178555614f36565b82800160010185558215614f36579182015b82811115614f35578251825591602001919060010190614f1a565b5b509050614f439190614f8f565b5090565b50805460018160011615610100020316600290046000825580601f10614f6d5750614f8c565b601f016020900490600052602060002090810190614f8b9190614f8f565b5b50565b5b80821115614fa8576000816000905550600101614f90565b509056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e5369676e657220616e64207369676e617475726520646f206e6f74206d617463684552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220539a42217923b0dcffd4b7be4e1e06b286d0bfba081f9e3f4ea363208b0d82df64736f6c63430007060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000002580000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000000000094c696665666f726d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49464500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80636db5c8fd1161014f578063b88d4fde116100c1578063e8a3d4851161007a578063e8a3d485146112df578063e985e9c51461136f578063f2fde38b146113f6578063f444ee5514611447578063f6be71d114611495578063fdb3ec76146114d057610272565b8063b88d4fde14610fe7578063c87b56dd146110f9578063cf21b99f146111ad578063d84b2361146111fe578063e07aa1a61461124f578063e0d4ea371461129057610272565b80638da5cb5b116101135780638da5cb5b14610d8b57806391b7f5ed14610dcc578063938e3d7b14610e0757806395d89b4114610ecf578063a035b1fe14610f5f578063a22cb46514610f8a57610272565b80636db5c8fd14610c5b57806370a0823114610c86578063715018a614610ceb578063852e077314610d0257806387336cd214610d5057610272565b80632dfd8ffe116101e857806347535d7b116101ac57806347535d7b146109c757806351e8b548146109f457806355f804b314610a4357806358154ff514610b0b5780636352211e14610b665780636c0360eb14610bcb57610272565b80632dfd8ffe146107d35780633408e470146108245780633ccfd60b1461084f5780633f01d40d1461086657806342842e0e1461094c57610272565b80630c53c51c1161023a5780630c53c51c146104745780630f7e5970146105e9578063189710991461067957806320379ee5146106c857806323b872dd146106f35780632d0335ab1461076e57610272565b806301ffc9a71461027757806306fdde03146102e7578063081812fc14610377578063085a10cf146103dc578063095ea7b314610419575b600080fd5b34801561028357600080fd5b506102cf6004803603602081101561029a57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061151f565b60405180821515815260200191505060405180910390f35b3480156102f357600080fd5b506102fc611586565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033c578082015181840152602081019050610321565b50505050905090810190601f1680156103695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038357600080fd5b506103b06004803603602081101561039a57600080fd5b8101908080359060200190929190505050611628565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103e857600080fd5b50610417600480360360208110156103ff57600080fd5b810190808035151590602001909291905050506116c3565b005b34801561042557600080fd5b506104726004803603604081101561043c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061178f565b005b61056e600480360360a081101561048a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104c757600080fd5b8201836020820111156104d957600080fd5b803590602001918460018302840111640100000000831117156104fb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019092919080359060200190929190803560ff1690602001909291905050506118d3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105ae578082015181840152602081019050610593565b50505050905090810190601f1680156105db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105f557600080fd5b506105fe611ce0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063e578082015181840152602081019050610623565b50505050905090810190601f16801561066b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561068557600080fd5b506106b26004803603602081101561069c57600080fd5b8101908080359060200190929190505050611d19565b6040518082815260200191505060405180910390f35b3480156106d457600080fd5b506106dd611d31565b6040518082815260200191505060405180910390f35b3480156106ff57600080fd5b5061076c6004803603606081101561071657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d3b565b005b34801561077a57600080fd5b506107bd6004803603602081101561079157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e0b565b6040518082815260200191505060405180910390f35b3480156107df57600080fd5b5061080c600480360360208110156107f657600080fd5b8101908080359060200190929190505050611e54565b60405180821515815260200191505060405180910390f35b34801561083057600080fd5b50610839611e9e565b6040518082815260200191505060405180910390f35b34801561085b57600080fd5b50610864611eab565b005b34801561087257600080fd5b5061089f6004803603602081101561088957600080fd5b8101908080359060200190929190505050612010565b60405180806020018673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001838152602001828103825287818151815260200191508051906020019080838360005b8381101561090d5780820151818401526020810190506108f2565b50505050905090810190601f16801561093a5780820380516001836020036101000a031916815260200191505b50965050505050505060405180910390f35b34801561095857600080fd5b506109c56004803603606081101561096f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120b4565b005b3480156109d357600080fd5b506109dc6120d4565b60405180821515815260200191505060405180910390f35b348015610a0057600080fd5b50610a2d60048036036020811015610a1757600080fd5b81019080803590602001909291905050506120e7565b6040518082815260200191505060405180910390f35b348015610a4f57600080fd5b50610b0960048036036020811015610a6657600080fd5b8101908080359060200190640100000000811115610a8357600080fd5b820183602082011115610a9557600080fd5b80359060200191846001830284011164010000000083111715610ab757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061211c565b005b348015610b1757600080fd5b50610b6460048036036040811015610b2e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121d7565b005b348015610b7257600080fd5b50610b9f60048036036020811015610b8957600080fd5b810190808035906020019092919050505061229d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bd757600080fd5b50610be06122ec565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c20578082015181840152602081019050610c05565b50505050905090810190601f168015610c4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6757600080fd5b50610c7061238e565b6040518082815260200191505060405180910390f35b348015610c9257600080fd5b50610cd560048036036020811015610ca957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612394565b6040518082815260200191505060405180910390f35b348015610cf757600080fd5b50610d00612475565b005b610d4e60048036036040811015610d1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125e5565b005b348015610d5c57600080fd5b50610d8960048036036020811015610d7357600080fd5b81019080803590602001909291905050506126f6565b005b348015610d9757600080fd5b50610da0612840565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610dd857600080fd5b50610e0560048036036020811015610def57600080fd5b810190808035906020019092919050505061286a565b005b348015610e1357600080fd5b50610ecd60048036036020811015610e2a57600080fd5b8101908080359060200190640100000000811115610e4757600080fd5b820183602082011115610e5957600080fd5b80359060200191846001830284011164010000000083111715610e7b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612923565b005b348015610edb57600080fd5b50610ee46129ec565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f24578082015181840152602081019050610f09565b50505050905090810190601f168015610f515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f6b57600080fd5b50610f74612a8e565b6040518082815260200191505060405180910390f35b348015610f9657600080fd5b50610fe560048036036040811015610fad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612a94565b005b348015610ff357600080fd5b506110f76004803603608081101561100a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561107157600080fd5b82018360208201111561108357600080fd5b803590602001918460018302840111640100000000831117156110a557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612c4a565b005b34801561110557600080fd5b506111326004803603602081101561111c57600080fd5b8101908080359060200190929190505050612d1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611172578082015181840152602081019050611157565b50505050905090810190601f16801561119f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111b957600080fd5b506111fc600480360360208110156111d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613011565b005b34801561120a57600080fd5b506112376004803603602081101561122157600080fd5b8101908080359060200190929190505050613104565b60405180821515815260200191505060405180910390f35b34801561125b57600080fd5b50611264613128565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561129c57600080fd5b506112c9600480360360208110156112b357600080fd5b810190808035906020019092919050505061314e565b6040518082815260200191505060405180910390f35b3480156112eb57600080fd5b506112f4613183565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611334578082015181840152602081019050611319565b50505050905090810190601f1680156113615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561137b57600080fd5b506113de6004803603604081101561139257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613221565b60405180821515815260200191505060405180910390f35b34801561140257600080fd5b506114456004803603602081101561141957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613307565b005b6114936004803603604081101561145d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134fc565b005b3480156114a157600080fd5b506114ce600480360360208110156114b857600080fd5b810190808035906020019092919050505061360d565b005b3480156114dc57600080fd5b50611509600480360360208110156114f357600080fd5b81019080803590602001909291905050506136c6565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b5050505050905090565b6000611633826137ac565b611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615144602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6116cb6137c9565b73ffffffffffffffffffffffffffffffffffffffff166116e9612840565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600061179a8261229d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611821576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151e96021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166118406137c9565b73ffffffffffffffffffffffffffffffffffffffff16148061186f575061186e816118696137c9565b613221565b5b6118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806150e36038913960400191505060405180910390fd5b6118ce83836137d8565b505050565b606060006040518060600160405280600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff1681526020018781525090506119568782878787613891565b6119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151996021913960400191505060405180910390fd5b6119fe6001600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c590919063ffffffff16565b600360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611add578082015181840152602081019050611ac2565b50505050905090810190601f168015611b0a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a6040516020018083805190602001908083835b60208310611b6b5780518252602082019150602081019050602083039250611b48565b6001836020036101000a0380198251168184511680821785525050505050509050018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b60208310611bf25780518252602082019150602081019050602083039250611bcf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611c54576040519150601f19603f3d011682016040523d82523d6000602084013e611c59565b606091505b509150915081611cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000081525060200191505060405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600f6020528060005260406000206000915090505481565b6000600254905090565b611d4481611e54565b611e0657611d59611d536137c9565b82613a4d565b611dae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061520a6031913960400191505060405180910390fd5b611db9838383613b41565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e055742600e6000838152602001908152602001600020819055505b5b505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000611e5f826137ac565b611e6c5760009050611e99565b601054600e60008481526020019081526020016000205442031115611e945760019050611e99565b600090505b919050565b6000804690508091505090565b611eb36137c9565b73ffffffffffffffffffffffffffffffffffffffff16611ed1612840565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611f64612840565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061200d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4661696c656420746f2073656e6420457468657200000000000000000000000081525060200191505060405180910390fd5b50565b606060008060008061202186613104565b156120835761202f86612d1c565b6120388761229d565b600d600089815260200190815260200160002054600e60008a815260200190815260200160002054600f60008b815260200190815260200160002054945094509450945094506120ab565b60008060008060001b6040518060200160405280600081525093929190945094509450945094505b91939590929450565b6120cf83838360405180602001604052806000815250612c4a565b505050565b601360009054906101000a900460ff1681565b60006120f282613104565b1561211257600d6000838152602001908152602001600020549050612117565b600090505b919050565b6121246137c9565b73ffffffffffffffffffffffffffffffffffffffff16612142612840565b73ffffffffffffffffffffffffffffffffffffffff16146121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6121d481613d84565b50565b6121df6137c9565b73ffffffffffffffffffffffffffffffffffffffff166121fd612840565b73ffffffffffffffffffffffffffffffffffffffff1614612286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6122908282613d9e565b61229981613f92565b5050565b60006122a882613104565b156122e2576122db8260405180606001604052806029815260200161511b602991396005613fe19092919063ffffffff16565b90506122e7565b600090505b919050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123845780601f1061235957610100808354040283529160200191612384565b820191906000526020600020905b81548152906001019060200180831161236757829003601f168201915b5050505050905090565b60105481565b6000806000905060005b6123e5600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614000565b81101561246b57612452600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600001828154811061243f57fe5b906000526020600020015460001c613104565b1561245e576001820191505b808060010191505061239e565b5080915050919050565b61247d6137c9565b73ffffffffffffffffffffffffffffffffffffffff1661249b612840565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115434101561265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b601360009054906101000a900460ff166126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4e6f742063757272656e746c79206f70656e20746f20746865207075626c696381525060200191505060405180910390fd5b6126e98282614015565b6126f281613f92565b5050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d7573742062652067726176656469676765720000000000000000000000000081525060200191505060405180910390fd5b6127c281611e54565b612834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616e206f6e6c7920636c65616e2075702064656164206c696665666f726d7381525060200191505060405180910390fd5b61283d81614033565b50565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6128726137c9565b73ffffffffffffffffffffffffffffffffffffffff16612890612840565b73ffffffffffffffffffffffffffffffffffffffff1614612919576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b61292b6137c9565b73ffffffffffffffffffffffffffffffffffffffff16612949612840565b73ffffffffffffffffffffffffffffffffffffffff16146129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601290805190602001906129e8929190614eb9565b5050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612a845780601f10612a5957610100808354040283529160200191612a84565b820191906000526020600020905b815481529060010190602001808311612a6757829003601f168201915b5050505050905090565b60115481565b612a9c6137c9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060086000612b4a6137c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612bf76137c9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612c5382611e54565b612d1657612c68612c626137c9565b83613a4d565b612cbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061520a6031913960400191505060405180910390fd5b612cc98484848461416d565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612d155742600e6000848152602001908152602001600020819055505b5b50505050565b6060612d27826137ac565b612d7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806151ba602f913960400191505060405180910390fd5b612d8582613104565b612da05760405180602001604052806000815250905061300c565b6000600b60008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612e495780601f10612e1e57610100808354040283529160200191612e49565b820191906000526020600020905b815481529060010190602001808311612e2c57829003601f168201915b505050505090506000612e5a6122ec565b9050600081511415612e7057819250505061300c565b600082511115612f415780826040516020018083805190602001908083835b60208310612eb25780518252602082019150602081019050602083039250612e8f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612f035780518252602082019150602081019050602083039250612ee0565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529250505061300c565b80612f4b856141df565b6040516020018083805190602001908083835b60208310612f815780518252602082019150602081019050602083039250612f5e565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612fd25780518252602082019150602081019050602083039250612faf565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6130196137c9565b73ffffffffffffffffffffffffffffffffffffffff16613037612840565b73ffffffffffffffffffffffffffffffffffffffff16146130c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061310f826137ac565b8015613121575061311f82611e54565b155b9050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061315982613104565b1561317957600f600083815260200190815260200160002054905061317e565b600090505b919050565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132195780601f106131ee57610100808354040283529160200191613219565b820191906000526020600020905b8154815290600101906020018083116131fc57829003601f168201915b505050505081565b60007358807bad0b376efc12f5ad86aac70e78ed67deae73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132745760019050613301565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b61330f6137c9565b73ffffffffffffffffffffffffffffffffffffffff1661332d612840565b73ffffffffffffffffffffffffffffffffffffffff16146133b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150226026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601154341015613574576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b601360009054906101000a900460ff166135f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4e6f742063757272656e746c79206f70656e20746f20746865207075626c696381525060200191505060405180910390fd5b6136008282613d9e565b61360981613f92565b5050565b6136156137c9565b73ffffffffffffffffffffffffffffffffffffffff16613633612840565b73ffffffffffffffffffffffffffffffffffffffff16146136bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b60006136d182613104565b156136f157600e60008381526020019081526020016000205490506136f6565b600090505b919050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156137a557600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff8183015116925050506137a9565b3390505b90565b60006137c282600561432690919063ffffffff16565b9050919050565b60006137d36136fb565b905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661384b8361229d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600161392b61392687614340565b6143d0565b83868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015613982573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600080828401905083811015613a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000613a58826137ac565b613aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615092602c913960400191505060405180910390fd5b6000613ab88361229d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613b2757508373ffffffffffffffffffffffffffffffffffffffff16613b0f84611628565b73ffffffffffffffffffffffffffffffffffffffff16145b80613b385750613b378185613221565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613b618261229d565b73ffffffffffffffffffffffffffffffffffffffff1614613bcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151706029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806150486024913960400191505060405180910390fd5b613c5e838383614437565b613c696000826137d8565b613cba81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061443c90919063ffffffff16565b50613d0c81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061445690919063ffffffff16565b50613d23818360056144709092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600c9080519060200190613d9a929190614eb9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613e4a816137ac565b15613ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613ec960008383614437565b613f1a81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061445690919063ffffffff16565b50613f31818360056144709092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b42600d60008381526020019081526020016000208190555042600e6000838152602001908152602001600020819055506001430340600f60008381526020019081526020016000208190555050565b6000613ff4846000018460001b846144a5565b60001c90509392505050565b600061400e8260000161459b565b9050919050565b61402f8282604051806020016040528060008152506145ac565b5050565b600061403e8261461d565b905061404c81600084614437565b6140576000836137d8565b6000600b6000848152602001908152602001600020805460018160011615610100020316600290049050146140a657600b600083815260200190815260200160002060006140a59190614f47565b5b6140f782600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061443c90919063ffffffff16565b5061410c82600561465490919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b614178848484613b41565b6141848484848461466e565b6141d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fad6032913960400191505060405180910390fd5b50505050565b60606000821415614227576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614321565b600082905060005b60008214614251578080600101915050600a828161424957fe5b04915061422f565b60008167ffffffffffffffff8111801561426a57600080fd5b506040519080825280601f01601f19166020018201604052801561429d5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461431957600a84816142be57fe5b0660300160f81b828280600190039350815181106142d857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161431157fe5b0493506142ac565b819450505050505b919050565b6000614338836000018360001b614887565b905092915050565b6000604051806080016040528060438152602001614fdf604391398051906020012082600001518360200151846040015180519060200120604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b60006143da611d31565b8260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b505050565b600061444e836000018360001b6148aa565b905092915050565b6000614468836000018360001b614992565b905092915050565b600061449c846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614a02565b90509392505050565b6000808460010160008581526020019081526020016000205490506000811415839061456c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614531578082015181840152602081019050614516565b50505050905090810190601f16801561455e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061457f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6145b68383613d9e565b6145c3600084848461466e565b614618576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614fad6032913960400191505060405180910390fd5b505050565b600061464d8260405180606001604052806029815260200161511b602991396005613fe19092919063ffffffff16565b9050919050565b6000614666836000018360001b614ade565b905092915050565b600061468f8473ffffffffffffffffffffffffffffffffffffffff16614bf7565b61469c576001905061487f565b600061480663150b7a0260e01b6146b16137c9565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561473557808201518184015260208101905061471a565b50505050905090810190601f1680156147625780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614fad603291398773ffffffffffffffffffffffffffffffffffffffff16614c0a9092919063ffffffff16565b9050600081806020019051602081101561481f57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461498657600060018203905060006001866000018054905003905060008660000182815481106148f557fe5b906000526020600020015490508087600001848154811061491257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061494a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061498c565b60009150505b92915050565b600061499e8383614c22565b6149f75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506149fc565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614aa957846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614ad7565b82856000016001830381548110614abc57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60008083600101600084815260200190815260200160002054905060008114614beb5760006001820390506000600186600001805490500390506000866000018281548110614b2957fe5b9060005260206000209060020201905080876000018481548110614b4957fe5b9060005260206000209060020201600082015481600001556001820154816001015590505060018301876001016000836000015481526020019081526020016000208190555086600001805480614b9c57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050614bf1565b60009150505b92915050565b600080823b905060008111915050919050565b6060614c198484600085614c45565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061506c6026913960400191505060405180910390fd5b614ca985614bf7565b614d1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d6a5780518252602082019150602081019050602083039250614d47565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614dcc576040519150601f19603f3d011682016040523d82523d6000602084013e614dd1565b606091505b5091509150614de1828286614ded565b92505050949350505050565b60608315614dfd57829050614eb2565b600083511115614e105782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e77578082015181840152602081019050614e5c565b50505050905090810190601f168015614ea45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282614eef5760008555614f36565b82601f10614f0857805160ff1916838001178555614f36565b82800160010185558215614f36579182015b82811115614f35578251825591602001919060010190614f1a565b5b509050614f439190614f8f565b5090565b50805460018160011615610100020316600290046000825580601f10614f6d5750614f8c565b601f016020900490600052602060002090810190614f8b9190614f8f565b5b50565b5b80821115614fa8576000816000905550600101614f90565b509056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265294f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e5369676e657220616e64207369676e617475726520646f206e6f74206d617463684552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220539a42217923b0dcffd4b7be4e1e06b286d0bfba081f9e3f4ea363208b0d82df64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000002580000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000000000094c696665666f726d73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c49464500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Lifeforms
Arg [1] : symbol_ (string): LIFE
Arg [2] : _maxDuration (uint256): 600
Arg [3] : price_ (uint256): 10000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [3] : 0000000000000000000000000000000000000000000000008ac7230489e80000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4c696665666f726d730000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4c49464500000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
56395:21741:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10203:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;64058:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67507:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;61173:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67029:412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53139:1140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50143:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57989:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51153:101;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68514:473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54705:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61434:415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51262:161;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61266:160;;;;;;;;;;;;;:::i;:::-;;66282:372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69058:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58131:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66064:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60942:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62773:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;63545:275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65723:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58039:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63146:337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29208:148;;;;;;;;;;;;;:::i;:::-;;62513:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62910:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28557:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60627:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61051:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64227:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58072:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67800:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69280:449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;64402:863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60719:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61857:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58156:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65273:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58099:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68166:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29511:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60835:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65828:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10203:150;10288:4;10312:20;:33;10333:11;10312:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10305:40;;10203:150;;;:::o;64058:100::-;64112:13;64145:5;64138:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64058:100;:::o;67507:221::-;67583:7;67611:16;67619:7;67611;:16::i;:::-;67603:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67696:15;:24;67712:7;67696:24;;;;;;;;;;;;;;;;;;;;;67689:31;;67507:221;;;:::o;61173:85::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61243:7:::1;61234:6;;:16;;;;;;;;;;;;;;;;;;61173:85:::0;:::o;67029:412::-;67110:13;67126:27;67145:7;67126:18;:27::i;:::-;67110:43;;67178:5;67172:11;;:2;:11;;;;67164:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67258:5;67242:21;;:12;:10;:12::i;:::-;:21;;;:73;;;;67267:48;67295:5;67302:12;:10;:12::i;:::-;67267:27;:48::i;:::-;67242:73;67234:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67412:21;67421:2;67425:7;67412:8;:21::i;:::-;67029:412;;;:::o;53139:1140::-;53340:12;53365:29;53397:152;;;;;;;;53435:6;:19;53442:11;53435:19;;;;;;;;;;;;;;;;53397:152;;;;53475:11;53397:152;;;;;;53520:17;53397:152;;;53365:184;;53582:45;53589:11;53602:6;53610:4;53616;53622;53582:6;:45::i;:::-;53560:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53777:26;53801:1;53777:6;:19;53784:11;53777:19;;;;;;;;;;;;;;;;:23;;:26;;;;:::i;:::-;53755:6;:19;53762:11;53755:19;;;;;;;;;;;;;;;:48;;;;53821:117;53859:11;53885:10;53910:17;53821:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54049:12;54063:23;54098:4;54090:18;;54140:17;54159:11;54123:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54090:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54048:134;;;;54201:7;54193:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54261:10;54254:17;;;;;53139:1140;;;;;;;:::o;50143:43::-;;;;;;;;;;;;;;;;;;;:::o;57989:41::-;;;;;;;;;;;;;;;;;:::o;51153:101::-;51204:7;51231:15;;51224:22;;51153:101;:::o;68514:473::-;68619:15;68626:7;68619:6;:15::i;:::-;68614:366;;68716:41;68735:12;:10;:12::i;:::-;68749:7;68716:18;:41::i;:::-;68708:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68828:28;68838:4;68844:2;68848:7;68828:9;:28::i;:::-;68883:2;68875:10;;:4;:10;;;68871:98;;68938:15;68906:20;:29;68927:7;68906:29;;;;;;;;;;;:47;;;;68871:98;68614:366;68514:473;;;:::o;54705:107::-;54758:13;54792:6;:12;54799:4;54792:12;;;;;;;;;;;;;;;;54784:20;;54705:107;;;:::o;61434:415::-;61488:4;61546:16;61554:7;61546;:16::i;:::-;61541:62;;61586:5;61579:12;;;;61541:62;61728:11;;61696:20;:29;61717:7;61696:29;;;;;;;;;;;;61678:15;:47;:61;61674:105;;;61763:4;61756:11;;;;61674:105;61836:5;61829:12;;61434:415;;;;:::o;51262:161::-;51305:7;51325:10;51376:9;51370:15;;51413:2;51406:9;;;51262:161;:::o;61266:160::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61314:9:::1;61334:7;:5;:7::i;:::-;61326:21;;:44;61348:21;61326:44;;;;;;;;;;;;;;;;;;;;;;;61314:56;;61389:4;61381:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;28848:1;61266:160::o:0;66282:372::-;66349:13;66364:7;66373;66382;66391;66415:16;66423:7;66415;:16::i;:::-;66411:236;;;66456:17;66465:7;66456:8;:17::i;:::-;66475:16;66483:7;66475;:16::i;:::-;66493:11;:20;66505:7;66493:20;;;;;;;;;;;;66515;:29;66536:7;66515:29;;;;;;;;;;;;66546:5;:14;66552:7;66546:14;;;;;;;;;;;;66448:113;;;;;;;;;;;;66411:236;66614:1;66618;66621;66632;66624:10;;66594:41;;;;;;;;;;;;;;;;;;;;;;;;;;66282:372;;;;;;;;:::o;69058:151::-;69162:39;69179:4;69185:2;69189:7;69162:39;;;;;;;;;;;;:16;:39::i;:::-;69058:151;;;:::o;58131:18::-;;;;;;;;;;;;;:::o;66064:210::-;66130:7;66154:16;66162:7;66154;:16::i;:::-;66150:117;;;66194:11;:20;66206:7;66194:20;;;;;;;;;;;;66187:27;;;;66150:117;66254:1;66247:8;;66064:210;;;;:::o;60942:101::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61014:21:::1;61026:8;61014:11;:21::i;:::-;60942:101:::0;:::o;62773:129::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62850:18:::1;62856:2;62860:7;62850:5;:18::i;:::-;62879:15;62886:7;62879:6;:15::i;:::-;62773:129:::0;;:::o;63545:275::-;63617:7;63641:16;63649:7;63641;:16::i;:::-;63637:176;;;63681:70;63698:7;63681:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;63674:77;;;;63637:176;63799:1;63784:17;;63545:275;;;;:::o;65723:97::-;65771:13;65804:8;65797:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65723:97;:::o;58039:26::-;;;;:::o;63146:337::-;63218:7;63238:10;63251:1;63238:14;;63268:6;63263:190;63284:29;:13;:20;63298:5;63284:20;;;;;;;;;;;;;;;:27;:29::i;:::-;63280:1;:33;63263:190;;;63339:56;63355:13;:20;63369:5;63355:20;;;;;;;;;;;;;;;:27;;:35;;63391:1;63355:38;;;;;;;;;;;;;;;;63347:47;;63339:7;:56::i;:::-;63335:107;;;63425:1;63416:10;;;;63335:107;63315:3;;;;;;;63263:190;;;;63470:5;63463:12;;;63146:337;;;:::o;29208:148::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29315:1:::1;29278:40;;29299:6;;;;;;;;;;;29278:40;;;;;;;;;;;;29346:1;29329:6;;:19;;;;;;;;;;;;;;;;;;29208:148::o:0;62513:252::-;62608:5;;62595:9;:18;;62587:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62655:6;;;;;;;;;;;62647:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62709:22;62719:2;62723:7;62709:9;:22::i;:::-;62742:15;62749:7;62742:6;:15::i;:::-;62513:252;;:::o;62910:172::-;60564:11;;;;;;;;;;;60550:25;;:10;:25;;;60542:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62997:15:::1;63004:7;62997:6;:15::i;:::-;62989:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;63060:14;63066:7;63060:5;:14::i;:::-;62910:172:::0;:::o;28557:87::-;28603:7;28630:6;;;;;;;;;;;28623:13;;28557:87;:::o;60627:84::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60697:6:::1;60689:5;:14;;;;60627:84:::0;:::o;61051:114::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61145:12:::1;61131:11;:26;;;;;;;;;;;;:::i;:::-;;61051:114:::0;:::o;64227:104::-;64283:13;64316:7;64309:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64227:104;:::o;58072:20::-;;;;:::o;67800:295::-;67915:12;:10;:12::i;:::-;67903:24;;:8;:24;;;;67895:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68015:8;67970:18;:32;67989:12;:10;:12::i;:::-;67970:32;;;;;;;;;;;;;;;:42;68003:8;67970:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;68068:8;68039:48;;68054:12;:10;:12::i;:::-;68039:48;;;68078:8;68039:48;;;;;;;;;;;;;;;;;;;;67800:295;;:::o;69280:449::-;69409:15;69416:7;69409:6;:15::i;:::-;69404:318;;69449:41;69468:12;:10;:12::i;:::-;69482:7;69449:18;:41::i;:::-;69441:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69559:39;69573:4;69579:2;69583:7;69592:5;69559:13;:39::i;:::-;69625:2;69617:10;;:4;:10;;;69613:98;;69680:15;69648:20;:29;69669:7;69648:29;;;;;;;;;;;:47;;;;69613:98;69404:318;69280:449;;;;:::o;64402:863::-;64475:13;64509:16;64517:7;64509;:16::i;:::-;64501:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64595:16;64603:7;64595;:16::i;:::-;64590:59;;64628:9;;;;;;;;;;;;;;;;64590:59;64661:23;64687:10;:19;64698:7;64687:19;;;;;;;;;;;64661:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64717:18;64738:9;:7;:9::i;:::-;64717:30;;64845:1;64829:4;64823:18;:23;64819:72;;;64870:9;64863:16;;;;;;64819:72;65021:1;65001:9;64995:23;:27;64991:108;;;65070:4;65076:9;65053:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65039:48;;;;;;64991:108;65231:4;65237:18;:7;:16;:18::i;:::-;65214:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65200:57;;;;64402:863;;;;:::o;60719:108::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60807:12:::1;60793:11;;:26;;;;;;;;;;;;;;;;;;60719:108:::0;:::o;61857:125::-;61912:4;61937:16;61945:7;61937;:16::i;:::-;:36;;;;;61958:15;61965:7;61958:6;:15::i;:::-;61957:16;61937:36;61929:45;;61857:125;;;:::o;58156:26::-;;;;;;;;;;;;;:::o;65273:211::-;65336:7;65360:16;65368:7;65360;:16::i;:::-;65356:121;;;65400:5;:14;65406:7;65400:14;;;;;;;;;;;;65393:21;;;;65356:121;65454:11;65447:18;;65273:211;;;;:::o;58099:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68166:281::-;68263:4;68304:42;68284:63;;:8;:63;;;68280:107;;;68371:4;68364:11;;;;68280:107;68404:18;:25;68423:5;68404:25;;;;;;;;;;;;;;;:35;68430:8;68404:35;;;;;;;;;;;;;;;;;;;;;;;;;68397:42;;68166:281;;;;;:::o;29511:244::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29620:1:::1;29600:22;;:8;:22;;;;29592:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29710:8;29681:38;;29702:6;;;;;;;;;;;29681:38;;;;;;;;;;;;29739:8;29730:6;;:17;;;;;;;;;;;;;;;;;;29511:244:::0;:::o;62261:::-;62352:5;;62339:9;:18;;62331:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62399:6;;;;;;;;;;;62391:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62453:18;62459:2;62463:7;62453:5;:18::i;:::-;62482:15;62489:7;62482:6;:15::i;:::-;62261:244;;:::o;60835:99::-;28788:12;:10;:12::i;:::-;28777:23;;:7;:5;:7::i;:::-;:23;;;28769:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60917:9:::1;60903:11;:23;;;;60835:99:::0;:::o;65828:228::-;65903:7;65927:16;65935:7;65927;:16::i;:::-;65923:126;;;65967:20;:29;65988:7;65967:29;;;;;;;;;;;;65960:36;;;;65923:126;66036:1;66029:8;;65828:228;;;;:::o;55528:641::-;55599:22;55665:4;55643:27;;:10;:27;;;55639:499;;;55687:18;55708:8;;55687:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55731:13;55747:8;;:15;;55731:31;;55999:42;55969:5;55962;55958:17;55952:24;55926:134;55916:144;;55786:289;;;;;56116:10;56107:19;;55639:499;55528:641;:::o;71196:127::-;71261:4;71285:30;71307:7;71285:12;:21;;:30;;;;:::i;:::-;71278:37;;71196:127;;;:::o;66798:169::-;66888:22;66935:24;:22;:24::i;:::-;66928:31;;66798:169;:::o;77231:196::-;77333:2;77306:15;:24;77322:7;77306:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;77393:7;77389:2;77351:50;;77360:27;77379:7;77360:18;:27::i;:::-;77351:50;;;;;;;;;;;;77231:196;;:::o;54820:486::-;54998:4;55041:1;55023:20;;:6;:20;;;;55015:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55139:159;55167:47;55186:27;55206:6;55186:19;:27::i;:::-;55167:18;:47::i;:::-;55233:4;55256;55279;55139:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55116:182;;:6;:182;;;55096:202;;54820:486;;;;;;;:::o;13761:179::-;13819:7;13839:9;13855:1;13851;:5;13839:17;;13880:1;13875;:6;;13867:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13931:1;13924:8;;;13761:179;;;;:::o;71490:363::-;71583:4;71608:16;71616:7;71608;:16::i;:::-;71600:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71684:13;71700:27;71719:7;71700:18;:27::i;:::-;71684:43;;71757:5;71746:16;;:7;:16;;;:51;;;;71790:7;71766:31;;:20;71778:7;71766:11;:20::i;:::-;:31;;;71746:51;:98;;;;71801:43;71829:5;71836:7;71801:27;:43::i;:::-;71746:98;71738:107;;;71490:363;;;;:::o;74639:603::-;74768:4;74737:35;;:27;74756:7;74737:18;:27::i;:::-;:35;;;74729:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74869:1;74855:16;;:2;:16;;;;74847:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74925:39;74946:4;74952:2;74956:7;74925:20;:39::i;:::-;75029:29;75046:1;75050:7;75029:8;:29::i;:::-;75071:35;75098:7;75071:13;:19;75085:4;75071:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;75117:30;75139:7;75117:13;:17;75131:2;75117:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;75160:29;75177:7;75186:2;75160:12;:16;;:29;;;;;:::i;:::-;;75226:7;75222:2;75207:27;;75216:4;75207:27;;;;;;;;;;;;74639:603;;;:::o;75843:100::-;75927:8;75916;:19;;;;;;;;;;;;:::i;:::-;;75843:100;:::o;73119:404::-;73213:1;73199:16;;:2;:16;;;;73191:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73272:16;73280:7;73272;:16::i;:::-;73271:17;73263:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73334:45;73363:1;73367:2;73371:7;73334:20;:45::i;:::-;73392:30;73414:7;73392:13;:17;73406:2;73392:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;73435:29;73452:7;73461:2;73435:12;:16;;:29;;;;;:::i;:::-;;73507:7;73503:2;73482:33;;73499:1;73482:33;;;;;;;;;;;;73119:404;;:::o;61990:263::-;62066:15;62043:11;:20;62055:7;62043:20;;;;;;;;;;;:38;;;;62124:15;62092:20;:29;62113:7;62092:29;;;;;;;;;;;:47;;;;62190:1;62177:12;:14;62167:25;62150:5;:14;62156:7;62150:14;;;;;;;;;;;:42;;;;61990:263;:::o;49283:213::-;49390:7;49441:44;49446:3;:10;;49466:3;49458:12;;49472;49441:4;:44::i;:::-;49433:53;;49410:78;;49283:213;;;;;:::o;38872:114::-;38932:7;38959:19;38967:3;:10;;38959:7;:19::i;:::-;38952:26;;38872:114;;;:::o;72196:110::-;72272:26;72282:2;72286:7;72272:26;;;;;;;;;;;;:9;:26::i;:::-;72196:110;;:::o;73752:550::-;73812:13;73828:28;73848:7;73828:19;:28::i;:::-;73812:44;;73887:48;73908:5;73923:1;73927:7;73887:20;:48::i;:::-;73976:29;73993:1;73997:7;73976:8;:29::i;:::-;74095:1;74064:10;:19;74075:7;74064:19;;;;;;;;;;;74058:33;;;;;;;;;;;;;;;;:38;74054:97;;74120:10;:19;74131:7;74120:19;;;;;;;;;;;;74113:26;;;;:::i;:::-;74054:97;74163:36;74191:7;74163:13;:20;74177:5;74163:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;74212:28;74232:7;74212:12;:19;;:28;;;;:::i;:::-;;74286:7;74282:1;74258:36;;74267:5;74258:36;;;;;;;;;;;;73752:550;;:::o;70611:272::-;70725:28;70735:4;70741:2;70745:7;70725:9;:28::i;:::-;70772:48;70795:4;70801:2;70805:7;70814:5;70772:22;:48::i;:::-;70764:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70611:272;;;;:::o;26697:746::-;26753:13;26983:1;26974:5;:10;26970:53;;;27001:10;;;;;;;;;;;;;;;;;;;;;26970:53;27033:12;27048:5;27033:20;;27064:14;27089:78;27104:1;27096:4;:9;27089:78;;27122:8;;;;;;;27153:2;27145:10;;;;;;;;;27089:78;;;27177:19;27209:6;27199:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27177:39;;27227:13;27252:1;27243:6;:10;27227:26;;27271:5;27264:12;;27287:117;27302:1;27294:4;:9;27287:117;;27363:2;27356:4;:9;;;;;;27351:2;:14;27338:29;;27320:6;27327:7;;;;;;;27320:15;;;;;;;;;;;:47;;;;;;;;;;;27390:2;27382:10;;;;;;;;;27287:117;;;27428:6;27414:21;;;;;;26697:746;;;;:::o;47296:151::-;47380:4;47404:35;47414:3;:10;;47434:3;47426:12;;47404:9;:35::i;:::-;47397:42;;47296:151;;;;:::o;54287:410::-;54397:7;52475:100;;;;;;;;;;;;;;;;;52455:127;;;;;;54551:6;:12;;;54586:6;:11;;;54630:6;:24;;;54620:35;;;;;;54470:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54442:247;;;;;;54422:267;;54287:410;;;:::o;51792:258::-;51891:7;51993:20;:18;:20::i;:::-;52015:11;51964:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51936:106;;;;;;51916:126;;51792:258;;;:::o;78040:93::-;;;;:::o;38417:137::-;38487:4;38511:35;38519:3;:10;;38539:5;38531:14;;38511:7;:35::i;:::-;38504:42;;38417:137;;;;:::o;38110:131::-;38177:4;38201:32;38206:3;:10;;38226:5;38218:14;;38201:4;:32::i;:::-;38194:39;;38110:131;;;;:::o;46719:185::-;46808:4;46832:64;46837:3;:10;;46857:3;46849:12;;46887:5;46871:23;;46863:32;;46832:4;:64::i;:::-;46825:71;;46719:185;;;;;:::o;46076:319::-;46170:7;46190:16;46209:3;:12;;:17;46222:3;46209:17;;;;;;;;;;;;46190:36;;46257:1;46245:8;:13;;46260:12;46237:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46327:3;:12;;46351:1;46340:8;:12;46327:26;;;;;;;;;;;;;;;;;;:33;;;46320:40;;;46076:319;;;;;:::o;33915:109::-;33971:7;33998:3;:11;;:18;;;;33991:25;;33915:109;;;:::o;72533:250::-;72629:18;72635:2;72639:7;72629:5;:18::i;:::-;72666:54;72697:1;72701:2;72705:7;72714:5;72666:22;:54::i;:::-;72658:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72533:250;;;:::o;63828:163::-;63886:7;63913:70;63930:7;63913:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;63906:77;;63828:163;;;:::o;47070:142::-;47147:4;47171:33;47179:3;:10;;47199:3;47191:12;;47171:7;:33::i;:::-;47164:40;;47070:142;;;;:::o;76508:604::-;76629:4;76656:15;:2;:13;;;:15::i;:::-;76651:60;;76695:4;76688:11;;;;76651:60;76721:23;76747:252;76800:45;;;76860:12;:10;:12::i;:::-;76887:4;76906:7;76928:5;76763:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76747:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;76721:278;;77010:13;77037:10;77026:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77010:48;;56942:10;77087:16;;77077:26;;;:6;:26;;;;77069:35;;;;76508:604;;;;;;;:::o;43894:125::-;43965:4;44010:1;43989:3;:12;;:17;44002:3;43989:17;;;;;;;;;;;;:22;;43982:29;;43894:125;;;;:::o;32070:1544::-;32136:4;32254:18;32275:3;:12;;:19;32288:5;32275:19;;;;;;;;;;;;32254:40;;32325:1;32311:10;:15;32307:1300;;32673:21;32710:1;32697:10;:14;32673:38;;32726:17;32767:1;32746:3;:11;;:18;;;;:22;32726:42;;33013:17;33033:3;:11;;33045:9;33033:22;;;;;;;;;;;;;;;;33013:42;;33179:9;33150:3;:11;;33162:13;33150:26;;;;;;;;;;;;;;;:38;;;;33298:1;33282:13;:17;33256:3;:12;;:23;33269:9;33256:23;;;;;;;;;;;:43;;;;33408:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;33503:3;:12;;:19;33516:5;33503:19;;;;;;;;;;;33496:26;;;33546:4;33539:11;;;;;;;;32307:1300;33590:5;33583:12;;;32070:1544;;;;;:::o;31480:414::-;31543:4;31565:21;31575:3;31580:5;31565:9;:21::i;:::-;31560:327;;31603:3;:11;;31620:5;31603:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31786:3;:11;;:18;;;;31764:3;:12;;:19;31777:5;31764:19;;;;;;;;;;;:40;;;;31826:4;31819:11;;;;31560:327;31870:5;31863:12;;31480:414;;;;;:::o;41394:692::-;41470:4;41586:16;41605:3;:12;;:17;41618:3;41605:17;;;;;;;;;;;;41586:36;;41651:1;41639:8;:13;41635:444;;;41706:3;:12;;41724:38;;;;;;;;41741:3;41724:38;;;;41754:5;41724:38;;;41706:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41921:3;:12;;:19;;;;41901:3;:12;;:17;41914:3;41901:17;;;;;;;;;;;:39;;;;41962:4;41955:11;;;;;41635:444;42035:5;41999:3;:12;;42023:1;42012:8;:12;41999:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;42062:5;42055:12;;;41394:692;;;;;;:::o;42261:1549::-;42325:4;42441:16;42460:3;:12;;:17;42473:3;42460:17;;;;;;;;;;;;42441:36;;42506:1;42494:8;:13;42490:1313;;42855:21;42890:1;42879:8;:12;42855:36;;42906:17;42948:1;42926:3;:12;;:19;;;;:23;42906:43;;43194:26;43223:3;:12;;43236:9;43223:23;;;;;;;;;;;;;;;;;;43194:52;;43371:9;43341:3;:12;;43354:13;43341:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;43495:1;43479:13;:17;43448:3;:12;;:28;43461:9;:14;;;43448:28;;;;;;;;;;;:48;;;;43605:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43701:3;:12;;:17;43714:3;43701:17;;;;;;;;;;;43694:24;;;43742:4;43735:11;;;;;;;;42490:1313;43786:5;43779:12;;;42261:1549;;;;;:::o;19198:422::-;19258:4;19466:12;19577:7;19565:20;19557:28;;19611:1;19604:4;:8;19597:15;;;19198:422;;;:::o;22116:195::-;22219:12;22251:52;22273:6;22281:4;22287:1;22290:12;22251:21;:52::i;:::-;22244:59;;22116:195;;;;;:::o;33700:129::-;33773:4;33820:1;33797:3;:12;;:19;33810:5;33797:19;;;;;;;;;;;;:24;;33790:31;;33700:129;;;;:::o;23168:530::-;23295:12;23353:5;23328:21;:30;;23320:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23420:18;23431:6;23420:10;:18::i;:::-;23412:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23546:12;23560:23;23587:6;:11;;23607:5;23615:4;23587:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23545:75;;;;23638:52;23656:7;23665:10;23677:12;23638:17;:52::i;:::-;23631:59;;;;23168:530;;;;;;:::o;25708:742::-;25823:12;25852:7;25848:595;;;25883:10;25876:17;;;;25848:595;26017:1;25997:10;:17;:21;25993:439;;;26260:10;26254:17;26321:15;26308:10;26304:2;26300:19;26293:44;26208:148;26403:12;26396:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25708:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://539a42217923b0dcffd4b7be4e1e06b286d0bfba081f9e3f4ea363208b0d82df
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.