ERC-721
NFT
Overview
Max Total Supply
1,899 FAGC
Holders
1,037
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FAGCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FuriousAlphaGymClub
Compiler Version
v0.7.0+commit.9e61f92b
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-09 */ /** ________ __ __ _______ ______ ______ __ __ ______ ______ __ _______ __ __ ______ ______ __ __ __ __ ______ __ __ __ _______ | \| \ | \| \ | \ / \ | \ | \ / \ / \ | \ | \ | \ | \ / \ / \| \ / \| \ / \ / \ | \ | \ | \| \ | $$$$$$$$| $$ | $$| $$$$$$$\ \$$$$$$| $$$$$$\| $$ | $$| $$$$$$\ | $$$$$$\| $$ | $$$$$$$\| $$ | $$| $$$$$$\ | $$$$$$\\$$\ / $$| $$\ / $$ | $$$$$$\| $$ | $$ | $$| $$$$$$$\ | $$__ | $$ | $$| $$__| $$ | $$ | $$ | $$| $$ | $$| $$___\$$ | $$__| $$| $$ | $$__/ $$| $$__| $$| $$__| $$ | $$ __\$$ \$$\/ $$ | $$$\ / $$$ | $$ \$$| $$ | $$ | $$| $$__/ $$ | $$ \ | $$ | $$| $$ $$ | $$ | $$ | $$| $$ | $$ \$$ \ | $$ $$| $$ | $$ $$| $$ $$| $$ $$ | $$| \ \$$ $$ | $$$$\ $$$$ | $$ | $$ | $$ | $$| $$ $$ | $$$$$ | $$ | $$| $$$$$$$\ | $$ | $$ | $$| $$ | $$ _\$$$$$$\ | $$$$$$$$| $$ | $$$$$$$ | $$$$$$$$| $$$$$$$$ | $$ \$$$$ \$$$$ | $$\$$ $$ $$ | $$ __ | $$ | $$ | $$| $$$$$$$\ | $$ | $$__/ $$| $$ | $$ _| $$_ | $$__/ $$| $$__/ $$| \__| $$ | $$ | $$| $$_____ | $$ | $$ | $$| $$ | $$ | $$__| $$ | $$ | $$ \$$$| $$ | $$__/ \| $$_____| $$__/ $$| $$__/ $$ | $$ \$$ $$| $$ | $$| $$ \ \$$ $$ \$$ $$ \$$ $$ | $$ | $$| $$ \| $$ | $$ | $$| $$ | $$ \$$ $$ | $$ | $$ \$ | $$ \$$ $$| $$ \\$$ $$| $$ $$ \$$ \$$$$$$ \$$ \$$ \$$$$$$ \$$$$$$ \$$$$$$ \$$$$$$ \$$ \$$ \$$$$$$$$ \$$ \$$ \$$ \$$ \$$ \$$$$$$ \$$ \$$ \$$ \$$$$$$ \$$$$$$$$ \$$$$$$ \$$$$$$$ */ /** *Submitted for verification at Etherscan.io on 2021-09-15 */ // 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/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: @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/token/ERC721/ERC721.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { 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 = ''; /* * 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_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), 'ERC721: balance query for the zero address' ); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override 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' ); 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())); } /** * @dev Returns the base URI. 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; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, 'ERC721: approval to current owner'); require( _msgSender() == owner || ERC721.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) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved' ); _transfer(from, to, tokenId); } /** * @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 { require( _isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved' ); _safeTransfer(from, to, tokenId, _data); } /** * @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 = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.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 = ERC721.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( ERC721.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(ERC721.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 {} } // 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: contracts/fagc.sol pragma solidity ^0.7.0; /** * @title Furious Alpha Gym Club contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract FuriousAlphaGymClub is ERC721, Ownable { using SafeMath for uint256; // The base price is set here. uint256 public nftPrice = 78000000000000000; // 0.078 ETH // Only 10 furious alpha can be purchased per transaction. uint256 public constant maxNumPurchase = 10; // Only 10,000 total furious alpha will be generated // 100 will remain possible to create and mint for very big sponsorship. uint256 public constant MAX_TOKENS = 10000; // How many tokens an early access member is allowed to mint. uint256 public earlyAccessTokensPerUser = 3; uint256 public totalEarlyAccessTokensAllowed = 6000; uint256 public currentEarlyAccessTokensClaimed = 0; /** * The hash of the concatented hash string of all the images. */ string public provenance = ''; mapping(address => bool) private earlyAccessAllowList; mapping(address => uint256) private earlyAccessClaimedTokens; /** * The state of the sale: * 0 = closed * 1 = early access * 2 = open */ uint256 public saleState = 0; constructor() ERC721('FuriousAlphaGymClub', 'FAGC') { _setBaseURI('ipfs://QmWokQaSi5MAXn5WwKVjxfPtkNXviEceNWCGSpoAHGMmQe/'); _safeMint(msg.sender, totalSupply()); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; msg.sender.transfer(balance); } /** * Set some tokens aside. */ function reserveTokens(uint256 number) public onlyOwner { require( totalSupply().add(number) <= MAX_TOKENS, 'Reservation would exceed max supply' ); uint256 supply = totalSupply(); uint256 i; for (i = 0; i < number; i++) { _safeMint(msg.sender, supply + i); } } /** * Set the state of the sale. */ function setSaleState(uint256 newState) public onlyOwner { require(newState >= 0 && newState <= 2, 'Invalid state'); saleState = newState; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function setProvenanceHash(string memory hash) public onlyOwner { provenance = hash; } function setPrice(uint256 value) public onlyOwner { nftPrice = value; } function setEarlyAccessTokensPerUser(uint256 num) public onlyOwner { earlyAccessTokensPerUser = num; } function setTotalEarlyAccessTokensAllowed(uint256 num) public onlyOwner { totalEarlyAccessTokensAllowed = num; } function addEarlyAccessMembers(address[] memory addresses) public onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { earlyAccessAllowList[addresses[i]] = true; } } function giveAwayTokens(address[] memory addresses) public onlyOwner { require( totalSupply().add(addresses.length) <= MAX_TOKENS, 'Reservation would exceed max supply' ); uint256 supply = totalSupply(); uint256 i; for (i = 0; i < addresses.length; i++) { _safeMint(addresses[i], supply + i); } } function removeEarlyAccessMember() public { require( earlyAccessAllowList[msg.sender], 'Sender is not on the early access list' ); earlyAccessAllowList[msg.sender] = false; } function _checkRegularSale(uint256 numberOfTokens) internal pure { require( numberOfTokens <= maxNumPurchase, 'Can only mint 10 tokens at a time' ); } function _checkEarlyAccess(address sender, uint256 numberOfTokens) internal view { require( earlyAccessAllowList[sender], 'Sender is not on the early access list' ); require( currentEarlyAccessTokensClaimed < totalEarlyAccessTokensAllowed, 'Minting would exceed total allowed for early access' ); require( earlyAccessClaimedTokens[sender] < earlyAccessTokensPerUser, 'Sender cannot claim any more early access fagc at this time' ); require( numberOfTokens <= earlyAccessTokensPerUser, 'Can only mint 3 tokens in the early access sale' ); } function canClaimEarlyAccessToken(address addr) public view returns (bool) { return earlyAccessAllowList[addr] && earlyAccessClaimedTokens[addr] < earlyAccessTokensPerUser && currentEarlyAccessTokensClaimed < totalEarlyAccessTokensAllowed; } /** * Mints an NFT */ function mintFAGC(uint256 numberOfTokens) public payable { require( saleState == 1 || saleState == 2, 'Sale must be active to mint' ); if (saleState == 1) { _checkEarlyAccess(msg.sender, numberOfTokens); earlyAccessClaimedTokens[msg.sender] = earlyAccessClaimedTokens[ msg.sender ].add(numberOfTokens); currentEarlyAccessTokensClaimed = currentEarlyAccessTokensClaimed .add(numberOfTokens); } else if (saleState == 2) { _checkRegularSale(numberOfTokens); } require( totalSupply().add(numberOfTokens) <= MAX_TOKENS, 'Purchase would exceed max supply' ); require( nftPrice.mul(numberOfTokens) <= msg.value, 'Ether value sent is not correct' ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addEarlyAccessMembers","outputs":[],"stateMutability":"nonpayable","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":"addr","type":"address"}],"name":"canClaimEarlyAccessToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEarlyAccessTokensClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyAccessTokensPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giveAwayTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNumPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFAGC","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeEarlyAccessMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setEarlyAccessTokensPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setTotalEarlyAccessTokensAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEarlyAccessTokensAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b92919062000e05565b506701151c96347b0000600b556003600c55611770600d556000600e5560405180602001604052806000815250600f90805190602001906200006f92919062000e05565b5060006012553480156200008257600080fd5b506040518060400160405280601381526020017f467572696f7573416c70686147796d436c7562000000000000000000000000008152506040518060400160405280600481526020017f4641474300000000000000000000000000000000000000000000000000000000815250620001076301ffc9a760e01b6200028560201b60201c565b81600690805190602001906200011f92919062000e05565b5080600790805190602001906200013892919062000e05565b50620001516380ac58cd60e01b6200028560201b60201c565b62000169635b5e139f60e01b6200028560201b60201c565b6200018163780e9d6360e01b6200028560201b60201c565b50506000620001956200038e60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200025e60405180606001604052806036815260200162005a18603691396200039660201b60201c565b6200027f3362000273620003b260201b60201c565b620003d060201b60201c565b62000eab565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b8060099080519060200190620003ae92919062000e05565b5050565b6000620003cb6002620003f660201b620030731760201c565b905090565b620003f28282604051806020016040528060008152506200041360201b60201c565b5050565b60006200040c826000016200049660201b60201c565b9050919050565b620004258383620004a760201b60201c565b6200043a6000848484620006bb60201b60201c565b62000491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180620059e66032913960400191505060405180910390fd5b505050565b600081600001805490509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200054b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6200055c81620008f760201b60201c565b15620005d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b620005e4600083836200091b60201b60201c565b6200063c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200092060201b620030881790919060201c565b506200065a818360026200094260201b620030a2179092919060201c565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006e98473ffffffffffffffffffffffffffffffffffffffff166200097f60201b620030d71760201c565b620006f85760019050620008ef565b60606200087563150b7a0260e01b620007166200038e60201b60201c565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156200079c5780820151818401526020810190506200077f565b50505050905090810190601f168015620007ca5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001620059e6603291398773ffffffffffffffffffffffffffffffffffffffff166200099260201b620030ea179092919060201c565b905060008180602001905160208110156200088f57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600062000914826002620009b260201b620031021790919060201c565b9050919050565b505050565b60006200093a836000018360001b620009d460201b60201c565b905092915050565b600062000976846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b62000a4e60201b60201c565b90509392505050565b600080823b905060008111915050919050565b6060620009a9848460008562000b2d60201b60201c565b90509392505050565b6000620009cc836000018360001b62000ced60201b60201c565b905092915050565b6000620009e8838362000d1060201b60201c565b62000a4357826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000a48565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141562000af75784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505062000b26565b8285600001600183038154811062000b0b57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b60608247101562000b8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018062005a4e6026913960400191505060405180910390fd5b62000b9b856200097f60201b60201c565b62000c0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831062000c60578051825260208201915060208101905060208303925062000c3b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000cc4576040519150601f19603f3d011682016040523d82523d6000602084013e62000cc9565b606091505b509150915062000ce182828662000d3360201b60201c565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b6060831562000d455782905062000dfe565b60008351111562000d595782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000dc257808201518184015260208101905062000da5565b50505050905090810190601f16801562000df05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000e4857805160ff191683800117855562000e79565b8280016001018555821562000e79579182015b8281111562000e7857825182559160200191906001019062000e5b565b5b50905062000e88919062000e8c565b5090565b5b8082111562000ea757600081600090555060010162000e8d565b5090565b614b2b8062000ebb6000396000f3fe6080604052600436106102455760003560e01c8063603f4d521161013957806395da2da5116100b6578063d031370b1161007a578063d031370b14611050578063e985e9c51461108b578063f2fde38b14611112578063f3c191f014611163578063f47c84c514611191578063f9c9816f146111bc57610245565b806395da2da514610d2d578063a22cb46514610df2578063b7a67ab214610e4f578063b88d4fde14610e8a578063c87b56dd14610f9c57610245565b806382935752116100fd5780638293575214610bbb57806389a7aeac14610bf65780638da5cb5b14610c2157806391b7f5ed14610c6257806395d89b4114610c9d57610245565b8063603f4d5214610a1f5780636352211e14610a4a5780636c0360eb14610aaf57806370a0823114610b3f578063715018a614610ba457610245565b806323b872dd116101c75780633ccfd60b1161018b5780633ccfd60b1461084b57806342842e0e14610862578063460a0e93146108dd5780634f6ccce71461090857806355f804b31461095757610245565b806323b872dd1461065a57806323bbfec5146106d55780632f745c591461079a5780632fbce69d1461080957806334abf28d1461082057610245565b8063095ea7b31161020e578063095ea7b3146104515780630d39fc81146104ac5780630f7309e8146104d7578063109695231461056757806318160ddd1461062f57610245565b8062fc5d111461024a57806301ffc9a7146102b157806306fdde0314610321578063081812fc146103b1578063084c408814610416575b600080fd5b34801561025657600080fd5b506102996004803603602081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e7565b60405180821515815260200191505060405180910390f35b3480156102bd57600080fd5b50610309600480360360208110156102d457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611298565b60405180821515815260200191505060405180910390f35b34801561032d57600080fd5b506103366112ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561037657808201518184015260208101905061035b565b50505050905090810190601f1680156103a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103bd57600080fd5b506103ea600480360360208110156103d457600080fd5b81019080803590602001909291905050506113a1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561042257600080fd5b5061044f6004803603602081101561043957600080fd5b810190808035906020019092919050505061143c565b005b34801561045d57600080fd5b506104aa6004803603604081101561047457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611579565b005b3480156104b857600080fd5b506104c16116bd565b6040518082815260200191505060405180910390f35b3480156104e357600080fd5b506104ec6116c3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052c578082015181840152602081019050610511565b50505050905090810190601f1680156105595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561057357600080fd5b5061062d6004803603602081101561058a57600080fd5b81019080803590602001906401000000008111156105a757600080fd5b8201836020820111156105b957600080fd5b803590602001918460018302840111640100000000831117156105db57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611761565b005b34801561063b57600080fd5b5061064461182a565b6040518082815260200191505060405180910390f35b34801561066657600080fd5b506106d36004803603606081101561067d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061183b565b005b3480156106e157600080fd5b50610798600480360360208110156106f857600080fd5b810190808035906020019064010000000081111561071557600080fd5b82018360208201111561072757600080fd5b8035906020019184602083028401116401000000008311171561074957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506118b1565b005b3480156107a657600080fd5b506107f3600480360360408110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a1e565b6040518082815260200191505060405180910390f35b34801561081557600080fd5b5061081e611a79565b005b34801561082c57600080fd5b50610835611b75565b6040518082815260200191505060405180910390f35b34801561085757600080fd5b50610860611b7b565b005b34801561086e57600080fd5b506108db6004803603606081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c79565b005b3480156108e957600080fd5b506108f2611c99565b6040518082815260200191505060405180910390f35b34801561091457600080fd5b506109416004803603602081101561092b57600080fd5b8101908080359060200190929190505050611c9f565b6040518082815260200191505060405180910390f35b34801561096357600080fd5b50610a1d6004803603602081101561097a57600080fd5b810190808035906020019064010000000081111561099757600080fd5b8201836020820111156109a957600080fd5b803590602001918460018302840111640100000000831117156109cb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cc2565b005b348015610a2b57600080fd5b50610a34611d7d565b6040518082815260200191505060405180910390f35b348015610a5657600080fd5b50610a8360048036036020811015610a6d57600080fd5b8101908080359060200190929190505050611d83565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610abb57600080fd5b50610ac4611dba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b04578082015181840152602081019050610ae9565b50505050905090810190601f168015610b315780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4b57600080fd5b50610b8e60048036036020811015610b6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e5c565b6040518082815260200191505060405180910390f35b348015610bb057600080fd5b50610bb9611f31565b005b348015610bc757600080fd5b50610bf460048036036020811015610bde57600080fd5b81019080803590602001909291905050506120a1565b005b348015610c0257600080fd5b50610c0b61215a565b6040518082815260200191505060405180910390f35b348015610c2d57600080fd5b50610c36612160565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c6e57600080fd5b50610c9b60048036036020811015610c8557600080fd5b810190808035906020019092919050505061218a565b005b348015610ca957600080fd5b50610cb2612243565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cf2578082015181840152602081019050610cd7565b50505050905090810190601f168015610d1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d3957600080fd5b50610df060048036036020811015610d5057600080fd5b8101908080359060200190640100000000811115610d6d57600080fd5b820183602082011115610d7f57600080fd5b80359060200191846020830284011164010000000083111715610da157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506122e5565b005b348015610dfe57600080fd5b50610e4d60048036036040811015610e1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061241c565b005b348015610e5b57600080fd5b50610e8860048036036020811015610e7257600080fd5b81019080803590602001909291905050506125d2565b005b348015610e9657600080fd5b50610f9a60048036036080811015610ead57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f1457600080fd5b820183602082011115610f2657600080fd5b80359060200191846001830284011164010000000083111715610f4857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061268b565b005b348015610fa857600080fd5b50610fd560048036036020811015610fbf57600080fd5b8101908080359060200190929190505050612703565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611015578082015181840152602081019050610ffa565b50505050905090810190601f1680156110425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561105c57600080fd5b506110896004803603602081101561107357600080fd5b81019080803590602001909291905050506129d4565b005b34801561109757600080fd5b506110fa600480360360408110156110ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b2c565b60405180821515815260200191505060405180910390f35b34801561111e57600080fd5b506111616004803603602081101561113557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc0565b005b61118f6004803603602081101561117957600080fd5b8101908080359060200190929190505050612db5565b005b34801561119d57600080fd5b506111a6613068565b6040518082815260200191505060405180910390f35b3480156111c857600080fd5b506111d161306e565b6040518082815260200191505060405180910390f35b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112825750600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b80156112915750600d54600e54105b9050919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b5050505050905090565b60006113ac8261311c565b611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614972602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611444613139565b73ffffffffffffffffffffffffffffffffffffffff16611462612160565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081101580156114fd575060028111155b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642073746174650000000000000000000000000000000000000081525060200191505060405180910390fd5b8060128190555050565b600061158482611d83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a256021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661162a613139565b73ffffffffffffffffffffffffffffffffffffffff161480611659575061165881611653613139565b612b2c565b5b6116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806148a46038913960400191505060405180910390fd5b6116b88383613141565b505050565b600b5481565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b505050505081565b611769613139565b73ffffffffffffffffffffffffffffffffffffffff16611787612160565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f90805190602001906118269291906146bd565b5050565b60006118366002613073565b905090565b61184c611846613139565b826131fa565b6118a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614a466031913960400191505060405180910390fd5b6118ac8383836132ee565b505050565b6118b9613139565b73ffffffffffffffffffffffffffffffffffffffff166118d7612160565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61271061197e825161197061182a565b61353190919063ffffffff16565b11156119d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ab26023913960400191505060405180910390fd5b60006119df61182a565b905060005b8251811015611a1957611a0c8382815181106119fc57fe5b60200260200101518284016135b9565b80806001019150506119e4565b505050565b6000611a7182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206135d790919063ffffffff16565b905092915050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061482c6026913960400191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600e5481565b611b83613139565b73ffffffffffffffffffffffffffffffffffffffff16611ba1612160565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c75573d6000803e3d6000fd5b5050565b611c948383836040518060200160405280600081525061268b565b505050565b600d5481565b600080611cb68360026135f190919063ffffffff16565b50905080915050919050565b611cca613139565b73ffffffffffffffffffffffffffffffffffffffff16611ce8612160565b73ffffffffffffffffffffffffffffffffffffffff1614611d71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611d7a8161361d565b50565b60125481565b6000611db3826040518060600160405280602981526020016149066029913960026136379092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806148dc602a913960400191505060405180910390fd5b611f2a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613656565b9050919050565b611f39613139565b73ffffffffffffffffffffffffffffffffffffffff16611f57612160565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6120a9613139565b73ffffffffffffffffffffffffffffffffffffffff166120c7612160565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612192613139565b73ffffffffffffffffffffffffffffffffffffffff166121b0612160565b73ffffffffffffffffffffffffffffffffffffffff1614612239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b5050505050905090565b6122ed613139565b73ffffffffffffffffffffffffffffffffffffffff1661230b612160565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8151811015612418576001601060008484815181106123b257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050612397565b5050565b612424613139565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560006124d2613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661257f613139565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6125da613139565b73ffffffffffffffffffffffffffffffffffffffff166125f8612160565b73ffffffffffffffffffffffffffffffffffffffff1614612681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b61269c612696613139565b836131fa565b6126f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614a466031913960400191505060405180910390fd5b6126fd8484848461366b565b50505050565b606061270e8261311c565b612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806149f6602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561280c5780601f106127e15761010080835404028352916020019161280c565b820191906000526020600020905b8154815290600101906020018083116127ef57829003601f168201915b50505050509050606061281d611dba565b90506000815114156128335781925050506129cf565b6000825111156129045780826040516020018083805190602001908083835b602083106128755780518252602082019150602081019050602083039250612852565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106128c657805182526020820191506020810190506020830392506128a3565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506129cf565b8061290e856136dd565b6040516020018083805190602001908083835b602083106129445780518252602082019150602081019050602083039250612921565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106129955780518252602082019150602081019050602083039250612972565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6129dc613139565b73ffffffffffffffffffffffffffffffffffffffff166129fa612160565b73ffffffffffffffffffffffffffffffffffffffff1614612a83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612710612aa082612a9261182a565b61353190919063ffffffff16565b1115612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ab26023913960400191505060405180910390fd5b6000612b0161182a565b905060005b82811015612b2757612b1a338284016135b9565b8080600101915050612b06565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bc8613139565b73ffffffffffffffffffffffffffffffffffffffff16612be6612160565b73ffffffffffffffffffffffffffffffffffffffff1614612c6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147e26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60016012541480612dc857506002601254145b612e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f53616c65206d7573742062652061637469766520746f206d696e74000000000081525060200191505060405180910390fd5b60016012541415612f0457612e4f3382613824565b612ea181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461353190919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ef981600e5461353190919063ffffffff16565b600e81905550612f1a565b60026012541415612f1957612f1881613a1a565b5b5b612710612f3782612f2961182a565b61353190919063ffffffff16565b1115612fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507572636861736520776f756c6420657863656564206d617820737570706c7981525060200191505060405180910390fd5b34612fc182600b54613a7790919063ffffffff16565b1115613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b8181101561306457600061304a61182a565b905061305633826135b9565b508080600101915050613038565b5050565b61271081565b600a81565b600061308182600001613afd565b9050919050565b600061309a836000018360001b613b0e565b905092915050565b60006130ce846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613b7e565b90509392505050565b600080823b905060008111915050919050565b60606130f98484600085613c5a565b90509392505050565b6000613114836000018360001b613e03565b905092915050565b600061313282600261310290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131b483611d83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006132058261311c565b61325a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614878602c913960400191505060405180910390fd5b600061326583611d83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132d457508373ffffffffffffffffffffffffffffffffffffffff166132bc846113a1565b73ffffffffffffffffffffffffffffffffffffffff16145b806132e557506132e48185612b2c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661330e82611d83565b73ffffffffffffffffffffffffffffffffffffffff161461337a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806149cd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148086024913960400191505060405180910390fd5b61340b838383613e26565b613416600082613141565b61346781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2b90919063ffffffff16565b506134b981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308890919063ffffffff16565b506134d0818360026130a29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808284019050838110156135af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6135d3828260405180602001604052806000815250613e45565b5050565b60006135e68360000183613eb6565b60001c905092915050565b6000806000806136048660000186613f39565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906136339291906146bd565b5050565b600061364a846000018460001b84613fd2565b60001c90509392505050565b6000613664826000016140c8565b9050919050565b6136768484846132ee565b613682848484846140d9565b6136d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061477d6032913960400191505060405180910390fd5b50505050565b60606000821415613725576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061381f565b600082905060005b6000821461374f578080600101915050600a828161374757fe5b04915061372d565b60608167ffffffffffffffff8111801561376857600080fd5b506040519080825280601f01601f19166020018201604052801561379b5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461381757600a84816137bc57fe5b0660300160f81b828280600190039350815181106137d657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161380f57fe5b0493506137aa565b819450505050505b919050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061482c6026913960400191505060405180910390fd5b600d54600e5410613922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806147af6033913960400191505060405180910390fd5b600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106139bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614a77603b913960400191505060405180910390fd5b600c54811115613a16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061499e602f913960400191505060405180910390fd5b5050565b600a811115613a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ad56021913960400191505060405180910390fd5b50565b600080831415613a8a5760009050613af7565b6000828402905082848281613a9b57fe5b0414613af2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149516021913960400191505060405180910390fd5b809150505b92915050565b600081600001805490509050919050565b6000613b1a83836142f2565b613b73578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613b78565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613c2557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613c53565b82856000016001830381548110613c3857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b606082471015613cb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148526026913960400191505060405180910390fd5b613cbe856130d7565b613d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613d805780518252602082019150602081019050602083039250613d5d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613de2576040519150601f19603f3d011682016040523d82523d6000602084013e613de7565b606091505b5091509150613df7828286614315565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000613e3d836000018360001b6143e1565b905092915050565b613e4f83836144c9565b613e5c60008484846140d9565b613eb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061477d6032913960400191505060405180910390fd5b505050565b600081836000018054905011613f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061475b6022913960400191505060405180910390fd5b826000018281548110613f2657fe5b9060005260206000200154905092915050565b60008082846000018054905011613f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061492f6022913960400191505060405180910390fd5b6000846000018481548110613fac57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561405e578082015181840152602081019050614043565b50505050905090810190601f16801561408b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106140ac57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006140fa8473ffffffffffffffffffffffffffffffffffffffff166130d7565b61410757600190506142ea565b606061427163150b7a0260e01b61411c613139565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156141a0578082015181840152602081019050614185565b50505050905090810190601f1680156141cd5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161477d603291398773ffffffffffffffffffffffffffffffffffffffff166130ea9092919063ffffffff16565b9050600081806020019051602081101561428a57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608315614325578290506143da565b6000835111156143385782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561439f578082015181840152602081019050614384565b50505050905090810190601f1680156143cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b600080836001016000848152602001908152602001600020549050600081146144bd576000600182039050600060018660000180549050039050600086600001828154811061442c57fe5b906000526020600020015490508087600001848154811061444957fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061448157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506144c3565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561456c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6145758161311c565b156145e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6145f460008383613e26565b61464581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308890919063ffffffff16565b5061465c818360026130a29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106146fe57805160ff191683800117855561472c565b8280016001018555821561472c579182015b8281111561472b578251825591602001919060010190614710565b5b509050614739919061473d565b5090565b5b8082111561475657600081600090555060010161473e565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d696e74696e6720776f756c642065786365656420746f74616c20616c6c6f77656420666f72206561726c79206163636573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737353656e646572206973206e6f74206f6e20746865206561726c7920616363657373206c697374416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e74203320746f6b656e7320696e20746865206561726c79206163636573732073616c654552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656453656e6465722063616e6e6f7420636c61696d20616e79206d6f7265206561726c7920616363657373206661676320617420746869732074696d655265736572766174696f6e20776f756c6420657863656564206d617820737570706c7943616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65a2646970667358221220fa6c9059e2ace2e90db149638e3323765bf084c23192506c6c953de7aa35e76164736f6c634300070000334552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572697066733a2f2f516d576f6b51615369354d41586e3557774b566a786650746b4e5876694563654e57434753706f4148474d6d51652f416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c
Deployed Bytecode
0x6080604052600436106102455760003560e01c8063603f4d521161013957806395da2da5116100b6578063d031370b1161007a578063d031370b14611050578063e985e9c51461108b578063f2fde38b14611112578063f3c191f014611163578063f47c84c514611191578063f9c9816f146111bc57610245565b806395da2da514610d2d578063a22cb46514610df2578063b7a67ab214610e4f578063b88d4fde14610e8a578063c87b56dd14610f9c57610245565b806382935752116100fd5780638293575214610bbb57806389a7aeac14610bf65780638da5cb5b14610c2157806391b7f5ed14610c6257806395d89b4114610c9d57610245565b8063603f4d5214610a1f5780636352211e14610a4a5780636c0360eb14610aaf57806370a0823114610b3f578063715018a614610ba457610245565b806323b872dd116101c75780633ccfd60b1161018b5780633ccfd60b1461084b57806342842e0e14610862578063460a0e93146108dd5780634f6ccce71461090857806355f804b31461095757610245565b806323b872dd1461065a57806323bbfec5146106d55780632f745c591461079a5780632fbce69d1461080957806334abf28d1461082057610245565b8063095ea7b31161020e578063095ea7b3146104515780630d39fc81146104ac5780630f7309e8146104d7578063109695231461056757806318160ddd1461062f57610245565b8062fc5d111461024a57806301ffc9a7146102b157806306fdde0314610321578063081812fc146103b1578063084c408814610416575b600080fd5b34801561025657600080fd5b506102996004803603602081101561026d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e7565b60405180821515815260200191505060405180910390f35b3480156102bd57600080fd5b50610309600480360360208110156102d457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611298565b60405180821515815260200191505060405180910390f35b34801561032d57600080fd5b506103366112ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561037657808201518184015260208101905061035b565b50505050905090810190601f1680156103a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103bd57600080fd5b506103ea600480360360208110156103d457600080fd5b81019080803590602001909291905050506113a1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561042257600080fd5b5061044f6004803603602081101561043957600080fd5b810190808035906020019092919050505061143c565b005b34801561045d57600080fd5b506104aa6004803603604081101561047457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611579565b005b3480156104b857600080fd5b506104c16116bd565b6040518082815260200191505060405180910390f35b3480156104e357600080fd5b506104ec6116c3565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052c578082015181840152602081019050610511565b50505050905090810190601f1680156105595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561057357600080fd5b5061062d6004803603602081101561058a57600080fd5b81019080803590602001906401000000008111156105a757600080fd5b8201836020820111156105b957600080fd5b803590602001918460018302840111640100000000831117156105db57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611761565b005b34801561063b57600080fd5b5061064461182a565b6040518082815260200191505060405180910390f35b34801561066657600080fd5b506106d36004803603606081101561067d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061183b565b005b3480156106e157600080fd5b50610798600480360360208110156106f857600080fd5b810190808035906020019064010000000081111561071557600080fd5b82018360208201111561072757600080fd5b8035906020019184602083028401116401000000008311171561074957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506118b1565b005b3480156107a657600080fd5b506107f3600480360360408110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a1e565b6040518082815260200191505060405180910390f35b34801561081557600080fd5b5061081e611a79565b005b34801561082c57600080fd5b50610835611b75565b6040518082815260200191505060405180910390f35b34801561085757600080fd5b50610860611b7b565b005b34801561086e57600080fd5b506108db6004803603606081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c79565b005b3480156108e957600080fd5b506108f2611c99565b6040518082815260200191505060405180910390f35b34801561091457600080fd5b506109416004803603602081101561092b57600080fd5b8101908080359060200190929190505050611c9f565b6040518082815260200191505060405180910390f35b34801561096357600080fd5b50610a1d6004803603602081101561097a57600080fd5b810190808035906020019064010000000081111561099757600080fd5b8201836020820111156109a957600080fd5b803590602001918460018302840111640100000000831117156109cb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cc2565b005b348015610a2b57600080fd5b50610a34611d7d565b6040518082815260200191505060405180910390f35b348015610a5657600080fd5b50610a8360048036036020811015610a6d57600080fd5b8101908080359060200190929190505050611d83565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610abb57600080fd5b50610ac4611dba565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b04578082015181840152602081019050610ae9565b50505050905090810190601f168015610b315780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4b57600080fd5b50610b8e60048036036020811015610b6257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e5c565b6040518082815260200191505060405180910390f35b348015610bb057600080fd5b50610bb9611f31565b005b348015610bc757600080fd5b50610bf460048036036020811015610bde57600080fd5b81019080803590602001909291905050506120a1565b005b348015610c0257600080fd5b50610c0b61215a565b6040518082815260200191505060405180910390f35b348015610c2d57600080fd5b50610c36612160565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c6e57600080fd5b50610c9b60048036036020811015610c8557600080fd5b810190808035906020019092919050505061218a565b005b348015610ca957600080fd5b50610cb2612243565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cf2578082015181840152602081019050610cd7565b50505050905090810190601f168015610d1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d3957600080fd5b50610df060048036036020811015610d5057600080fd5b8101908080359060200190640100000000811115610d6d57600080fd5b820183602082011115610d7f57600080fd5b80359060200191846020830284011164010000000083111715610da157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506122e5565b005b348015610dfe57600080fd5b50610e4d60048036036040811015610e1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061241c565b005b348015610e5b57600080fd5b50610e8860048036036020811015610e7257600080fd5b81019080803590602001909291905050506125d2565b005b348015610e9657600080fd5b50610f9a60048036036080811015610ead57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f1457600080fd5b820183602082011115610f2657600080fd5b80359060200191846001830284011164010000000083111715610f4857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061268b565b005b348015610fa857600080fd5b50610fd560048036036020811015610fbf57600080fd5b8101908080359060200190929190505050612703565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611015578082015181840152602081019050610ffa565b50505050905090810190601f1680156110425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561105c57600080fd5b506110896004803603602081101561107357600080fd5b81019080803590602001909291905050506129d4565b005b34801561109757600080fd5b506110fa600480360360408110156110ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b2c565b60405180821515815260200191505060405180910390f35b34801561111e57600080fd5b506111616004803603602081101561113557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bc0565b005b61118f6004803603602081101561117957600080fd5b8101908080359060200190929190505050612db5565b005b34801561119d57600080fd5b506111a6613068565b6040518082815260200191505060405180910390f35b3480156111c857600080fd5b506111d161306e565b6040518082815260200191505060405180910390f35b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112825750600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b80156112915750600d54600e54105b9050919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b5050505050905090565b60006113ac8261311c565b611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614972602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611444613139565b73ffffffffffffffffffffffffffffffffffffffff16611462612160565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081101580156114fd575060028111155b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f496e76616c69642073746174650000000000000000000000000000000000000081525060200191505060405180910390fd5b8060128190555050565b600061158482611d83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a256021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661162a613139565b73ffffffffffffffffffffffffffffffffffffffff161480611659575061165881611653613139565b612b2c565b5b6116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806148a46038913960400191505060405180910390fd5b6116b88383613141565b505050565b600b5481565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156117595780601f1061172e57610100808354040283529160200191611759565b820191906000526020600020905b81548152906001019060200180831161173c57829003601f168201915b505050505081565b611769613139565b73ffffffffffffffffffffffffffffffffffffffff16611787612160565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f90805190602001906118269291906146bd565b5050565b60006118366002613073565b905090565b61184c611846613139565b826131fa565b6118a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614a466031913960400191505060405180910390fd5b6118ac8383836132ee565b505050565b6118b9613139565b73ffffffffffffffffffffffffffffffffffffffff166118d7612160565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61271061197e825161197061182a565b61353190919063ffffffff16565b11156119d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ab26023913960400191505060405180910390fd5b60006119df61182a565b905060005b8251811015611a1957611a0c8382815181106119fc57fe5b60200260200101518284016135b9565b80806001019150506119e4565b505050565b6000611a7182600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206135d790919063ffffffff16565b905092915050565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061482c6026913960400191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b600e5481565b611b83613139565b73ffffffffffffffffffffffffffffffffffffffff16611ba1612160565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611c75573d6000803e3d6000fd5b5050565b611c948383836040518060200160405280600081525061268b565b505050565b600d5481565b600080611cb68360026135f190919063ffffffff16565b50905080915050919050565b611cca613139565b73ffffffffffffffffffffffffffffffffffffffff16611ce8612160565b73ffffffffffffffffffffffffffffffffffffffff1614611d71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611d7a8161361d565b50565b60125481565b6000611db3826040518060600160405280602981526020016149066029913960026136379092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806148dc602a913960400191505060405180910390fd5b611f2a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613656565b9050919050565b611f39613139565b73ffffffffffffffffffffffffffffffffffffffff16611f57612160565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6120a9613139565b73ffffffffffffffffffffffffffffffffffffffff166120c7612160565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612192613139565b73ffffffffffffffffffffffffffffffffffffffff166121b0612160565b73ffffffffffffffffffffffffffffffffffffffff1614612239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b8190555050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b5050505050905090565b6122ed613139565b73ffffffffffffffffffffffffffffffffffffffff1661230b612160565b73ffffffffffffffffffffffffffffffffffffffff1614612394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8151811015612418576001601060008484815181106123b257fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050612397565b5050565b612424613139565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600560006124d2613139565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661257f613139565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6125da613139565b73ffffffffffffffffffffffffffffffffffffffff166125f8612160565b73ffffffffffffffffffffffffffffffffffffffff1614612681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b61269c612696613139565b836131fa565b6126f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614a466031913960400191505060405180910390fd5b6126fd8484848461366b565b50505050565b606061270e8261311c565b612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806149f6602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561280c5780601f106127e15761010080835404028352916020019161280c565b820191906000526020600020905b8154815290600101906020018083116127ef57829003601f168201915b50505050509050606061281d611dba565b90506000815114156128335781925050506129cf565b6000825111156129045780826040516020018083805190602001908083835b602083106128755780518252602082019150602081019050602083039250612852565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106128c657805182526020820191506020810190506020830392506128a3565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506129cf565b8061290e856136dd565b6040516020018083805190602001908083835b602083106129445780518252602082019150602081019050602083039250612921565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106129955780518252602082019150602081019050602083039250612972565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6129dc613139565b73ffffffffffffffffffffffffffffffffffffffff166129fa612160565b73ffffffffffffffffffffffffffffffffffffffff1614612a83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612710612aa082612a9261182a565b61353190919063ffffffff16565b1115612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614ab26023913960400191505060405180910390fd5b6000612b0161182a565b905060005b82811015612b2757612b1a338284016135b9565b8080600101915050612b06565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bc8613139565b73ffffffffffffffffffffffffffffffffffffffff16612be6612160565b73ffffffffffffffffffffffffffffffffffffffff1614612c6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147e26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60016012541480612dc857506002601254145b612e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f53616c65206d7573742062652061637469766520746f206d696e74000000000081525060200191505060405180910390fd5b60016012541415612f0457612e4f3382613824565b612ea181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461353190919063ffffffff16565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ef981600e5461353190919063ffffffff16565b600e81905550612f1a565b60026012541415612f1957612f1881613a1a565b5b5b612710612f3782612f2961182a565b61353190919063ffffffff16565b1115612fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507572636861736520776f756c6420657863656564206d617820737570706c7981525060200191505060405180910390fd5b34612fc182600b54613a7790919063ffffffff16565b1115613035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b8181101561306457600061304a61182a565b905061305633826135b9565b508080600101915050613038565b5050565b61271081565b600a81565b600061308182600001613afd565b9050919050565b600061309a836000018360001b613b0e565b905092915050565b60006130ce846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613b7e565b90509392505050565b600080823b905060008111915050919050565b60606130f98484600085613c5a565b90509392505050565b6000613114836000018360001b613e03565b905092915050565b600061313282600261310290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131b483611d83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006132058261311c565b61325a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614878602c913960400191505060405180910390fd5b600061326583611d83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132d457508373ffffffffffffffffffffffffffffffffffffffff166132bc846113a1565b73ffffffffffffffffffffffffffffffffffffffff16145b806132e557506132e48185612b2c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661330e82611d83565b73ffffffffffffffffffffffffffffffffffffffff161461337a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806149cd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148086024913960400191505060405180910390fd5b61340b838383613e26565b613416600082613141565b61346781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613e2b90919063ffffffff16565b506134b981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308890919063ffffffff16565b506134d0818360026130a29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808284019050838110156135af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6135d3828260405180602001604052806000815250613e45565b5050565b60006135e68360000183613eb6565b60001c905092915050565b6000806000806136048660000186613f39565b915091508160001c8160001c9350935050509250929050565b80600990805190602001906136339291906146bd565b5050565b600061364a846000018460001b84613fd2565b60001c90509392505050565b6000613664826000016140c8565b9050919050565b6136768484846132ee565b613682848484846140d9565b6136d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061477d6032913960400191505060405180910390fd5b50505050565b60606000821415613725576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061381f565b600082905060005b6000821461374f578080600101915050600a828161374757fe5b04915061372d565b60608167ffffffffffffffff8111801561376857600080fd5b506040519080825280601f01601f19166020018201604052801561379b5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461381757600a84816137bc57fe5b0660300160f81b828280600190039350815181106137d657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161380f57fe5b0493506137aa565b819450505050505b919050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061482c6026913960400191505060405180910390fd5b600d54600e5410613922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806147af6033913960400191505060405180910390fd5b600c54601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106139bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180614a77603b913960400191505060405180910390fd5b600c54811115613a16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061499e602f913960400191505060405180910390fd5b5050565b600a811115613a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ad56021913960400191505060405180910390fd5b50565b600080831415613a8a5760009050613af7565b6000828402905082848281613a9b57fe5b0414613af2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149516021913960400191505060405180910390fd5b809150505b92915050565b600081600001805490509050919050565b6000613b1a83836142f2565b613b73578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613b78565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613c2557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613c53565b82856000016001830381548110613c3857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b606082471015613cb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148526026913960400191505060405180910390fd5b613cbe856130d7565b613d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613d805780518252602082019150602081019050602083039250613d5d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613de2576040519150601f19603f3d011682016040523d82523d6000602084013e613de7565b606091505b5091509150613df7828286614315565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000613e3d836000018360001b6143e1565b905092915050565b613e4f83836144c9565b613e5c60008484846140d9565b613eb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061477d6032913960400191505060405180910390fd5b505050565b600081836000018054905011613f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061475b6022913960400191505060405180910390fd5b826000018281548110613f2657fe5b9060005260206000200154905092915050565b60008082846000018054905011613f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061492f6022913960400191505060405180910390fd5b6000846000018481548110613fac57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561405e578082015181840152602081019050614043565b50505050905090810190601f16801561408b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106140ac57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006140fa8473ffffffffffffffffffffffffffffffffffffffff166130d7565b61410757600190506142ea565b606061427163150b7a0260e01b61411c613139565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156141a0578082015181840152602081019050614185565b50505050905090810190601f1680156141cd5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161477d603291398773ffffffffffffffffffffffffffffffffffffffff166130ea9092919063ffffffff16565b9050600081806020019051602081101561428a57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608315614325578290506143da565b6000835111156143385782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561439f578082015181840152602081019050614384565b50505050905090810190601f1680156143cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b600080836001016000848152602001908152602001600020549050600081146144bd576000600182039050600060018660000180549050039050600086600001828154811061442c57fe5b906000526020600020015490508087600001848154811061444957fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061448157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506144c3565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561456c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6145758161311c565b156145e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6145f460008383613e26565b61464581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061308890919063ffffffff16565b5061465c818360026130a29092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106146fe57805160ff191683800117855561472c565b8280016001018555821561472c579182015b8281111561472b578251825591602001919060010190614710565b5b509050614739919061473d565b5090565b5b8082111561475657600081600090555060010161473e565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724d696e74696e6720776f756c642065786365656420746f74616c20616c6c6f77656420666f72206561726c79206163636573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f206164647265737353656e646572206973206e6f74206f6e20746865206561726c7920616363657373206c697374416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e74203320746f6b656e7320696e20746865206561726c79206163636573732073616c654552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656453656e6465722063616e6e6f7420636c61696d20616e79206d6f7265206561726c7920616363657373206661676320617420746869732074696d655265736572766174696f6e20776f756c6420657863656564206d617820737570706c7943616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d65a2646970667358221220fa6c9059e2ace2e90db149638e3323765bf084c23192506c6c953de7aa35e76164736f6c63430007000033
Deployed Bytecode Sourcemap
73193:5944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77723:294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13134:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59610:308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75132:163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59109:435;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73319:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74010:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75410:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58537:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60669:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;76109:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58249:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;76511:246;;;;;;;;;;;;;:::i;:::-;;73866:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74521:134;;;;;;;;;;;;;:::i;:::-;;61116:185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73806:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58825:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75303:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74289:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56268:289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58068:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55898:308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72418:148;;;;;;;;;;;;;:::i;:::-;;75735:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73754:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71767:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;75518:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75869:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59990:327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75611:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61372:365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56968:879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74712:359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60388:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72721:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;78064:1070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73636:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73448:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;77723:294;77792:4;77829:20;:26;77850:4;77829:26;;;;;;;;;;;;;;;;;;;;;;;;;:100;;;;;77905:24;;77872;:30;77897:4;77872:30;;;;;;;;;;;;;;;;:57;77829:100;:180;;;;;77980:29;;77946:31;;:63;77829:180;77809:200;;77723:294;;;:::o;13134:200::-;13264:4;13293:20;:33;13314:11;13293:33;;;;;;;;;;;;;;;;;;;;;;;;;;;13286:40;;13134:200;;;:::o;56624:100::-;56678:13;56711:5;56704:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56624:100;:::o;59610:308::-;59731:7;59778:16;59786:7;59778;:16::i;:::-;59756:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59886:15;:24;59902:7;59886:24;;;;;;;;;;;;;;;;;;;;;59879:31;;59610:308;;;:::o;75132:163::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75220:1:::1;75208:8;:13;;:30;;;;;75237:1;75225:8;:13;;75208:30;75200:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;75279:8;75267:9;:20;;;;75132:163:::0;:::o;59109:435::-;59190:13;59206:23;59221:7;59206:14;:23::i;:::-;59190:39;;59254:5;59248:11;;:2;:11;;;;59240:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59348:5;59332:21;;:12;:10;:12::i;:::-;:21;;;:86;;;;59374:44;59398:5;59405:12;:10;:12::i;:::-;59374:23;:44::i;:::-;59332:86;59310:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59515:21;59524:2;59528:7;59515:8;:21::i;:::-;59109:435;;;:::o;73319:43::-;;;;:::o;74010:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75410:100::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75498:4:::1;75485:10;:17;;;;;;;;;;;;:::i;:::-;;75410:100:::0;:::o;58537:211::-;58598:7;58719:21;:12;:19;:21::i;:::-;58712:28;;58537:211;:::o;60669:376::-;60878:41;60897:12;:10;:12::i;:::-;60911:7;60878:18;:41::i;:::-;60856:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61009:28;61019:4;61025:2;61029:7;61009:9;:28::i;:::-;60669:376;;;:::o;76109:394::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73673:5:::1;76211:35;76229:9;:16;76211:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:49;;76189:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76334:14;76351:13;:11;:13::i;:::-;76334:30;;76375:9;76395:101;76411:9;:16;76407:1;:20;76395:101;;;76449:35;76459:9;76469:1;76459:12;;;;;;;;;;;;;;76482:1;76473:6;:10;76449:9;:35::i;:::-;76429:3;;;;;;;76395:101;;;72058:1;;76109:394:::0;:::o;58249:212::-;58391:7;58423:30;58447:5;58423:13;:20;58437:5;58423:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;58416:37;;58249:212;;;;:::o;76511:246::-;76600:20;:32;76621:10;76600:32;;;;;;;;;;;;;;;;;;;;;;;;;76578:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76744:5;76709:20;:32;76730:10;76709:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;76511:246::o;73866:50::-;;;;:::o;74521:134::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74569:15:::1;74587:21;74569:39;;74619:10;:19;;:28;74639:7;74619:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72058:1;74521:134::o:0;61116:185::-;61254:39;61271:4;61277:2;61281:7;61254:39;;;;;;;;;;;;:16;:39::i;:::-;61116:185;;;:::o;73806:51::-;;;;:::o;58825:222::-;58945:7;58971:15;58992:22;59008:5;58992:12;:15;;:22;;;;:::i;:::-;58970:44;;;59032:7;59025:14;;;58825:222;;;:::o;75303:99::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75374:20:::1;75386:7;75374:11;:20::i;:::-;75303:99:::0;:::o;74289:28::-;;;;:::o;56268:289::-;56385:7;56430:119;56465:7;56430:119;;;;;;;;;;;;;;;;;:12;:16;;:119;;;;;:::i;:::-;56410:139;;56268:289;;;:::o;58068:97::-;58116:13;58149:8;58142:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58068:97;:::o;55898:308::-;56015:7;56079:1;56062:19;;:5;:19;;;;56040:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56169:29;:13;:20;56183:5;56169:20;;;;;;;;;;;;;;;:27;:29::i;:::-;56162:36;;55898:308;;;:::o;72418:148::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72525:1:::1;72488:40;;72509:6;;;;;;;;;;;72488:40;;;;;;;;;;;;72556:1;72539:6;;:19;;;;;;;;;;;;;;;;;;72418:148::o:0;75735:126::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75850:3:::1;75818:29;:35;;;;75735:126:::0;:::o;73754:43::-;;;;:::o;71767:87::-;71813:7;71840:6;;;;;;;;;;;71833:13;;71767:87;:::o;75518:85::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75590:5:::1;75579:8;:16;;;;75518:85:::0;:::o;56793:104::-;56849:13;56882:7;56875:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56793:104;:::o;75869:232::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75984:9:::1;75979:115;76003:9;:16;75999:1;:20;75979:115;;;76078:4;76041:20;:34;76062:9;76072:1;76062:12;;;;;;;;;;;;;;76041:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;76021:3;;;;;;;75979:115;;;;75869:232:::0;:::o;59990:327::-;60137:12;:10;:12::i;:::-;60125:24;;:8;:24;;;;60117:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60237:8;60192:18;:32;60211:12;:10;:12::i;:::-;60192:32;;;;;;;;;;;;;;;:42;60225:8;60192:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;60290:8;60261:48;;60276:12;:10;:12::i;:::-;60261:48;;;60300:8;60261:48;;;;;;;;;;;;;;;;;;;;59990:327;;:::o;75611:116::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75716:3:::1;75689:24;:30;;;;75611:116:::0;:::o;61372:365::-;61561:41;61580:12;:10;:12::i;:::-;61594:7;61561:18;:41::i;:::-;61539:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61690:39;61704:4;61710:2;61714:7;61723:5;61690:13;:39::i;:::-;61372:365;;;;:::o;56968:879::-;57086:13;57139:16;57147:7;57139;:16::i;:::-;57117:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57243:23;57269:10;:19;57280:7;57269:19;;;;;;;;;;;57243:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57299:18;57320:9;:7;:9::i;:::-;57299:30;;57427:1;57411:4;57405:18;:23;57401:72;;;57452:9;57445:16;;;;;;57401:72;57603:1;57583:9;57577:23;:27;57573:108;;;57652:4;57658:9;57635:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57621:48;;;;;;57573:108;57813:4;57819:18;:7;:16;:18::i;:::-;57796:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57782:57;;;;56968:879;;;;:::o;74712:359::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73673:5:::1;74801:25;74819:6;74801:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:39;;74779:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74914:14;74931:13;:11;:13::i;:::-;74914:30;;74955:9;74975:89;74991:6;74987:1;:10;74975:89;;;75019:33;75029:10;75050:1;75041:6;:10;75019:9;:33::i;:::-;74999:3;;;;;;;74975:89;;;72058:1;;74712:359:::0;:::o;60388:214::-;60530:4;60559:18;:25;60578:5;60559:25;;;;;;;;;;;;;;;:35;60585:8;60559:35;;;;;;;;;;;;;;;;;;;;;;;;;60552:42;;60388:214;;;;:::o;72721:281::-;71998:12;:10;:12::i;:::-;71987:23;;:7;:5;:7::i;:::-;:23;;;71979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72844:1:::1;72824:22;;:8;:22;;;;72802:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72957:8;72928:38;;72949:6;;;;;;;;;;;72928:38;;;;;;;;;;;;72986:8;72977:6;;:17;;;;;;;;;;;;;;;;;;72721:281:::0;:::o;78064:1070::-;78167:1;78154:9;;:14;:32;;;;78185:1;78172:9;;:14;78154:32;78132:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78269:1;78256:9;;:14;78252:438;;;78287:45;78305:10;78317:14;78287:17;:45::i;:::-;78386:88;78459:14;78386:24;:68;78429:10;78386:68;;;;;;;;;;;;;;;;:72;;:88;;;;:::i;:::-;78347:24;:36;78372:10;78347:36;;;;;;;;;;;;;;;:127;;;;78523:69;78577:14;78523:31;;:53;;:69;;;;:::i;:::-;78489:31;:103;;;;78252:438;;;78627:1;78614:9;;:14;78610:80;;;78645:33;78663:14;78645:17;:33::i;:::-;78610:80;78252:438;73673:5;78722:33;78740:14;78722:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;78700:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78894:9;78862:28;78875:14;78862:8;;:12;;:28;;;;:::i;:::-;:41;;78840:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78980:9;78975:152;78999:14;78995:1;:18;78975:152;;;79035:17;79055:13;:11;:13::i;:::-;79035:33;;79083:32;79093:10;79105:9;79083;:32::i;:::-;78975:152;79015:3;;;;;;;78975:152;;;;78064:1070;:::o;73636:42::-;73673:5;73636:42;:::o;73448:43::-;73489:2;73448:43;:::o;48951:155::-;49047:7;49079:19;49087:3;:10;;49079:7;:19::i;:::-;49072:26;;48951:155;;;:::o;39108:131::-;39175:4;39199:32;39204:3;:10;;39224:5;39216:14;;39199:4;:32::i;:::-;39192:39;;39108:131;;;;:::o;48046:219::-;48169:4;48193:64;48198:3;:10;;48218:3;48210:12;;48248:5;48232:23;;48224:32;;48193:4;:64::i;:::-;48186:71;;48046:219;;;;;:::o;22441:444::-;22501:4;22709:12;22833:7;22821:20;22813:28;;22876:1;22869:4;:8;22862:15;;;22441:444;;;:::o;25478:229::-;25615:12;25647:52;25669:6;25677:4;25683:1;25686:12;25647:21;:52::i;:::-;25640:59;;25478:229;;;;;:::o;48680:183::-;48791:4;48820:35;48830:3;:10;;48850:3;48842:12;;48820:9;:35::i;:::-;48813:42;;48680:183;;;;:::o;63284:127::-;63349:4;63373:30;63395:7;63373:12;:21;;:30;;;;:::i;:::-;63366:37;;63284:127;;;:::o;3278:106::-;3331:15;3366:10;3359:17;;3278:106;:::o;69698:192::-;69800:2;69773:15;:24;69789:7;69773:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69856:7;69852:2;69818:46;;69827:23;69842:7;69827:14;:23::i;:::-;69818:46;;;;;;;;;;;;69698:192;;:::o;63578:459::-;63707:4;63751:16;63759:7;63751;:16::i;:::-;63729:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63850:13;63866:23;63881:7;63866:14;:23::i;:::-;63850:39;;63919:5;63908:16;;:7;:16;;;:64;;;;63965:7;63941:31;;:20;63953:7;63941:11;:20::i;:::-;:31;;;63908:64;:120;;;;63989:39;64013:5;64020:7;63989:23;:39::i;:::-;63908:120;63900:129;;;63578:459;;;;:::o;66889:670::-;67062:4;67035:31;;:23;67050:7;67035:14;:23::i;:::-;:31;;;67013:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67186:1;67172:16;;:2;:16;;;;67164:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67242:39;67263:4;67269:2;67273:7;67242:20;:39::i;:::-;67346:29;67363:1;67367:7;67346:8;:29::i;:::-;67388:35;67415:7;67388:13;:19;67402:4;67388:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;67434:30;67456:7;67434:13;:17;67448:2;67434:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;67477:29;67494:7;67503:2;67477:12;:16;;:29;;;;;:::i;:::-;;67543:7;67539:2;67524:27;;67533:4;67524:27;;;;;;;;;;;;66889:670;;;:::o;16902:179::-;16960:7;16980:9;16996:1;16992;:5;16980:17;;17021:1;17016;:6;;17008:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17072:1;17065:8;;;16902:179;;;;:::o;64380:110::-;64456:26;64466:2;64470:7;64456:26;;;;;;;;;;;;:9;:26::i;:::-;64380:110;;:::o;40393:169::-;40491:7;40531:22;40535:3;:10;;40547:5;40531:3;:22::i;:::-;40523:31;;40516:38;;40393:169;;;;:::o;49454:268::-;49561:7;49570;49596:11;49609:13;49626:22;49630:3;:10;;49642:5;49626:3;:22::i;:::-;49595:53;;;;49675:3;49667:12;;49705:5;49697:14;;49659:55;;;;;;49454:268;;;;;:::o;68220:100::-;68304:8;68293;:19;;;;;;;;;;;;:::i;:::-;;68220:100;:::o;50836:292::-;50977:7;51059:44;51064:3;:10;;51084:3;51076:12;;51090;51059:4;:44::i;:::-;51051:53;;50997:123;;50836:292;;;;;:::o;39925:114::-;39985:7;40012:19;40020:3;:10;;40012:7;:19::i;:::-;40005:26;;39925:114;;;:::o;62619:352::-;62776:28;62786:4;62792:2;62796:7;62776:9;:28::i;:::-;62837:48;62860:4;62866:2;62870:7;62879:5;62837:22;:48::i;:::-;62815:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62619:352;;;;:::o;51375:748::-;51431:13;51661:1;51652:5;:10;51648:53;;;51679:10;;;;;;;;;;;;;;;;;;;;;51648:53;51711:12;51726:5;51711:20;;51742:14;51767:78;51782:1;51774:4;:9;51767:78;;51800:8;;;;;;;51831:2;51823:10;;;;;;;;;51767:78;;;51855:19;51887:6;51877:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51855:39;;51905:13;51930:1;51921:6;:10;51905:26;;51949:5;51942:12;;51965:119;51980:1;51972:4;:9;51965:119;;52042:2;52035:4;:9;;;;;;52029:2;:16;52016:31;;51998:6;52005:7;;;;;;;51998:15;;;;;;;;;;;:49;;;;;;;;;;;52070:2;52062:10;;;;;;;;;51965:119;;;52108:6;52094:21;;;;;;51375:748;;;;:::o;76972:743::-;77109:20;:28;77130:6;77109:28;;;;;;;;;;;;;;;;;;;;;;;;;77087:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77270:29;;77236:31;;:63;77214:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77446:24;;77411;:32;77436:6;77411:32;;;;;;;;;;;;;;;;:59;77389:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77608:24;;77590:14;:42;;77568:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76972:743;;:::o;76765:199::-;73489:2;76863:14;:32;;76841:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76765:199;:::o;17781:220::-;17839:7;17868:1;17863;:6;17859:20;;;17878:1;17871:8;;;;17859:20;17890:9;17906:1;17902;:5;17890:17;;17935:1;17930;17926;:5;;;;;;:10;17918:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17992:1;17985:8;;;17781:220;;;;;:::o;45296:110::-;45352:7;45379:3;:12;;:19;;;;45372:26;;45296:110;;;:::o;32116:414::-;32179:4;32201:21;32211:3;32216:5;32201:9;:21::i;:::-;32196:327;;32239:3;:11;;32256:5;32239:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32422:3;:11;;:18;;;;32400:3;:12;;:19;32413:5;32400:19;;;;;;;;;;;:40;;;;32462:4;32455:11;;;;32196:327;32506:5;32499:12;;32116:414;;;;;:::o;42486:737::-;42596:4;42712:16;42731:3;:12;;:17;42744:3;42731:17;;;;;;;;;;;;42712:36;;42777:1;42765:8;:13;42761:455;;;42845:3;:12;;42863:36;;;;;;;;42879:3;42863:36;;;;42892:5;42863:36;;;42845:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43058:3;:12;;:19;;;;43038:3;:12;;:17;43051:3;43038:17;;;;;;;;;;;:39;;;;43099:4;43092:11;;;;;42761:455;43172:5;43136:3;:12;;43160:1;43149:8;:12;43136:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;43199:5;43192:12;;;42486:737;;;;;;:::o;26694:632::-;26864:12;26936:5;26911:21;:30;;26889:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27026:18;27037:6;27026:10;:18::i;:::-;27018:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27152:12;27166:23;27193:6;:11;;27212:5;27233:4;27193:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27151:97;;;;27266:52;27284:7;27293:10;27305:12;27266:17;:52::i;:::-;27259:59;;;;26694:632;;;;;;:::o;45044:157::-;45142:4;45192:1;45171:3;:12;;:17;45184:3;45171:17;;;;;;;;;;;;:22;;45164:29;;45044:157;;;;:::o;70503:126::-;;;;:::o;39415:160::-;39503:4;39532:35;39540:3;:10;;39560:5;39552:14;;39532:7;:35::i;:::-;39525:42;;39415:160;;;;:::o;64717:321::-;64847:18;64853:2;64857:7;64847:5;:18::i;:::-;64898:54;64929:1;64933:2;64937:7;64946:5;64898:22;:54::i;:::-;64876:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64717:321;;;:::o;35059:273::-;35153:7;35221:5;35200:3;:11;;:18;;;;:26;35178:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35306:3;:11;;35318:5;35306:18;;;;;;;;;;;;;;;;35299:25;;35059:273;;;;:::o;45771:348::-;45865:7;45874;45943:5;45921:3;:12;;:19;;;;:27;45899:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46023:22;46048:3;:12;;46061:5;46048:19;;;;;;;;;;;;;;;;;;46023:44;;46086:5;:10;;;46098:5;:12;;;46078:33;;;;;45771:348;;;;;:::o;47369:353::-;47497:7;47517:16;47536:3;:12;;:17;47549:3;47536:17;;;;;;;;;;;;47517:36;;47584:1;47572:8;:13;;47587:12;47564:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47654:3;:12;;47678:1;47667:8;:12;47654:26;;;;;;;;;;;;;;;;;;:33;;;47647:40;;;47369:353;;;;;:::o;34596:109::-;34652:7;34679:3;:11;;:18;;;;34672:25;;34596:109;;;:::o;68885:694::-;69040:4;69062:15;:2;:13;;;:15::i;:::-;69057:60;;69101:4;69094:11;;;;69057:60;69127:23;69153:313;69224:45;;;69288:12;:10;:12::i;:::-;69319:4;69342:7;69368:5;69183:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69153:313;;;;;;;;;;;;;;;;;:2;:15;;;;:313;;;;;:::i;:::-;69127:339;;69477:13;69504:10;69493:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69477:48;;52896:10;69554:16;;69544:26;;;:6;:26;;;;69536:35;;;;68885:694;;;;;;;:::o;34349:161::-;34449:4;34501:1;34478:3;:12;;:19;34491:5;34478:19;;;;;;;;;;;;:24;;34471:31;;34349:161;;;;:::o;29617:777::-;29767:12;29796:7;29792:595;;;29827:10;29820:17;;;;29792:595;29961:1;29941:10;:17;:21;29937:439;;;30204:10;30198:17;30265:15;30252:10;30248:2;30244:19;30237:44;30152:148;30347:12;30340:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29617:777;;;;;;:::o;32706:1557::-;32772:4;32890:18;32911:3;:12;;:19;32924:5;32911:19;;;;;;;;;;;;32890:40;;32961:1;32947:10;:15;32943:1313;;33322:21;33359:1;33346:10;:14;33322:38;;33375:17;33416:1;33395:3;:11;;:18;;;;:22;33375:42;;33662:17;33682:3;:11;;33694:9;33682:22;;;;;;;;;;;;;;;;33662:42;;33828:9;33799:3;:11;;33811:13;33799:26;;;;;;;;;;;;;;;:38;;;;33947:1;33931:13;:17;33905:3;:12;;:23;33918:9;33905:23;;;;;;;;;;;:43;;;;34057:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;34152:3;:12;;:19;34165:5;34152:19;;;;;;;;;;;34145:26;;;34195:4;34188:11;;;;;;;;32943:1313;34239:5;34232:12;;;32706:1557;;;;;:::o;65374:404::-;65468:1;65454:16;;:2;:16;;;;65446:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65527:16;65535:7;65527;:16::i;:::-;65526:17;65518:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65589:45;65618:1;65622:2;65626:7;65589:20;:45::i;:::-;65647:30;65669:7;65647:13;:17;65661:2;65647:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65690:29;65707:7;65716:2;65690:12;:16;;:29;;;;;:::i;:::-;;65762:7;65758:2;65737:33;;65754:1;65737:33;;;;;;;;;;;;65374:404;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://fa6c9059e2ace2e90db149638e3323765bf084c23192506c6c953de7aa35e761
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.