ERC-721
Overview
Max Total Supply
389 KAIJUKOM
Holders
77
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KAIJUKOMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoKaijus
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-28 */ /** *Submitted for verification at Etherscan.io on 2021-09-28 *By @Thrasher66099 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { 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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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 () { // 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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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 /** * @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_) { _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 set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @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 /** * @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 () { 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/CryptoKaijus.sol /** * @title CryptoKaiju contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract CryptoKaijus is ERC721, Ownable { using SafeMath for uint256; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public mintPrice; uint256 public maxToMint; uint256 public presaleSupply; uint256 public MAX_CRYPTO_KAIJUS_SUPPLY; uint256 public REVEAL_TIMESTAMP; string public prerevealURI; string public PROVENANCE_HASH; bool public saleIsActive; bool public presaleEnded; address wallet1; address wallet2; constructor() ERC721("Kaiju Kombat", "KAIJUKOM") { MAX_CRYPTO_KAIJUS_SUPPLY = 10000; REVEAL_TIMESTAMP = block.timestamp + (86400 * 3); mintPrice = 78000000000000000; // 0.078 ETH presaleSupply = 500; maxToMint = 10; saleIsActive = false; presaleEnded = false; wallet1 = 0xB4Ef935Ed1c0667aEA2c6b2c838e71071aD046b9; wallet2 = 0x569f6323107b7800950F8c5777684425e5C4bC61; } /** * Get the array of token for owner. */ function tokensOfOwner(address _owner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); for (uint256 index; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } /** * MUST TURN INTO LIBRARY BEFORE LIVE DEPLOYMENT!!!!! */ function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } /** * Check if certain token id is exists. */ function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } /** * Set price to mint a Crypto Ultra. */ function setMintPrice(uint256 _price) external onlyOwner { mintPrice = _price; } /** * Set maximum count to mint per once. */ function setMaxToMint(uint256 _maxValue) external onlyOwner { maxToMint = _maxValue; } /** * Mint Crypto Kaijus by owner */ function reserveCryptoKaijus(address _to, uint256 _numberOfTokens) external onlyOwner { require(_to != address(0), "Invalid address to reserve."); uint256 supply = totalSupply(); uint256 i; //Mint address, 0 on first mint //Supply is 1 so mint tokenId = 1 (which is the 2nd token) for (i = 0; i < _numberOfTokens; i++) { _safeMint(_to, supply + i); } } /** * Set reveal timestamp when finished the sale. */ function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner { REVEAL_TIMESTAMP = _revealTimeStamp; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory _provenanceHash) external onlyOwner { PROVENANCE_HASH = _provenanceHash; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } /** * External function to set the prereveal URI for all token IDs. * This is the URI that is shown on each token until the REVEAL_TIMESTAMP * is surpassed. */ function setPrerevealURI(string memory prerevealURI_) external onlyOwner { prerevealURI = prerevealURI_; } /** * Returns the proper tokenURI only after the startingIndex is finalized. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(startingIndex != 0 && block.timestamp >= REVEAL_TIMESTAMP) { string memory base = baseURI(); string memory tokenURIWithOffset = uint2str(((tokenId + startingIndex) % MAX_CRYPTO_KAIJUS_SUPPLY)); return string(abi.encodePacked(base, tokenURIWithOffset)); } else { return prerevealURI; } } /* * Pause sale if active, make active if paused */ function setSaleState() external onlyOwner { saleIsActive = !saleIsActive; } /* * Setting presaleEnded state to true allows for minting beyond the * presale token count */ function setPresaleState() external onlyOwner { presaleEnded = !presaleEnded; } /* * Pause sale if active, make active if paused */ function setPresaleSupply(uint256 _presaleSupply) external onlyOwner { presaleSupply = _presaleSupply; } /** * Mints tokens */ function mintCryptoKaijus(uint256 numberOfTokens) external payable { require(saleIsActive, "Sale must be active to mint"); require(presaleEnded, "The presale has not ended"); require(numberOfTokens <= maxToMint, "Invalid amount to mint per once"); require(totalSupply().add(numberOfTokens) <= MAX_CRYPTO_KAIJUS_SUPPLY, "Purchase would exceed max supply"); require(mintPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for(uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply(); if (totalSupply() < MAX_CRYPTO_KAIJUS_SUPPLY) { _safeMint(msg.sender, mintIndex); } } // If we haven't set the starting index and this is either // 1) the last saleable token or 2) the first token to be sold after // the end of pre-sale, set the starting index block if (startingIndexBlock == 0 && (totalSupply() == MAX_CRYPTO_KAIJUS_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) { startingIndexBlock = block.number; } } function presaleMintCryptoKaijus(uint256 numberOfTokens) external payable { require(saleIsActive, "Sale must be active to mint"); require(numberOfTokens <= maxToMint, "Invalid amount to mint per once"); require(totalSupply().add(numberOfTokens) <= presaleSupply, "Purchase would exceed max presale supply"); require(mintPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for(uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply(); if (totalSupply() < MAX_CRYPTO_KAIJUS_SUPPLY) { _safeMint(msg.sender, mintIndex); } } } /** * Set the starting index for the collection */ function setStartingIndex() external { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_CRYPTO_KAIJUS_SUPPLY; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if (block.number.sub(startingIndexBlock) > 255) { startingIndex = uint256(blockhash(block.number - 1)) % MAX_CRYPTO_KAIJUS_SUPPLY; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; uint256 walletBalance = balance.mul(85).div(100); payable(wallet1).transfer(walletBalance); payable(wallet2).transfer(balance.sub(walletBalance)); } }
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_CRYPTO_KAIJUS_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCryptoKaijus","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMintCryptoKaijus","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reserveCryptoKaijus","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prerevealURI_","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleSupply","type":"uint256"}],"name":"setPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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
60806040523480156200001157600080fd5b50604080518082018252600c81526b12d85a5a9d4812dbdb58985d60a21b602080830191909152825180840190935260088352674b41494a554b4f4d60c01b9083015290620000676301ffc9a760e01b62000193565b81516200007c90600690602085019062000217565b5080516200009290600790602084019062000217565b50620000a56380ac58cd60e01b62000193565b620000b7635b5e139f60e01b62000193565b620000c963780e9d6360e01b62000193565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061271060105562000123426203f480620002bd565b6011556701151c96347b0000600d556101f4600f55600a600e556014805475b4ef935ed1c0667aea2c6b2c838e71071ad046b900006001600160b01b0319909116179055601580546001600160a01b03191673569f6323107b7800950f8c5777684425e5c4bc6117905562000321565b6001600160e01b03198082161415620001f25760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8280546200022590620002e4565b90600052602060002090601f01602090048101928262000249576000855562000294565b82601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b60008219821115620002df57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002f957607f821691505b602082108114156200031b57634e487b7160e01b600052602260045260246000fd5b50919050565b612e6b80620003316000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063cb774d47116100c1578063e98665501161007a578063e9866550146107ac578063eb8d2444146107c1578063f2fde38b146107db578063f42f77b3146107fb578063f4a0a52814610810578063ff1b65561461083057600080fd5b8063cb774d47146106ed578063d62280b214610703578063e0c4e74e14610718578063e36d64981461072e578063e580b2b014610744578063e985e9c51461076357600080fd5b806395d89b411161011357806395d89b4114610642578063a22cb46514610657578063b3a196e914610677578063b88d4fde1461068d578063b96502cb146106ad578063c87b56dd146106cd57600080fd5b806370a082311461059a578063715018a6146105ba5780637d17fcbe146105cf5780638462151c146105e45780638b4f8146146106115780638da5cb5b1461062457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104ef57806355f804b31461050f5780636352211e1461052f5780636817c76c1461054f5780636c0360eb146105655780637084b2b71461057a57600080fd5b80632f745c59146104475780632fbded51146104675780633ccfd60b1461047a57806342842e0e1461048f5780634c18663d146104af5780634f558e79146104cf57600080fd5b80630ba133c5116102505780630ba133c5146103a357806310969523146103c757806318160ddd146103e757806318e20a38146103fc5780631ed405591461041257806323b872dd1461042757600080fd5b8063018a2c371461029857806301ffc9a7146102ba57806306fdde0314610309578063078eef281461032b578063081812fc1461034b578063095ea7b314610383575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612a43565b610845565b005b3480156102c657600080fd5b506102f46102d53660046129c0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561031557600080fd5b5061031e61087d565b6040516103009190612b54565b34801561033757600080fd5b506102b86103463660046129fa565b61090f565b34801561035757600080fd5b5061036b610366366004612a43565b610950565b6040516001600160a01b039091168152602001610300565b34801561038f57600080fd5b506102b861039e366004612996565b6109d8565b3480156103af57600080fd5b506103b9600e5481565b604051908152602001610300565b3480156103d357600080fd5b506102b86103e23660046129fa565b610aee565b3480156103f357600080fd5b506103b9610b2b565b34801561040857600080fd5b506103b960115481565b34801561041e57600080fd5b506102b8610b3c565b34801561043357600080fd5b506102b86104423660046128a2565b610b7a565b34801561045357600080fd5b506103b9610462366004612996565b610bab565b6102b8610475366004612a43565b610bd6565b34801561048657600080fd5b506102b8610d90565b34801561049b57600080fd5b506102b86104aa3660046128a2565b610e56565b3480156104bb57600080fd5b506102b86104ca366004612996565b610e71565b3480156104db57600080fd5b506102f46104ea366004612a43565b610f33565b3480156104fb57600080fd5b506103b961050a366004612a43565b610f3e565b34801561051b57600080fd5b506102b861052a3660046129fa565b610f54565b34801561053b57600080fd5b5061036b61054a366004612a43565b610f8a565b34801561055b57600080fd5b506103b9600d5481565b34801561057157600080fd5b5061031e610fb2565b34801561058657600080fd5b506102b8610595366004612a43565b610fc1565b3480156105a657600080fd5b506103b96105b5366004612854565b610ff0565b3480156105c657600080fd5b506102b861107c565b3480156105db57600080fd5b506102b86110f0565b3480156105f057600080fd5b506106046105ff366004612854565b611170565b6040516103009190612b10565b6102b861061f366004612a43565b61122b565b34801561063057600080fd5b50600a546001600160a01b031661036b565b34801561064e57600080fd5b5061031e611456565b34801561066357600080fd5b506102b861067236600461295a565b611465565b34801561068357600080fd5b506103b9600f5481565b34801561069957600080fd5b506102b86106a83660046128de565b61152a565b3480156106b957600080fd5b506102b86106c8366004612a43565b61155c565b3480156106d957600080fd5b5061031e6106e8366004612a43565b61158b565b3480156106f957600080fd5b506103b9600c5481565b34801561070f57600080fd5b5061031e611707565b34801561072457600080fd5b506103b960105481565b34801561073a57600080fd5b506103b9600b5481565b34801561075057600080fd5b506014546102f490610100900460ff1681565b34801561076f57600080fd5b506102f461077e36600461286f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b857600080fd5b506102b8611795565b3480156107cd57600080fd5b506014546102f49060ff1681565b3480156107e757600080fd5b506102b86107f6366004612854565b611897565b34801561080757600080fd5b506102b8611982565b34801561081c57600080fd5b506102b861082b366004612a43565b6119c9565b34801561083c57600080fd5b5061031e6119f8565b600a546001600160a01b031633146108785760405162461bcd60e51b815260040161086f90612bb9565b60405180910390fd5b601155565b60606006805461088c90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612cf2565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600a546001600160a01b031633146109395760405162461bcd60e51b815260040161086f90612bb9565b805161094c90601290602084019061272e565b5050565b600061095b82611a05565b6109bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086f565b506000908152600460205260409020546001600160a01b031690565b60006109e382610f8a565b9050806001600160a01b0316836001600160a01b03161415610a515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086f565b336001600160a01b0382161480610a6d5750610a6d813361077e565b610adf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086f565b610ae98383611a12565b505050565b600a546001600160a01b03163314610b185760405162461bcd60e51b815260040161086f90612bb9565b805161094c90601390602084019061272e565b6000610b376002611a80565b905090565b600a546001600160a01b03163314610b665760405162461bcd60e51b815260040161086f90612bb9565b6014805460ff19811660ff90911615179055565b610b843382611a8a565b610ba05760405162461bcd60e51b815260040161086f90612bee565b610ae9838383611b74565b6001600160a01b0382166000908152600160205260408120610bcd9083611cf5565b90505b92915050565b60145460ff16610c285760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161086f565b600e54811115610c7a5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161086f565b600f54610c8f82610c89610b2b565b90611d01565b1115610cee5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d61782070726573616c6044820152676520737570706c7960c01b606482015260840161086f565b600d543490610cfd9083611d60565b1115610d4b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161086f565b60005b8181101561094c576000610d60610b2b565b9050601054610d6d610b2b565b1015610d7d57610d7d3382611ddf565b5080610d8881612d27565b915050610d4e565b600a546001600160a01b03163314610dba5760405162461bcd60e51b815260040161086f90612bb9565b476000610dd36064610dcd846055611d60565b90611df9565b6014546040519192506201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610e14573d6000803e3d6000fd5b506015546001600160a01b03166108fc610e2e8484611e54565b6040518115909202916000818181858888f19350505050158015610ae9573d6000803e3d6000fd5b610ae98383836040518060200160405280600081525061152a565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b815260040161086f90612bb9565b6001600160a01b038216610ef15760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206164647265737320746f20726573657276652e0000000000604482015260640161086f565b6000610efb610b2b565b905060005b82811015610f2d57610f1b84610f168385612c3f565b611ddf565b80610f2581612d27565b915050610f00565b50505050565b6000610bd082611a05565b600080610f4c600284611eb0565b509392505050565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161086f90612bb9565b610f8781611ecc565b50565b6000610bd082604051806060016040528060298152602001612e0d6029913960029190611edf565b60606009805461088c90612cf2565b600a546001600160a01b03163314610feb5760405162461bcd60e51b815260040161086f90612bb9565b600e55565b60006001600160a01b03821661105b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086f565b6001600160a01b0382166000908152600160205260409020610bd090611a80565b600a546001600160a01b031633146110a65760405162461bcd60e51b815260040161086f90612bb9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461111a5760405162461bcd60e51b815260040161086f90612bb9565b600c541561116a5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161086f565b43600b55565b6060600061117d83610ff0565b90508061119a576040805160008082526020820190925290610f4c565b60008167ffffffffffffffff8111156111b5576111b5612dae565b6040519080825280602002602001820160405280156111de578160200160208202803683370190505b50905060005b82811015610f4c576111f68582610bab565b82828151811061120857611208612d98565b60209081029190910101528061121d81612d27565b9150506111e4565b50919050565b60145460ff1661127d5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161086f565b601454610100900460ff166112d45760405162461bcd60e51b815260206004820152601960248201527f5468652070726573616c6520686173206e6f7420656e64656400000000000000604482015260640161086f565b600e548111156113265760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161086f565b60105461133582610c89610b2b565b11156113835760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161086f565b600d5434906113929083611d60565b11156113e05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161086f565b60005b818110156114255760006113f5610b2b565b9050601054611402610b2b565b1015611412576114123382611ddf565b508061141d81612d27565b9150506113e3565b50600b5415801561144a575060105461143c610b2b565b148061144a57506011544210155b15610f875743600b5550565b60606007805461088c90612cf2565b6001600160a01b0382163314156114be5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115343383611a8a565b6115505760405162461bcd60e51b815260040161086f90612bee565b610f2d84848484611ef6565b600a546001600160a01b031633146115865760405162461bcd60e51b815260040161086f90612bb9565b600f55565b606061159682611a05565b6115fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086f565b600c541580159061160d57506011544210155b1561167057600061161c610fb2565b90506000611643601054600c54866116349190612c3f565b61163e9190612d42565b611f29565b90508181604051602001611658929190612aa4565b60405160208183030381529060405292505050919050565b6012805461167d90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990612cf2565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b50505050509050919050565b919050565b6012805461171490612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461174090612cf2565b801561178d5780601f106117625761010080835404028352916020019161178d565b820191906000526020600020905b81548152906001019060200180831161177057829003601f168201915b505050505081565b600c54156117e55760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161086f565b600b546118345760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015260640161086f565b601054600b54611845919040612d42565b600c55600b5460ff90611859904390611e54565b111561187c5760105461186d600143612caf565b611878919040612d42565b600c555b600c5461189557600c54611891906001611d01565b600c555b565b600a546001600160a01b031633146118c15760405162461bcd60e51b815260040161086f90612bb9565b6001600160a01b0381166119265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146119ac5760405162461bcd60e51b815260040161086f90612bb9565b6014805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119f35760405162461bcd60e51b815260040161086f90612bb9565b600d55565b6013805461171490612cf2565b6000610bd0600283612052565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4782610f8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd0825490565b6000611a9582611a05565b611af65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086f565b6000611b0183610f8a565b9050806001600160a01b0316846001600160a01b03161480611b3c5750836001600160a01b0316611b3184610950565b6001600160a01b0316145b80611b6c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b8782610f8a565b6001600160a01b031614611bef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161086f565b6001600160a01b038216611c515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086f565b611c5c600082611a12565b6001600160a01b0383166000908152600160205260409020611c7e908261206a565b506001600160a01b0382166000908152600160205260409020611ca19082612076565b50611cae60028284612082565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bcd8383612098565b600080611d0e8385612c3f565b905083811015610bcd5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086f565b600082611d6f57506000610bd0565b6000611d7b8385612c90565b905082611d888583612c7c565b14610bcd5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086f565b61094c82826040518060200160405280600081525061211e565b6000808211611e4a5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161086f565b610bcd8284612c7c565b600082821115611ea65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161086f565b610bcd8284612caf565b6000808080611ebf8686612151565b9097909650945050505050565b805161094c90600990602084019061272e565b6000611eec8484846121ee565b90505b9392505050565b611f01848484611b74565b611f0d84848484612257565b610f2d5760405162461bcd60e51b815260040161086f90612b67565b606081611f4d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f775780611f6181612d27565b9150611f709050600a83612c7c565b9150611f51565b60008167ffffffffffffffff811115611f9257611f92612dae565b6040519080825280601f01601f191660200182016040528015611fbc576020820181803683370190505b509050815b851561204957611fd2600182612caf565b90506000611fe1600a88612c7c565b611fec90600a612c90565b611ff69088612caf565b612001906030612c57565b905060008160f81b90508084848151811061201e5761201e612d98565b60200101906001600160f81b031916908160001a905350612040600a89612c7c565b97505050611fc1565b50949350505050565b60008181526001830160205260408120541515610bcd565b6000610bcd8383612328565b6000610bcd838361241b565b6000611eec84846001600160a01b03851661246a565b815460009082106120f65760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086f565b82600001828154811061210b5761210b612d98565b9060005260206000200154905092915050565b612128838361250b565b6121356000848484612257565b610ae95760405162461bcd60e51b815260040161086f90612b67565b8154600090819083106121b15760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086f565b60008460000184815481106121c8576121c8612d98565b906000526020600020906002020190508060000154816001015492509250509250929050565b6000828152600184016020526040812054828161221e5760405162461bcd60e51b815260040161086f9190612b54565b508461222b600183612caf565b8154811061223b5761223b612d98565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61227057506001611b6c565b60006122f1630a85bd0160e11b338887876040516024016122949493929190612ad3565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612ddb603291396001600160a01b0388169190612623565b905060008180602001905181019061230991906129dd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000818152600183016020526040812054801561241157600061234c600183612caf565b855490915060009061236090600190612caf565b9050600086600001828154811061237957612379612d98565b906000526020600020015490508087600001848154811061239c5761239c612d98565b6000918252602090912001556123b3836001612c3f565b600082815260018901602052604090205586548790806123d5576123d5612d82565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bd0565b6000915050610bd0565b600081815260018301602052604081205461246257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd0565b506000610bd0565b6000828152600184016020526040812054806124cf575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611eef565b82856124dc600184612caf565b815481106124ec576124ec612d98565b9060005260206000209060020201600101819055506000915050611eef565b6001600160a01b0382166125615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086f565b61256a81611a05565b156125b75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086f565b6001600160a01b03821660009081526001602052604090206125d99082612076565b506125e660028284612082565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611eec848460008585843b61267c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161086f565b600080866001600160a01b031685876040516126989190612a88565b60006040518083038185875af1925050503d80600081146126d5576040519150601f19603f3d011682016040523d82523d6000602084013e6126da565b606091505b50915091506126ea8282866126f5565b979650505050505050565b60608315612704575081611eef565b8251156127145782518084602001fd5b8160405162461bcd60e51b815260040161086f9190612b54565b82805461273a90612cf2565b90600052602060002090601f01602090048101928261275c57600085556127a2565b82601f1061277557805160ff19168380011785556127a2565b828001600101855582156127a2579182015b828111156127a2578251825591602001919060010190612787565b506127ae9291506127b2565b5090565b5b808211156127ae57600081556001016127b3565b600067ffffffffffffffff808411156127e2576127e2612dae565b604051601f8501601f19908116603f0116810190828211818310171561280a5761280a612dae565b8160405280935085815286868601111561282357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170257600080fd5b60006020828403121561286657600080fd5b610bcd8261283d565b6000806040838503121561288257600080fd5b61288b8361283d565b91506128996020840161283d565b90509250929050565b6000806000606084860312156128b757600080fd5b6128c08461283d565b92506128ce6020850161283d565b9150604084013590509250925092565b600080600080608085870312156128f457600080fd5b6128fd8561283d565b935061290b6020860161283d565b925060408501359150606085013567ffffffffffffffff81111561292e57600080fd5b8501601f8101871361293f57600080fd5b61294e878235602084016127c7565b91505092959194509250565b6000806040838503121561296d57600080fd5b6129768361283d565b91506020830135801515811461298b57600080fd5b809150509250929050565b600080604083850312156129a957600080fd5b6129b28361283d565b946020939093013593505050565b6000602082840312156129d257600080fd5b8135610bcd81612dc4565b6000602082840312156129ef57600080fd5b8151610bcd81612dc4565b600060208284031215612a0c57600080fd5b813567ffffffffffffffff811115612a2357600080fd5b8201601f81018413612a3457600080fd5b611b6c848235602084016127c7565b600060208284031215612a5557600080fd5b5035919050565b60008151808452612a74816020860160208601612cc6565b601f01601f19169290920160200192915050565b60008251612a9a818460208701612cc6565b9190910192915050565b60008351612ab6818460208801612cc6565b835190830190612aca818360208801612cc6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0690830184612a5c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b4857835183529284019291840191600101612b2c565b50909695505050505050565b602081526000610bcd6020830184612a5c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c5257612c52612d56565b500190565b600060ff821660ff84168060ff03821115612c7457612c74612d56565b019392505050565b600082612c8b57612c8b612d6c565b500490565b6000816000190483118215151615612caa57612caa612d56565b500290565b600082821015612cc157612cc1612d56565b500390565b60005b83811015612ce1578181015183820152602001612cc9565b83811115610f2d5750506000910152565b600181811c90821680612d0657607f821691505b6020821081141561122557634e487b7160e01b600052602260045260246000fd5b6000600019821415612d3b57612d3b612d56565b5060010190565b600082612d5157612d51612d6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220335486d97b306287a0e3b4c3e2d9582238c87debe3ed0522e1a8052e000ad44a64736f6c63430008060033
Deployed Bytecode
0x6080604052600436106102935760003560e01c806370a082311161015a578063cb774d47116100c1578063e98665501161007a578063e9866550146107ac578063eb8d2444146107c1578063f2fde38b146107db578063f42f77b3146107fb578063f4a0a52814610810578063ff1b65561461083057600080fd5b8063cb774d47146106ed578063d62280b214610703578063e0c4e74e14610718578063e36d64981461072e578063e580b2b014610744578063e985e9c51461076357600080fd5b806395d89b411161011357806395d89b4114610642578063a22cb46514610657578063b3a196e914610677578063b88d4fde1461068d578063b96502cb146106ad578063c87b56dd146106cd57600080fd5b806370a082311461059a578063715018a6146105ba5780637d17fcbe146105cf5780638462151c146105e45780638b4f8146146106115780638da5cb5b1461062457600080fd5b80632f745c59116101fe5780634f6ccce7116101b75780634f6ccce7146104ef57806355f804b31461050f5780636352211e1461052f5780636817c76c1461054f5780636c0360eb146105655780637084b2b71461057a57600080fd5b80632f745c59146104475780632fbded51146104675780633ccfd60b1461047a57806342842e0e1461048f5780634c18663d146104af5780634f558e79146104cf57600080fd5b80630ba133c5116102505780630ba133c5146103a357806310969523146103c757806318160ddd146103e757806318e20a38146103fc5780631ed405591461041257806323b872dd1461042757600080fd5b8063018a2c371461029857806301ffc9a7146102ba57806306fdde0314610309578063078eef281461032b578063081812fc1461034b578063095ea7b314610383575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612a43565b610845565b005b3480156102c657600080fd5b506102f46102d53660046129c0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561031557600080fd5b5061031e61087d565b6040516103009190612b54565b34801561033757600080fd5b506102b86103463660046129fa565b61090f565b34801561035757600080fd5b5061036b610366366004612a43565b610950565b6040516001600160a01b039091168152602001610300565b34801561038f57600080fd5b506102b861039e366004612996565b6109d8565b3480156103af57600080fd5b506103b9600e5481565b604051908152602001610300565b3480156103d357600080fd5b506102b86103e23660046129fa565b610aee565b3480156103f357600080fd5b506103b9610b2b565b34801561040857600080fd5b506103b960115481565b34801561041e57600080fd5b506102b8610b3c565b34801561043357600080fd5b506102b86104423660046128a2565b610b7a565b34801561045357600080fd5b506103b9610462366004612996565b610bab565b6102b8610475366004612a43565b610bd6565b34801561048657600080fd5b506102b8610d90565b34801561049b57600080fd5b506102b86104aa3660046128a2565b610e56565b3480156104bb57600080fd5b506102b86104ca366004612996565b610e71565b3480156104db57600080fd5b506102f46104ea366004612a43565b610f33565b3480156104fb57600080fd5b506103b961050a366004612a43565b610f3e565b34801561051b57600080fd5b506102b861052a3660046129fa565b610f54565b34801561053b57600080fd5b5061036b61054a366004612a43565b610f8a565b34801561055b57600080fd5b506103b9600d5481565b34801561057157600080fd5b5061031e610fb2565b34801561058657600080fd5b506102b8610595366004612a43565b610fc1565b3480156105a657600080fd5b506103b96105b5366004612854565b610ff0565b3480156105c657600080fd5b506102b861107c565b3480156105db57600080fd5b506102b86110f0565b3480156105f057600080fd5b506106046105ff366004612854565b611170565b6040516103009190612b10565b6102b861061f366004612a43565b61122b565b34801561063057600080fd5b50600a546001600160a01b031661036b565b34801561064e57600080fd5b5061031e611456565b34801561066357600080fd5b506102b861067236600461295a565b611465565b34801561068357600080fd5b506103b9600f5481565b34801561069957600080fd5b506102b86106a83660046128de565b61152a565b3480156106b957600080fd5b506102b86106c8366004612a43565b61155c565b3480156106d957600080fd5b5061031e6106e8366004612a43565b61158b565b3480156106f957600080fd5b506103b9600c5481565b34801561070f57600080fd5b5061031e611707565b34801561072457600080fd5b506103b960105481565b34801561073a57600080fd5b506103b9600b5481565b34801561075057600080fd5b506014546102f490610100900460ff1681565b34801561076f57600080fd5b506102f461077e36600461286f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b857600080fd5b506102b8611795565b3480156107cd57600080fd5b506014546102f49060ff1681565b3480156107e757600080fd5b506102b86107f6366004612854565b611897565b34801561080757600080fd5b506102b8611982565b34801561081c57600080fd5b506102b861082b366004612a43565b6119c9565b34801561083c57600080fd5b5061031e6119f8565b600a546001600160a01b031633146108785760405162461bcd60e51b815260040161086f90612bb9565b60405180910390fd5b601155565b60606006805461088c90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612cf2565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600a546001600160a01b031633146109395760405162461bcd60e51b815260040161086f90612bb9565b805161094c90601290602084019061272e565b5050565b600061095b82611a05565b6109bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086f565b506000908152600460205260409020546001600160a01b031690565b60006109e382610f8a565b9050806001600160a01b0316836001600160a01b03161415610a515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086f565b336001600160a01b0382161480610a6d5750610a6d813361077e565b610adf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086f565b610ae98383611a12565b505050565b600a546001600160a01b03163314610b185760405162461bcd60e51b815260040161086f90612bb9565b805161094c90601390602084019061272e565b6000610b376002611a80565b905090565b600a546001600160a01b03163314610b665760405162461bcd60e51b815260040161086f90612bb9565b6014805460ff19811660ff90911615179055565b610b843382611a8a565b610ba05760405162461bcd60e51b815260040161086f90612bee565b610ae9838383611b74565b6001600160a01b0382166000908152600160205260408120610bcd9083611cf5565b90505b92915050565b60145460ff16610c285760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161086f565b600e54811115610c7a5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161086f565b600f54610c8f82610c89610b2b565b90611d01565b1115610cee5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d61782070726573616c6044820152676520737570706c7960c01b606482015260840161086f565b600d543490610cfd9083611d60565b1115610d4b5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161086f565b60005b8181101561094c576000610d60610b2b565b9050601054610d6d610b2b565b1015610d7d57610d7d3382611ddf565b5080610d8881612d27565b915050610d4e565b600a546001600160a01b03163314610dba5760405162461bcd60e51b815260040161086f90612bb9565b476000610dd36064610dcd846055611d60565b90611df9565b6014546040519192506201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610e14573d6000803e3d6000fd5b506015546001600160a01b03166108fc610e2e8484611e54565b6040518115909202916000818181858888f19350505050158015610ae9573d6000803e3d6000fd5b610ae98383836040518060200160405280600081525061152a565b600a546001600160a01b03163314610e9b5760405162461bcd60e51b815260040161086f90612bb9565b6001600160a01b038216610ef15760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964206164647265737320746f20726573657276652e0000000000604482015260640161086f565b6000610efb610b2b565b905060005b82811015610f2d57610f1b84610f168385612c3f565b611ddf565b80610f2581612d27565b915050610f00565b50505050565b6000610bd082611a05565b600080610f4c600284611eb0565b509392505050565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161086f90612bb9565b610f8781611ecc565b50565b6000610bd082604051806060016040528060298152602001612e0d6029913960029190611edf565b60606009805461088c90612cf2565b600a546001600160a01b03163314610feb5760405162461bcd60e51b815260040161086f90612bb9565b600e55565b60006001600160a01b03821661105b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086f565b6001600160a01b0382166000908152600160205260409020610bd090611a80565b600a546001600160a01b031633146110a65760405162461bcd60e51b815260040161086f90612bb9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461111a5760405162461bcd60e51b815260040161086f90612bb9565b600c541561116a5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161086f565b43600b55565b6060600061117d83610ff0565b90508061119a576040805160008082526020820190925290610f4c565b60008167ffffffffffffffff8111156111b5576111b5612dae565b6040519080825280602002602001820160405280156111de578160200160208202803683370190505b50905060005b82811015610f4c576111f68582610bab565b82828151811061120857611208612d98565b60209081029190910101528061121d81612d27565b9150506111e4565b50919050565b60145460ff1661127d5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161086f565b601454610100900460ff166112d45760405162461bcd60e51b815260206004820152601960248201527f5468652070726573616c6520686173206e6f7420656e64656400000000000000604482015260640161086f565b600e548111156113265760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420616d6f756e7420746f206d696e7420706572206f6e636500604482015260640161086f565b60105461133582610c89610b2b565b11156113835760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161086f565b600d5434906113929083611d60565b11156113e05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161086f565b60005b818110156114255760006113f5610b2b565b9050601054611402610b2b565b1015611412576114123382611ddf565b508061141d81612d27565b9150506113e3565b50600b5415801561144a575060105461143c610b2b565b148061144a57506011544210155b15610f875743600b5550565b60606007805461088c90612cf2565b6001600160a01b0382163314156114be5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115343383611a8a565b6115505760405162461bcd60e51b815260040161086f90612bee565b610f2d84848484611ef6565b600a546001600160a01b031633146115865760405162461bcd60e51b815260040161086f90612bb9565b600f55565b606061159682611a05565b6115fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086f565b600c541580159061160d57506011544210155b1561167057600061161c610fb2565b90506000611643601054600c54866116349190612c3f565b61163e9190612d42565b611f29565b90508181604051602001611658929190612aa4565b60405160208183030381529060405292505050919050565b6012805461167d90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546116a990612cf2565b80156116f65780601f106116cb576101008083540402835291602001916116f6565b820191906000526020600020905b8154815290600101906020018083116116d957829003601f168201915b50505050509050919050565b919050565b6012805461171490612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461174090612cf2565b801561178d5780601f106117625761010080835404028352916020019161178d565b820191906000526020600020905b81548152906001019060200180831161177057829003601f168201915b505050505081565b600c54156117e55760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015260640161086f565b600b546118345760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015260640161086f565b601054600b54611845919040612d42565b600c55600b5460ff90611859904390611e54565b111561187c5760105461186d600143612caf565b611878919040612d42565b600c555b600c5461189557600c54611891906001611d01565b600c555b565b600a546001600160a01b031633146118c15760405162461bcd60e51b815260040161086f90612bb9565b6001600160a01b0381166119265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146119ac5760405162461bcd60e51b815260040161086f90612bb9565b6014805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119f35760405162461bcd60e51b815260040161086f90612bb9565b600d55565b6013805461171490612cf2565b6000610bd0600283612052565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4782610f8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bd0825490565b6000611a9582611a05565b611af65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086f565b6000611b0183610f8a565b9050806001600160a01b0316846001600160a01b03161480611b3c5750836001600160a01b0316611b3184610950565b6001600160a01b0316145b80611b6c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b8782610f8a565b6001600160a01b031614611bef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161086f565b6001600160a01b038216611c515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086f565b611c5c600082611a12565b6001600160a01b0383166000908152600160205260409020611c7e908261206a565b506001600160a01b0382166000908152600160205260409020611ca19082612076565b50611cae60028284612082565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bcd8383612098565b600080611d0e8385612c3f565b905083811015610bcd5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086f565b600082611d6f57506000610bd0565b6000611d7b8385612c90565b905082611d888583612c7c565b14610bcd5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086f565b61094c82826040518060200160405280600081525061211e565b6000808211611e4a5760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161086f565b610bcd8284612c7c565b600082821115611ea65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161086f565b610bcd8284612caf565b6000808080611ebf8686612151565b9097909650945050505050565b805161094c90600990602084019061272e565b6000611eec8484846121ee565b90505b9392505050565b611f01848484611b74565b611f0d84848484612257565b610f2d5760405162461bcd60e51b815260040161086f90612b67565b606081611f4d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f775780611f6181612d27565b9150611f709050600a83612c7c565b9150611f51565b60008167ffffffffffffffff811115611f9257611f92612dae565b6040519080825280601f01601f191660200182016040528015611fbc576020820181803683370190505b509050815b851561204957611fd2600182612caf565b90506000611fe1600a88612c7c565b611fec90600a612c90565b611ff69088612caf565b612001906030612c57565b905060008160f81b90508084848151811061201e5761201e612d98565b60200101906001600160f81b031916908160001a905350612040600a89612c7c565b97505050611fc1565b50949350505050565b60008181526001830160205260408120541515610bcd565b6000610bcd8383612328565b6000610bcd838361241b565b6000611eec84846001600160a01b03851661246a565b815460009082106120f65760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086f565b82600001828154811061210b5761210b612d98565b9060005260206000200154905092915050565b612128838361250b565b6121356000848484612257565b610ae95760405162461bcd60e51b815260040161086f90612b67565b8154600090819083106121b15760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161086f565b60008460000184815481106121c8576121c8612d98565b906000526020600020906002020190508060000154816001015492509250509250929050565b6000828152600184016020526040812054828161221e5760405162461bcd60e51b815260040161086f9190612b54565b508461222b600183612caf565b8154811061223b5761223b612d98565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b61227057506001611b6c565b60006122f1630a85bd0160e11b338887876040516024016122949493929190612ad3565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612ddb603291396001600160a01b0388169190612623565b905060008180602001905181019061230991906129dd565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000818152600183016020526040812054801561241157600061234c600183612caf565b855490915060009061236090600190612caf565b9050600086600001828154811061237957612379612d98565b906000526020600020015490508087600001848154811061239c5761239c612d98565b6000918252602090912001556123b3836001612c3f565b600082815260018901602052604090205586548790806123d5576123d5612d82565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610bd0565b6000915050610bd0565b600081815260018301602052604081205461246257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd0565b506000610bd0565b6000828152600184016020526040812054806124cf575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611eef565b82856124dc600184612caf565b815481106124ec576124ec612d98565b9060005260206000209060020201600101819055506000915050611eef565b6001600160a01b0382166125615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086f565b61256a81611a05565b156125b75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086f565b6001600160a01b03821660009081526001602052604090206125d99082612076565b506125e660028284612082565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060611eec848460008585843b61267c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161086f565b600080866001600160a01b031685876040516126989190612a88565b60006040518083038185875af1925050503d80600081146126d5576040519150601f19603f3d011682016040523d82523d6000602084013e6126da565b606091505b50915091506126ea8282866126f5565b979650505050505050565b60608315612704575081611eef565b8251156127145782518084602001fd5b8160405162461bcd60e51b815260040161086f9190612b54565b82805461273a90612cf2565b90600052602060002090601f01602090048101928261275c57600085556127a2565b82601f1061277557805160ff19168380011785556127a2565b828001600101855582156127a2579182015b828111156127a2578251825591602001919060010190612787565b506127ae9291506127b2565b5090565b5b808211156127ae57600081556001016127b3565b600067ffffffffffffffff808411156127e2576127e2612dae565b604051601f8501601f19908116603f0116810190828211818310171561280a5761280a612dae565b8160405280935085815286868601111561282357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170257600080fd5b60006020828403121561286657600080fd5b610bcd8261283d565b6000806040838503121561288257600080fd5b61288b8361283d565b91506128996020840161283d565b90509250929050565b6000806000606084860312156128b757600080fd5b6128c08461283d565b92506128ce6020850161283d565b9150604084013590509250925092565b600080600080608085870312156128f457600080fd5b6128fd8561283d565b935061290b6020860161283d565b925060408501359150606085013567ffffffffffffffff81111561292e57600080fd5b8501601f8101871361293f57600080fd5b61294e878235602084016127c7565b91505092959194509250565b6000806040838503121561296d57600080fd5b6129768361283d565b91506020830135801515811461298b57600080fd5b809150509250929050565b600080604083850312156129a957600080fd5b6129b28361283d565b946020939093013593505050565b6000602082840312156129d257600080fd5b8135610bcd81612dc4565b6000602082840312156129ef57600080fd5b8151610bcd81612dc4565b600060208284031215612a0c57600080fd5b813567ffffffffffffffff811115612a2357600080fd5b8201601f81018413612a3457600080fd5b611b6c848235602084016127c7565b600060208284031215612a5557600080fd5b5035919050565b60008151808452612a74816020860160208601612cc6565b601f01601f19169290920160200192915050565b60008251612a9a818460208701612cc6565b9190910192915050565b60008351612ab6818460208801612cc6565b835190830190612aca818360208801612cc6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b0690830184612a5c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b4857835183529284019291840191600101612b2c565b50909695505050505050565b602081526000610bcd6020830184612a5c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c5257612c52612d56565b500190565b600060ff821660ff84168060ff03821115612c7457612c74612d56565b019392505050565b600082612c8b57612c8b612d6c565b500490565b6000816000190483118215151615612caa57612caa612d56565b500290565b600082821015612cc157612cc1612d56565b500390565b60005b83811015612ce1578181015183820152602001612cc9565b83811115610f2d5750506000910152565b600181811c90821680612d0657607f821691505b6020821081141561122557634e487b7160e01b600052602260045260246000fd5b6000600019821415612d3b57612d3b612d56565b5060010190565b600082612d5157612d51612d6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220335486d97b306287a0e3b4c3e2d9582238c87debe3ed0522e1a8052e000ad44a64736f6c63430008060033
Deployed Bytecode Sourcemap
66502:8582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69779:127;;;;;;;;;;-1:-1:-1;69779:127:0;;;;;:::i;:::-;;:::i;:::-;;10068:150;;;;;;;;;;-1:-1:-1;10068:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10177:33:0;10153:4;10177:33;;;;;;;;;;;;;;10068:150;;;;6562:14:1;;6555:22;6537:41;;6525:2;6510:18;10068:150:0;;;;;;;;51127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;70416:120::-;;;;;;;;;;-1:-1:-1;70416:120:0;;;;;:::i;:::-;;:::i;53913:221::-;;;;;;;;;;-1:-1:-1;53913:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5223:32:1;;;5205:51;;5193:2;5178:18;53913:221:0;5160:102:1;53443:404:0;;;;;;;;;;-1:-1:-1;53443:404:0;;;;;:::i;:::-;;:::i;66691:24::-;;;;;;;;;;;;;;;;;;;19249:25:1;;;19237:2;19222:18;66691:24:0;19204:76:1;69979:129:0;;;;;;;;;;-1:-1:-1;69979:129:0;;;;;:::i;:::-;;:::i;52921:211::-;;;;;;;;;;;;;:::i;66803:31::-;;;;;;;;;;;;;;;;71293:90;;;;;;;;;;;;;:::i;54803:305::-;;;;;;;;;;-1:-1:-1;54803:305:0;;;;;:::i;:::-;;:::i;52683:162::-;;;;;;;;;;-1:-1:-1;52683:162:0;;;;;:::i;:::-;;:::i;72990:689::-;;;;;;:::i;:::-;;:::i;74810:271::-;;;;;;;;;;;;;:::i;55179:151::-;;;;;;;;;;-1:-1:-1;55179:151:0;;;;;:::i;:::-;;:::i;69251:449::-;;;;;;;;;;-1:-1:-1;69251:449:0;;;;;:::i;:::-;;:::i;68753:104::-;;;;;;;;;;-1:-1:-1;68753:104:0;;;;;:::i;:::-;;:::i;53209:172::-;;;;;;;;;;-1:-1:-1;53209:172:0;;;;;:::i;:::-;;:::i;70116:101::-;;;;;;;;;;-1:-1:-1;70116:101:0;;;;;:::i;:::-;;:::i;50883:177::-;;;;;;;;;;-1:-1:-1;50883:177:0;;;;;:::i;:::-;;:::i;66660:24::-;;;;;;;;;;;;;;;;52502:97;;;;;;;;;;;;;:::i;69089:100::-;;;;;;;;;;-1:-1:-1;69089:100:0;;;;;:::i;:::-;;:::i;50600:221::-;;;;;;;;;;-1:-1:-1;50600:221:0;;;;;:::i;:::-;;:::i;65792:148::-;;;;;;;;;;;;;:::i;74608:194::-;;;;;;;;;;;;;:::i;67545:477::-;;;;;;;;;;-1:-1:-1;67545:477:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71840:1142::-;;;;;;:::i;:::-;;:::i;65141:87::-;;;;;;;;;;-1:-1:-1;65214:6:0;;-1:-1:-1;;;;;65214:6:0;65141:87;;51296:104;;;;;;;;;;;;;:::i;54206:295::-;;;;;;;;;;-1:-1:-1;54206:295:0;;;;;:::i;:::-;;:::i;66722:28::-;;;;;;;;;;;;;;;;55401:285;;;;;;;;;;-1:-1:-1;55401:285:0;;;;;:::i;:::-;;:::i;71675:118::-;;;;;;;;;;-1:-1:-1;71675:118:0;;;;;:::i;:::-;;:::i;70639:579::-;;;;;;;;;;-1:-1:-1;70639:579:0;;;;;:::i;:::-;;:::i;66625:28::-;;;;;;;;;;;;;;;;66841:26;;;;;;;;;;;;;:::i;66757:39::-;;;;;;;;;;;;;;;;66585:33;;;;;;;;;;;;;;;;66943:24;;;;;;;;;;-1:-1:-1;66943:24:0;;;;;;;;;;;54572:164;;;;;;;;;;-1:-1:-1;54572:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;54693:25:0;;;54669:4;54693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54572:164;73755:716;;;;;;;;;;;;;:::i;66912:24::-;;;;;;;;;;-1:-1:-1;66912:24:0;;;;;;;;66095:244;;;;;;;;;;-1:-1:-1;66095:244:0;;;;;:::i;:::-;;:::i;71506:93::-;;;;;;;;;;;;;:::i;68925:94::-;;;;;;;;;;-1:-1:-1;68925:94:0;;;;;:::i;:::-;;:::i;66876:29::-;;;;;;;;;;;;;:::i;69779:127::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;;;;;;;;;69863:16:::1;:35:::0;69779:127::o;51127:100::-;51181:13;51214:5;51207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51127:100;:::o;70416:120::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;70500:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70416:120:::0;:::o;53913:221::-;53989:7;54017:16;54025:7;54017;:16::i;:::-;54009:73;;;;-1:-1:-1;;;54009:73:0;;15047:2:1;54009:73:0;;;15029:21:1;15086:2;15066:18;;;15059:30;15125:34;15105:18;;;15098:62;-1:-1:-1;;;15176:18:1;;;15169:42;15228:19;;54009:73:0;15019:234:1;54009:73:0;-1:-1:-1;54102:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54102:24:0;;53913:221::o;53443:404::-;53524:13;53540:23;53555:7;53540:14;:23::i;:::-;53524:39;;53588:5;-1:-1:-1;;;;;53582:11:0;:2;-1:-1:-1;;;;;53582:11:0;;;53574:57;;;;-1:-1:-1;;;53574:57:0;;17001:2:1;53574:57:0;;;16983:21:1;17040:2;17020:18;;;17013:30;17079:34;17059:18;;;17052:62;-1:-1:-1;;;17130:18:1;;;17123:31;17171:19;;53574:57:0;16973:223:1;53574:57:0;829:10;-1:-1:-1;;;;;53652:21:0;;;;:69;;-1:-1:-1;53677:44:0;53701:5;829:10;54572:164;:::i;53677:44::-;53644:161;;;;-1:-1:-1;;;53644:161:0;;12684:2:1;53644:161:0;;;12666:21:1;12723:2;12703:18;;;12696:30;12762:34;12742:18;;;12735:62;12833:26;12813:18;;;12806:54;12877:19;;53644:161:0;12656:246:1;53644:161:0;53818:21;53827:2;53831:7;53818:8;:21::i;:::-;53513:334;53443:404;;:::o;69979:129::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;70067:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;52921:211::-:0;52982:7;53103:21;:12;:19;:21::i;:::-;53096:28;;52921:211;:::o;71293:90::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;71363:12:::1;::::0;;-1:-1:-1;;71347:28:0;::::1;71363:12;::::0;;::::1;71362:13;71347:28;::::0;;71293:90::o;54803:305::-;54964:41;829:10;54997:7;54964:18;:41::i;:::-;54956:103;;;;-1:-1:-1;;;54956:103:0;;;;;;;:::i;:::-;55072:28;55082:4;55088:2;55092:7;55072:9;:28::i;52683:162::-;-1:-1:-1;;;;;52807:20:0;;52780:7;52807:20;;;:13;:20;;;;;:30;;52831:5;52807:23;:30::i;:::-;52800:37;;52683:162;;;;;:::o;72990:689::-;73083:12;;;;73075:52;;;;-1:-1:-1;;;73075:52:0;;10795:2:1;73075:52:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:29;10853:18;;;10846:57;10920:18;;73075:52:0;10767:177:1;73075:52:0;73164:9;;73146:14;:27;;73138:71;;;;-1:-1:-1;;;73138:71:0;;7418:2:1;73138:71:0;;;7400:21:1;7457:2;7437:18;;;7430:30;7496:33;7476:18;;;7469:61;7547:18;;73138:71:0;7390:181:1;73138:71:0;73265:13;;73228:33;73246:14;73228:13;:11;:13::i;:::-;:17;;:33::i;:::-;:50;;73220:103;;;;-1:-1:-1;;;73220:103:0;;18896:2:1;73220:103:0;;;18878:21:1;18935:2;18915:18;;;18908:30;18974:34;18954:18;;;18947:62;-1:-1:-1;;;19025:18:1;;;19018:38;19073:19;;73220:103:0;18868:230:1;73220:103:0;73342:9;;73375;;73342:29;;73356:14;73342:13;:29::i;:::-;:42;;73334:86;;;;-1:-1:-1;;;73334:86:0;;10076:2:1;73334:86:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154:33;10134:18;;;10127:61;10205:18;;73334:86:0;10048:181:1;73334:86:0;73445:9;73441:231;73464:14;73460:1;:18;73441:231;;;73500:17;73520:13;:11;:13::i;:::-;73500:33;;73568:24;;73552:13;:11;:13::i;:::-;:40;73548:113;;;73613:32;73623:10;73635:9;73613;:32::i;:::-;-1:-1:-1;73480:3:0;;;;:::i;:::-;;;;73441:231;;74810:271;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;74878:21:::1;74860:15;74934:24;74954:3;74934:15;74878:21:::0;74946:2:::1;74934:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;74977:7;::::0;74969:40:::1;::::0;74910:48;;-1:-1:-1;74977:7:0;;::::1;-1:-1:-1::0;;;;;74977:7:0::1;::::0;74969:40:::1;::::0;::::1;;::::0;74910:48;;74969:40:::1;::::0;;;74910:48;74977:7;74969:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;75028:7:0::1;::::0;-1:-1:-1;;;;;75028:7:0::1;75020:53;75046:26;:7:::0;75058:13;75046:11:::1;:26::i;:::-;75020:53;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;55179:151:::0;55283:39;55300:4;55306:2;55310:7;55283:39;;;;;;;;;;;;:16;:39::i;69251:449::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69356:17:0;::::1;69348:57;;;::::0;-1:-1:-1;;;69348:57:0;;17403:2:1;69348:57:0::1;::::0;::::1;17385:21:1::0;17442:2;17422:18;;;17415:30;17481:29;17461:18;;;17454:57;17528:18;;69348:57:0::1;17375:177:1::0;69348:57:0::1;69418:14;69435:13;:11;:13::i;:::-;69418:30;;69459:9;69600:91;69616:15;69612:1;:19;69600:91;;;69653:26;69663:3:::0;69668:10:::1;69677:1:::0;69668:6;:10:::1;:::i;:::-;69653:9;:26::i;:::-;69633:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69600:91;;;69337:363;;69251:449:::0;;:::o;68753:104::-;68808:4;68832:17;68840:8;68832:7;:17::i;53209:172::-;53284:7;;53326:22;:12;53342:5;53326:15;:22::i;:::-;-1:-1:-1;53304:44:0;53209:172;-1:-1:-1;;;53209:172:0:o;70116:101::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;70189:20:::1;70201:7;70189:11;:20::i;:::-;70116:101:::0;:::o;50883:177::-;50955:7;50982:70;50999:7;50982:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52502:97::-;52550:13;52583:8;52576:15;;;;;:::i;69089:100::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;69160:9:::1;:21:::0;69089:100::o;50600:221::-;50672:7;-1:-1:-1;;;;;50700:19:0;;50692:74;;;;-1:-1:-1;;;50692:74:0;;13109:2:1;50692:74:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:40;13288:19;;50692:74:0;13081:232:1;50692:74:0;-1:-1:-1;;;;;50784:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;65792:148::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;65883:6:::1;::::0;65862:40:::1;::::0;65899:1:::1;::::0;-1:-1:-1;;;;;65883:6:0::1;::::0;65862:40:::1;::::0;65899:1;;65862:40:::1;65913:6;:19:::0;;-1:-1:-1;;;;;;65913:19:0::1;::::0;;65792:148::o;74608:194::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;74688:13:::1;::::0;:18;74680:60:::1;;;::::0;-1:-1:-1;;;74680:60:0;;12326:2:1;74680:60:0::1;::::0;::::1;12308:21:1::0;12365:2;12345:18;;;12338:30;12404:31;12384:18;;;12377:59;12453:18;;74680:60:0::1;12298:179:1::0;74680:60:0::1;74782:12;74761:18;:33:::0;74608:194::o;67545:477::-;67606:16;67635:18;67656:17;67666:6;67656:9;:17::i;:::-;67635:38;-1:-1:-1;67688:15:0;67684:331;;67727:16;;;67741:1;67727:16;;;;;;;;;;;;67684:331;67776:23;67816:10;67802:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67802:25:0;;67776:51;;67847:13;67842:134;67870:10;67862:5;:18;67842:134;;;67926:34;67946:6;67954:5;67926:19;:34::i;:::-;67910:6;67917:5;67910:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;67882:7;;;;:::i;:::-;;;;67842:134;;67684:331;67624:398;67545:477;;;:::o;71840:1142::-;71926:12;;;;71918:52;;;;-1:-1:-1;;;71918:52:0;;10795:2:1;71918:52:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:29;10853:18;;;10846:57;10920:18;;71918:52:0;10767:177:1;71918:52:0;71989:12;;;;;;;71981:50;;;;-1:-1:-1;;;71981:50:0;;16647:2:1;71981:50:0;;;16629:21:1;16686:2;16666:18;;;16659:30;16725:27;16705:18;;;16698:55;16770:18;;71981:50:0;16619:175:1;71981:50:0;72068:9;;72050:14;:27;;72042:71;;;;-1:-1:-1;;;72042:71:0;;7418:2:1;72042:71:0;;;7400:21:1;7457:2;7437:18;;;7430:30;7496:33;7476:18;;;7469:61;7547:18;;72042:71:0;7390:181:1;72042:71:0;72169:24;;72132:33;72150:14;72132:13;:11;:13::i;:33::-;:61;;72124:106;;;;-1:-1:-1;;;72124:106:0;;13520:2:1;72124:106:0;;;13502:21:1;;;13539:18;;;13532:30;13598:34;13578:18;;;13571:62;13650:18;;72124:106:0;13492:182:1;72124:106:0;72249:9;;72282;;72249:29;;72263:14;72249:13;:29::i;:::-;:42;;72241:86;;;;-1:-1:-1;;;72241:86:0;;10076:2:1;72241:86:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154:33;10134:18;;;10127:61;10205:18;;72241:86:0;10048:181:1;72241:86:0;72352:9;72348:231;72371:14;72367:1;:18;72348:231;;;72407:17;72427:13;:11;:13::i;:::-;72407:33;;72475:24;;72459:13;:11;:13::i;:::-;:40;72455:113;;;72520:32;72530:10;72542:9;72520;:32::i;:::-;-1:-1:-1;72387:3:0;;;;:::i;:::-;;;;72348:231;;;-1:-1:-1;72803:18:0;;:23;:109;;;;;72848:24;;72831:13;:11;:13::i;:::-;:41;:80;;;;72895:16;;72876:15;:35;;72831:80;72799:175;;;72950:12;72929:18;:33;71840:1142;:::o;51296:104::-;51352:13;51385:7;51378:14;;;;;:::i;54206:295::-;-1:-1:-1;;;;;54309:24:0;;829:10;54309:24;;54301:62;;;;-1:-1:-1;;;54301:62:0;;9722:2:1;54301:62:0;;;9704:21:1;9761:2;9741:18;;;9734:30;9800:27;9780:18;;;9773:55;9845:18;;54301:62:0;9694:175:1;54301:62:0;829:10;54376:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54376:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;54376:53:0;;;;;;;;;;54445:48;;6537:41:1;;;54376:42:0;;829:10;54445:48;;6510:18:1;54445:48:0;;;;;;;54206:295;;:::o;55401:285::-;55533:41;829:10;55566:7;55533:18;:41::i;:::-;55525:103;;;;-1:-1:-1;;;55525:103:0;;;;;;;:::i;:::-;55639:39;55653:4;55659:2;55663:7;55672:5;55639:13;:39::i;71675:118::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;71755:13:::1;:30:::0;71675:118::o;70639:579::-;70712:13;70746:16;70754:7;70746;:16::i;:::-;70738:76;;;;-1:-1:-1;;;70738:76:0;;16231:2:1;70738:76:0;;;16213:21:1;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:45;16415:19;;70738:76:0;16203:237:1;70738:76:0;70830:13;;:18;;;;:57;;;70871:16;;70852:15;:35;;70830:57;70827:384;;;70913:18;70934:9;:7;:9::i;:::-;70913:30;;70958:32;70993:64;71031:24;;71014:13;;71004:7;:23;;;;:::i;:::-;71003:52;;;;:::i;:::-;70993:8;:64::i;:::-;70958:99;;71103:4;71109:18;71086:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71072:57;;;;70639:579;;;:::o;70827:384::-;71187:12;71180:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70639:579;;;:::o;70827:384::-;70639:579;;;:::o;66841:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73755:716::-;73811:13;;:18;73803:60;;;;-1:-1:-1;;;73803:60:0;;12326:2:1;73803:60:0;;;12308:21:1;12365:2;12345:18;;;12338:30;12404:31;12384:18;;;12377:59;12453:18;;73803:60:0;12298:179:1;73803:60:0;73882:18;;73874:68;;;;-1:-1:-1;;;73874:68:0;;17759:2:1;73874:68:0;;;17741:21:1;;;17778:18;;;17771:30;17837:34;17817:18;;;17810:62;17889:18;;73874:68:0;17731:182:1;73874:68:0;74020:24;;73997:18;;73979:65;;74020:24;73987:29;73979:65;:::i;:::-;73963:13;:81;74197:18;;74219:3;;74180:36;;:12;;:16;:36::i;:::-;:42;74176:154;;;74294:24;;74273:16;74288:1;74273:12;:16;:::i;:::-;74255:63;;;74263:27;74255:63;:::i;:::-;74239:13;:79;74176:154;74381:13;;74377:87;;74432:13;;:20;;74450:1;74432:17;:20::i;:::-;74416:13;:36;74377:87;73755:716::o;66095:244::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66184:22:0;::::1;66176:73;;;::::0;-1:-1:-1;;;66176:73:0;;8197:2:1;66176:73:0::1;::::0;::::1;8179:21:1::0;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;-1:-1:-1;;;8326:18:1;;;8319:36;8372:19;;66176:73:0::1;8169:228:1::0;66176:73:0::1;66286:6;::::0;66265:38:::1;::::0;-1:-1:-1;;;;;66265:38:0;;::::1;::::0;66286:6:::1;::::0;66265:38:::1;::::0;66286:6:::1;::::0;66265:38:::1;66314:6;:17:::0;;-1:-1:-1;;;;;;66314:17:0::1;-1:-1:-1::0;;;;;66314:17:0;;;::::1;::::0;;;::::1;::::0;;66095:244::o;71506:93::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;71579:12:::1;::::0;;-1:-1:-1;;71563:28:0;::::1;71579:12;::::0;;;::::1;;;71578:13;71563:28:::0;;::::1;;::::0;;71506:93::o;68925:94::-;65214:6;;-1:-1:-1;;;;;65214:6:0;829:10;65361:23;65353:68;;;;-1:-1:-1;;;65353:68:0;;;;;;;:::i;:::-;68993:9:::1;:18:::0;68925:94::o;66876:29::-;;;;;;;:::i;57153:127::-;57218:4;57242:30;:12;57264:7;57242:21;:30::i;63171:192::-;63246:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63246:29:0;-1:-1:-1;;;;;63246:29:0;;;;;;;;:24;;63300:23;63246:24;63300:14;:23::i;:::-;-1:-1:-1;;;;;63291:46:0;;;;;;;;;;;63171:192;;:::o;43961:123::-;44030:7;44057:19;44065:3;40623:19;;40540:110;57447:355;57540:4;57565:16;57573:7;57565;:16::i;:::-;57557:73;;;;-1:-1:-1;;;57557:73:0;;11558:2:1;57557:73:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:34;11616:18;;;11609:62;-1:-1:-1;;;11687:18:1;;;11680:42;11739:19;;57557:73:0;11530:234:1;57557:73:0;57641:13;57657:23;57672:7;57657:14;:23::i;:::-;57641:39;;57710:5;-1:-1:-1;;;;;57699:16:0;:7;-1:-1:-1;;;;;57699:16:0;;:51;;;;57743:7;-1:-1:-1;;;;;57719:31:0;:20;57731:7;57719:11;:20::i;:::-;-1:-1:-1;;;;;57719:31:0;;57699:51;:94;;;-1:-1:-1;;;;;;54693:25:0;;;54669:4;54693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57754:39;57691:103;57447:355;-1:-1:-1;;;;57447:355:0:o;60583:599::-;60708:4;-1:-1:-1;;;;;60681:31:0;:23;60696:7;60681:14;:23::i;:::-;-1:-1:-1;;;;;60681:31:0;;60673:85;;;;-1:-1:-1;;;60673:85:0;;15821:2:1;60673:85:0;;;15803:21:1;15860:2;15840:18;;;15833:30;15899:34;15879:18;;;15872:62;-1:-1:-1;;;15950:18:1;;;15943:39;15999:19;;60673:85:0;15793:231:1;60673:85:0;-1:-1:-1;;;;;60795:16:0;;60787:65;;;;-1:-1:-1;;;60787:65:0;;9317:2:1;60787:65:0;;;9299:21:1;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;-1:-1:-1;;;9446:18:1;;;9439:34;9490:19;;60787:65:0;9289:226:1;60787:65:0;60969:29;60986:1;60990:7;60969:8;:29::i;:::-;-1:-1:-1;;;;;61011:19:0;;;;;;:13;:19;;;;;:35;;61038:7;61011:26;:35::i;:::-;-1:-1:-1;;;;;;61057:17:0;;;;;;:13;:17;;;;;:30;;61079:7;61057:21;:30::i;:::-;-1:-1:-1;61100:29:0;:12;61117:7;61126:2;61100:16;:29::i;:::-;;61166:7;61162:2;-1:-1:-1;;;;;61147:27:0;61156:4;-1:-1:-1;;;;;61147:27:0;;;;;;;;;;;60583:599;;;:::o;35789:137::-;35860:7;35895:22;35899:3;35911:5;35895:3;:22::i;13593:179::-;13651:7;;13683:5;13687:1;13683;:5;:::i;:::-;13671:17;;13712:1;13707;:6;;13699:46;;;;-1:-1:-1;;;13699:46:0;;8961:2:1;13699:46:0;;;8943:21:1;9000:2;8980:18;;;8973:30;9039:29;9019:18;;;9012:57;9086:18;;13699:46:0;8933:177:1;14472:220:0;14530:7;14554:6;14550:20;;-1:-1:-1;14569:1:0;14562:8;;14550:20;14581:9;14593:5;14597:1;14593;:5;:::i;:::-;14581:17;-1:-1:-1;14626:1:0;14617:5;14621:1;14581:17;14617:5;:::i;:::-;:10;14609:56;;;;-1:-1:-1;;;14609:56:0;;14645:2:1;14609:56:0;;;14627:21:1;14684:2;14664:18;;;14657:30;14723:34;14703:18;;;14696:62;-1:-1:-1;;;14774:18:1;;;14767:31;14815:19;;14609:56:0;14617:223:1;58145:110:0;58221:26;58231:2;58235:7;58221:26;;;;;;;;;;;;:9;:26::i;15170:153::-;15228:7;15260:1;15256;:5;15248:44;;;;-1:-1:-1;;;15248:44:0;;11971:2:1;15248:44:0;;;11953:21:1;12010:2;11990:18;;;11983:30;12049:28;12029:18;;;12022:56;12095:18;;15248:44:0;11943:176:1;15248:44:0;15310:5;15314:1;15310;:5;:::i;14055:158::-;14113:7;14146:1;14141;:6;;14133:49;;;;-1:-1:-1;;;14133:49:0;;10436:2:1;14133:49:0;;;10418:21:1;10475:2;10455:18;;;10448:30;10514:32;10494:18;;;10487:60;10564:18;;14133:49:0;10408:180:1;14133:49:0;14200:5;14204:1;14200;:5;:::i;44423:236::-;44503:7;;;;44563:22;44567:3;44579:5;44563:3;:22::i;:::-;44532:53;;;;-1:-1:-1;44423:236:0;-1:-1:-1;;;;;44423:236:0:o;61783:100::-;61856:19;;;;:8;;:19;;;;;:::i;45709:213::-;45816:7;45867:44;45872:3;45892;45898:12;45867:4;:44::i;:::-;45859:53;-1:-1:-1;45709:213:0;;;;;;:::o;56568:272::-;56682:28;56692:4;56698:2;56702:7;56682:9;:28::i;:::-;56729:48;56752:4;56758:2;56762:7;56771:5;56729:22;:48::i;:::-;56721:111;;;;-1:-1:-1;;;56721:111:0;;;;;;;:::i;68106:576::-;68159:27;68203:7;68199:50;;-1:-1:-1;;68227:10:0;;;;;;;;;;;;-1:-1:-1;;;68227:10:0;;;;;68106:576::o;68199:50::-;68268:2;68259:6;68300:69;68307:6;;68300:69;;68330:5;;;;:::i;:::-;;-1:-1:-1;68350:7:0;;-1:-1:-1;68355:2:0;68350:7;;:::i;:::-;;;68300:69;;;68379:17;68409:3;68399:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68399:14:0;-1:-1:-1;68379:34:0;-1:-1:-1;68433:3:0;68447:198;68454:7;;68447:198;;68482:3;68484:1;68482;:3;:::i;:::-;68478:7;-1:-1:-1;68500:10:0;68530:7;68535:2;68530;:7;:::i;:::-;:12;;68540:2;68530:12;:::i;:::-;68525:17;;:2;:17;:::i;:::-;68514:29;;:2;:29;:::i;:::-;68500:44;;68559:9;68578:4;68571:12;;68559:24;;68608:2;68598:4;68603:1;68598:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;68598:12:0;;;;;;;;-1:-1:-1;68625:8:0;68631:2;68625:8;;:::i;:::-;;;68463:182;;68447:198;;;-1:-1:-1;68669:4:0;68106:576;-1:-1:-1;;;;68106:576:0:o;43722:151::-;43806:4;40415:17;;;:12;;;:17;;;;;;:22;;43830:35;40320:125;34876:137;34946:4;34970:35;34978:3;34998:5;34970:7;:35::i;34569:131::-;34636:4;34660:32;34665:3;34685:5;34660:4;:32::i;43145:185::-;43234:4;43258:64;43263:3;43283;-1:-1:-1;;;;;43297:23:0;;43258:4;:64::i;30829:204::-;30924:18;;30896:7;;30924:26;-1:-1:-1;30916:73:0;;;;-1:-1:-1;;;30916:73:0;;7015:2:1;30916:73:0;;;6997:21:1;7054:2;7034:18;;;7027:30;7093:34;7073:18;;;7066:62;-1:-1:-1;;;7144:18:1;;;7137:32;7186:19;;30916:73:0;6987:224:1;30916:73:0;31007:3;:11;;31019:5;31007:18;;;;;;;;:::i;:::-;;;;;;;;;31000:25;;30829:204;;;;:::o;58482:250::-;58578:18;58584:2;58588:7;58578:5;:18::i;:::-;58615:54;58646:1;58650:2;58654:7;58663:5;58615:22;:54::i;:::-;58607:117;;;;-1:-1:-1;;;58607:117:0;;;;;;;:::i;41005:279::-;41109:19;;41072:7;;;;41109:27;-1:-1:-1;41101:74:0;;;;-1:-1:-1;;;41101:74:0;;13881:2:1;41101:74:0;;;13863:21:1;13920:2;13900:18;;;13893:30;13959:34;13939:18;;;13932:62;-1:-1:-1;;;14010:18:1;;;14003:32;14052:19;;41101:74:0;13853:224:1;41101:74:0;41188:22;41213:3;:12;;41226:5;41213:19;;;;;;;;:::i;:::-;;;;;;;;;;;41188:44;;41251:5;:10;;;41263:5;:12;;;41243:33;;;;;41005:279;;;;;:::o;42502:319::-;42596:7;42635:17;;;:12;;;:17;;;;;;42686:12;42671:13;42663:36;;;;-1:-1:-1;;;42663:36:0;;;;;;;;:::i;:::-;-1:-1:-1;42753:3:0;42766:12;42777:1;42766:8;:12;:::i;:::-;42753:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;42746:40;;;42502:319;;;;;:::o;62448:604::-;62569:4;-1:-1:-1;;;;;62596:13:0;;19364:20;62591:60;;-1:-1:-1;62635:4:0;62628:11;;62591:60;62661:23;62687:252;-1:-1:-1;;;829:10:0;62827:4;62846:7;62868:5;62703:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62703:181:0;;;;;;;-1:-1:-1;;;;;62703:181:0;;;;;;;;;;;62687:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62687:15:0;;;:252;:15;:252::i;:::-;62661:278;;62950:13;62977:10;62966:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63017:26:0;-1:-1:-1;;;63017:26:0;;-1:-1:-1;;;62448:604:0;;;;;;:::o;28531:1544::-;28597:4;28736:19;;;:12;;;:19;;;;;;28772:15;;28768:1300;;29134:21;29158:14;29171:1;29158:10;:14;:::i;:::-;29207:18;;29134:38;;-1:-1:-1;29187:17:0;;29207:22;;29228:1;;29207:22;:::i;:::-;29187:42;;29474:17;29494:3;:11;;29506:9;29494:22;;;;;;;;:::i;:::-;;;;;;;;;29474:42;;29640:9;29611:3;:11;;29623:13;29611:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;29743:17;:13;29759:1;29743:17;:::i;:::-;29717:23;;;;:12;;;:23;;;;;:43;29869:17;;29717:3;;29869:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29964:3;:12;;:19;29977:5;29964:19;;;;;;;;;;;29957:26;;;30007:4;30000:11;;;;;;;;28768:1300;30051:5;30044:12;;;;;27941:414;28004:4;40415:17;;;:12;;;:17;;;;;;28021:327;;-1:-1:-1;28064:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28247:18;;28225:19;;;:12;;;:19;;;;;;:40;;;;28280:11;;28021:327;-1:-1:-1;28331:5:0;28324:12;;37820:692;37896:4;38031:17;;;:12;;;:17;;;;;;38065:13;38061:444;;-1:-1:-1;;38150:38:0;;;;;;;;;;;;;;;;;;38132:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38347:19;;38327:17;;;:12;;;:17;;;;;;;:39;38381:11;;38061:444;38461:5;38425:3;38438:12;38449:1;38438:8;:12;:::i;:::-;38425:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;38488:5;38481:12;;;;;59068:404;-1:-1:-1;;;;;59148:16:0;;59140:61;;;;-1:-1:-1;;;59140:61:0;;14284:2:1;59140:61:0;;;14266:21:1;;;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;14414:18;;59140:61:0;14256:182:1;59140:61:0;59221:16;59229:7;59221;:16::i;:::-;59220:17;59212:58;;;;-1:-1:-1;;;59212:58:0;;8604:2:1;59212:58:0;;;8586:21:1;8643:2;8623:18;;;8616:30;8682;8662:18;;;8655:58;8730:18;;59212:58:0;8576:178:1;59212:58:0;-1:-1:-1;;;;;59341:17:0;;;;;;:13;:17;;;;;:30;;59363:7;59341:21;:30::i;:::-;-1:-1:-1;59384:29:0;:12;59401:7;59410:2;59384:16;:29::i;:::-;-1:-1:-1;59431:33:0;;59456:7;;-1:-1:-1;;;;;59431:33:0;;;59448:1;;59431:33;;59448:1;;59431:33;59068:404;;:::o;21915:195::-;22018:12;22050:52;22072:6;22080:4;22086:1;22089:12;22018;19364:20;;23211:60;;;;-1:-1:-1;;;23211:60:0;;18538:2:1;23211:60:0;;;18520:21:1;18577:2;18557:18;;;18550:30;18616:31;18596:18;;;18589:59;18665:18;;23211:60:0;18510:179:1;23211:60:0;23345:12;23359:23;23386:6;-1:-1:-1;;;;;23386:11:0;23406:5;23414:4;23386:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23344:75;;;;23437:52;23455:7;23464:10;23476:12;23437:17;:52::i;:::-;23430:59;22967:530;-1:-1:-1;;;;;;;22967:530:0:o;25507:742::-;25622:12;25651:7;25647:595;;;-1:-1:-1;25682:10:0;25675:17;;25647:595;25796:17;;:21;25792:439;;26059:10;26053:17;26120:15;26107:10;26103:2;26099:19;26092:44;25792:439;26202:12;26195:20;;-1:-1:-1;;;26195:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:274::-;4434:3;4472:6;4466:13;4488:53;4534:6;4529:3;4522:4;4514:6;4510:17;4488:53;:::i;:::-;4557:16;;;;;4442:137;-1:-1:-1;;4442:137:1:o;4584:470::-;4763:3;4801:6;4795:13;4817:53;4863:6;4858:3;4851:4;4843:6;4839:17;4817:53;:::i;:::-;4933:13;;4892:16;;;;4955:57;4933:13;4892:16;4989:4;4977:17;;4955:57;:::i;:::-;5028:20;;4771:283;-1:-1:-1;;;;4771:283:1:o;5267:488::-;-1:-1:-1;;;;;5536:15:1;;;5518:34;;5588:15;;5583:2;5568:18;;5561:43;5635:2;5620:18;;5613:34;;;5683:3;5678:2;5663:18;;5656:31;;;5461:4;;5704:45;;5729:19;;5721:6;5704:45;:::i;:::-;5696:53;5470:285;-1:-1:-1;;;;;;5470:285:1:o;5760:632::-;5931:2;5983:21;;;6053:13;;5956:18;;;6075:22;;;5902:4;;5931:2;6154:15;;;;6128:2;6113:18;;;5902:4;6197:169;6211:6;6208:1;6205:13;6197:169;;;6272:13;;6260:26;;6341:15;;;;6306:12;;;;6233:1;6226:9;6197:169;;;-1:-1:-1;6383:3:1;;5911:481;-1:-1:-1;;;;;;5911:481:1:o;6589:219::-;6738:2;6727:9;6720:21;6701:4;6758:44;6798:2;6787:9;6783:18;6775:6;6758:44;:::i;7576:414::-;7778:2;7760:21;;;7817:2;7797:18;;;7790:30;7856:34;7851:2;7836:18;;7829:62;-1:-1:-1;;;7922:2:1;7907:18;;7900:48;7980:3;7965:19;;7750:240::o;15258:356::-;15460:2;15442:21;;;15479:18;;;15472:30;15538:34;15533:2;15518:18;;15511:62;15605:2;15590:18;;15432:182::o;17918:413::-;18120:2;18102:21;;;18159:2;18139:18;;;18132:30;18198:34;18193:2;18178:18;;18171:62;-1:-1:-1;;;18264:2:1;18249:18;;18242:47;18321:3;18306:19;;18092:239::o;19285:128::-;19325:3;19356:1;19352:6;19349:1;19346:13;19343:2;;;19362:18;;:::i;:::-;-1:-1:-1;19398:9:1;;19333:80::o;19418:204::-;19456:3;19492:4;19489:1;19485:12;19524:4;19521:1;19517:12;19559:3;19553:4;19549:14;19544:3;19541:23;19538:2;;;19567:18;;:::i;:::-;19603:13;;19464:158;-1:-1:-1;;;19464:158:1:o;19627:120::-;19667:1;19693;19683:2;;19698:18;;:::i;:::-;-1:-1:-1;19732:9:1;;19673:74::o;19752:168::-;19792:7;19858:1;19854;19850:6;19846:14;19843:1;19840:21;19835:1;19828:9;19821:17;19817:45;19814:2;;;19865:18;;:::i;:::-;-1:-1:-1;19905:9:1;;19804:116::o;19925:125::-;19965:4;19993:1;19990;19987:8;19984:2;;;19998:18;;:::i;:::-;-1:-1:-1;20035:9:1;;19974:76::o;20055:258::-;20127:1;20137:113;20151:6;20148:1;20145:13;20137:113;;;20227:11;;;20221:18;20208:11;;;20201:39;20173:2;20166:10;20137:113;;;20268:6;20265:1;20262:13;20259:2;;;-1:-1:-1;;20303:1:1;20285:16;;20278:27;20108:205::o;20318:380::-;20397:1;20393:12;;;;20440;;;20461:2;;20515:4;20507:6;20503:17;20493:27;;20461:2;20568;20560:6;20557:14;20537:18;20534:38;20531:2;;;20614:10;20609:3;20605:20;20602:1;20595:31;20649:4;20646:1;20639:15;20677:4;20674:1;20667:15;20703:135;20742:3;-1:-1:-1;;20763:17:1;;20760:2;;;20783:18;;:::i;:::-;-1:-1:-1;20830:1:1;20819:13;;20750:88::o;20843:112::-;20875:1;20901;20891:2;;20906:18;;:::i;:::-;-1:-1:-1;20940:9:1;;20881:74::o;20960:127::-;21021:10;21016:3;21012:20;21009:1;21002:31;21052:4;21049:1;21042:15;21076:4;21073:1;21066:15;21092:127;21153:10;21148:3;21144:20;21141:1;21134:31;21184:4;21181:1;21174:15;21208:4;21205:1;21198:15;21224:127;21285:10;21280:3;21276:20;21273:1;21266:31;21316:4;21313:1;21306:15;21340:4;21337:1;21330:15;21356:127;21417:10;21412:3;21408:20;21405:1;21398:31;21448:4;21445:1;21438:15;21472:4;21469:1;21462:15;21488:127;21549:10;21544:3;21540:20;21537:1;21530:31;21580:4;21577:1;21570:15;21604:4;21601:1;21594:15;21620:131;-1:-1:-1;;;;;;21694:32:1;;21684:43;;21674:2;;21741:1;21738;21731:12
Swarm Source
ipfs://335486d97b306287a0e3b4c3e2d9582238c87debe3ed0522e1a8052e000ad44a
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.