Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
372 1111
Holders
102
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 1111Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ElevenEleven
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } /** * @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.3._ */ 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.3._ */ 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); } } } } /** * @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); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ 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 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; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * TODO: Add comment */ function burn(address account, uint256 value) external; /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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; } /** * @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); } /** * @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 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) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ 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(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(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(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } } /** * @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.0.0, only sets of type `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]; } // 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(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(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(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(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)); } } 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 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; } } interface IElevenEleven is IERC721Enumerable { function isMintedBeforeReveal(uint256 index) external view returns (bool); } /** * @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 an URI for a given token ID */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @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); } /** * @title ElevenEleven contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract ElevenEleven is Context, Ownable, ERC165, IElevenEleven, IERC721Metadata { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Public variables string public constant SMOL1111_PROVENANCE = "cd61f013c65c0e5459aa8deff0a87079fca0de310f6d2ac3b9add99120cd979e"; uint256 public constant SALE_START_TIMESTAMP = 1617120671; // 2021, March 30 at 11:11:11 CDT (UTC -5) // Time after which smols are randomized and allotted uint256 public constant REVEAL_TIMESTAMP = SALE_START_TIMESTAMP + (86400 * 11); uint256 public constant NAME_CHANGE_PRICE = 1111 * (10 ** 18); uint256 public constant MAX_NFT_SUPPLY = 1111; uint256 public startingIndexBlock; uint256 public startingIndex; // 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 token ID to name mapping (uint256 => string) private _tokenName; // Mapping if certain name string has already been reserved mapping (string => bool) private _nameReserved; // Mapping from token ID to whether the Smols was minted before reveal mapping (uint256 => bool) private _mintedBeforeReveal; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Token URI string private baseTokenURI; // Smol Token address address private _smolAddress; // Ting Token address address private _tingAddress; // Treasury address address private _treasury; /* * 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 * * => 0x06fdde03 ^ 0x95d89b41 == 0x93254542 */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x93254542; /* * 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; // Events event NameChange (uint256 indexed maskIndex, string newName); /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name, string memory symbol, address tingAddress, address smolAddress, address treasury) { _name = name; _symbol = symbol; _tingAddress = tingAddress; _smolAddress = smolAddress; _treasury = treasury; // 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 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 override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view 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 override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev Returns name of the NFT at index. */ function tokenNameByIndex(uint256 index) public view returns (string memory) { return _tokenName[index]; } /** * @dev Returns if the name has been reserved. */ function isNameReserved(string memory nameString) public view returns (bool) { return _nameReserved[toLower(nameString)]; } /** * @dev Returns if the NFT has been minted before reveal phase */ function isMintedBeforeReveal(uint256 index) public view override returns (bool) { return _mintedBeforeReveal[index]; } /** * @dev Gets current Smols Price */ function getNFTPrice() public view returns (uint256[2] memory) { require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started"); require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended"); uint256 currentSupply = totalSupply(); if (currentSupply >= 1096) { return [uint256(5000000000000000000),1]; // 1096 - 1110 1 SMOL } else if (currentSupply >= 1076) { return [uint256(666600000000000000),0]; // 1076 - 1095 0.65 ETH } else if (currentSupply >= 1026) { return [uint256(5000000000000000000),1]; // 1026 - 1075 5 SMOL } else if (currentSupply >= 976) { return [uint256(555500000000000000),0]; // 976 - 1025 0.55 ETH } else if (currentSupply >= 926) { return [uint256(5000000000000000000),1]; // 926 - 975 5 SMOL } else if (currentSupply >= 826) { return [uint256(444400000000000000),0]; // 826 - 925 0.45 ETH } else if (currentSupply >= 776) { return [uint256(5000000000000000000),1]; // 776 - 825 5 SMOL } else if (currentSupply >= 626) { return [uint256(333300000000000000),0]; // 626 - 775 0.35 ETH } else if (currentSupply >= 551) { return [uint256(5000000000000000000),1]; // 551 - 625 5 SMOL } else if (currentSupply >= 326) { return [uint256(222200000000000000),0]; // 327 - 550 0.25 ETH } else if (currentSupply >= 251) { return [uint256(5000000000000000000),1]; // 252 - 326 5 SMOL } else if (currentSupply >= 1 ) { return [uint256(111100000000000000),0]; // 1 - 251 0.15 ETH } else { require(msg.sender == owner(), "giveaway: not owner"); return [uint256(0),0]; // Free for owner via giveaway } } /** * @dev Mints Smols */ function mintNFT(uint256 numberOfNfts) public payable { require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended"); require(numberOfNfts > 0, "numberOfNfts cannot be 0"); require(numberOfNfts <= 20, "You may not buy more than 20 NFTs at once"); require(totalSupply().add(numberOfNfts) <= MAX_NFT_SUPPLY, "Exceeds MAX_NFT_SUPPLY"); // if ETH tiers if (getNFTPrice()[1] == 0) { require(getNFTPrice()[0].mul(numberOfNfts) == msg.value, "Ether value sent is not correct"); for (uint i = 0; i < numberOfNfts; i++) { uint mintIndex = totalSupply(); if (block.timestamp < REVEAL_TIMESTAMP) { _mintedBeforeReveal[mintIndex] = true; } _safeMint(msg.sender, mintIndex); } } // if SMOL tiers else if (getNFTPrice()[1] == 1) { require(msg.value == 0, "Ether sent instead of smol"); require(IERC20(_smolAddress).balanceOf(msg.sender) >= getNFTPrice()[0].mul(numberOfNfts), "Not enough Smol"); for (uint i = 0; i < numberOfNfts; i++) { uint mintIndex = totalSupply(); if (block.timestamp < REVEAL_TIMESTAMP) { _mintedBeforeReveal[mintIndex] = true; } IERC20(_smolAddress).transferFrom(msg.sender, _treasury, getNFTPrice()[0]); _safeMint(msg.sender, mintIndex); } } /** * Source of randomness. Theoretical miner withhold manipulation possible but should be sufficient in a pragmatic sense */ if (startingIndexBlock == 0 && (totalSupply() == MAX_NFT_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) { startingIndexBlock = block.number; } } /** * @dev Finalize starting index */ function finalizeStartingIndex() public { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint(blockhash(startingIndexBlock)) % MAX_NFT_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 = uint(blockhash(block.number-1)) % MAX_NFT_SUPPLY; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex.add(1); } } /** * @dev Changes the name for Smols tokenId */ function changeName(uint256 tokenId, string memory newName) public { address owner = ownerOf(tokenId); require(_msgSender() == owner, "ERC721: caller is not the owner"); require(validateName(newName) == true, "Not a valid new name"); require(sha256(bytes(newName)) != sha256(bytes(_tokenName[tokenId])), "New name is same as the current one"); require(isNameReserved(newName) == false, "Name already reserved"); IERC20(_tingAddress).burn(msg.sender, NAME_CHANGE_PRICE); // If already named, dereserve old name if (bytes(_tokenName[tokenId]).length > 0) { toggleReserveName(_tokenName[tokenId], false); } toggleReserveName(newName, true); _tokenName[tokenId] = newName; emit NameChange(tokenId, newName); } /** * @dev Withdraw ether from this contract (Callable by owner) */ function withdraw() onlyOwner public { uint balance = address(this).balance; msg.sender.transfer(balance); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || 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 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 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 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 returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || 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 { require(totalSupply() < 1111); _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(totalSupply() < 1112); 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 = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), 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(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); 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 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); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @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 { } /** * @dev Reserves the name if isReserve is set to true, de-reserves if set to false */ function toggleReserveName(string memory str, bool isReserve) internal { _nameReserved[toLower(str)] = isReserve; } /** * @dev Check if the name string is valid (Alphanumeric and spaces without leading or trailing space) */ function validateName(string memory str) public pure returns (bool){ bytes memory b = bytes(str); if(b.length < 1) return false; if(b.length > 25) return false; // Cannot be longer than 25 characters if(b[0] == 0x20) return false; // Leading space if (b[b.length - 1] == 0x20) return false; // Trailing space bytes1 lastChar = b[0]; for(uint i; i<b.length; i++){ bytes1 char = b[i]; if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spaces if( !(char >= 0x30 && char <= 0x39) && //9-0 !(char >= 0x41 && char <= 0x5A) && //A-Z !(char >= 0x61 && char <= 0x7A) && //a-z !(char == 0x20) //space ) return false; lastChar = char; } return true; } function setBaseTokenURI(string memory newURI) public onlyOwner { baseTokenURI = newURI; } function tokenURI() public view returns (string memory) { return baseTokenURI; } /** * @dev Returns an URI for a given token ID */ function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked(tokenURI(), Strings.toString(tokenId.add(startingIndex) % MAX_NFT_SUPPLY), '.json')); } /** * @dev Converts the string to lowercase */ function toLower(string memory str) public pure returns (string memory){ bytes memory bStr = bytes(str); bytes memory bLower = new bytes(bStr.length); for (uint i = 0; i < bStr.length; i++) { // Uppercase character if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) { bLower[i] = bytes1(uint8(bStr[i]) + 32); } else { bLower[i] = bStr[i]; } } return string(bLower); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"tingAddress","type":"address"},{"internalType":"address","name":"smolAddress","type":"address"},{"internalType":"address","name":"treasury","type":"address"}],"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":"uint256","name":"maskIndex","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","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_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME_CHANGE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMOL1111_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isMintedBeforeReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","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":"renounceOwnership","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseTokenURI","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":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005a8138038062005a81833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291905050506000620001e8620003e660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200029e6301ffc9a760e01b620003ee60201b60201c565b84600c9080519060200190620002b6929190620004f7565b5083600d9080519060200190620002cf929190620004f7565b5082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ab6380ac58cd60e01b620003ee60201b60201c565b620003c3639325454260e01b620003ee60201b60201c565b620003db63780e9d6360e01b620003ee60201b60201c565b5050505050620005ad565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200048b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200052f57600085556200057b565b82601f106200054a57805160ff19168380011785556200057b565b828001600101855582156200057b579182015b828111156200057a5782518255916020019190600101906200055d565b5b5090506200058a91906200058e565b5090565b5b80821115620005a95760008160009055506001016200058f565b5090565b6154c480620005bd6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b5077f44116100ab578063cb774d471161006f578063cb774d4714611162578063e36d64981461118d578063e985e9c5146111b8578063f2fde38b1461123f578063fb107a4f1461129057610225565b8063b5077f4414610e4e578063b88d4fde14610e79578063bc28d70214610f8b578063c39cbef114610fdc578063c87b56dd146110ae57610225565b80639416b423116100f25780639416b42314610b17578063946807fd14610c5857806395d89b4114610c835780639ffdb65a14610d13578063a22cb46514610df157610225565b8063715018a614610a7a57806374df39c914610a915780638da5cb5b14610aa85780639264274414610ae957610225565b806330176e13116101b15780634f6ccce7116101755780634f6ccce71461088257806354b6f161146108d15780636352211e146108fc5780636d5224181461096157806370a0823114610a1557610225565b806330176e13146106085780633c130d90146106d05780633ccfd60b1461076057806342842e0e14610777578063499c2c74146107f257610225565b806315b56d10116101f857806315b56d10146103ea57806318160ddd146104c857806318e20a38146104f357806323b872dd1461051e5780632f745c591461059957610225565b806301ffc9a71461022a57806306fdde031461029a578063081812fc1461032a578063095ea7b31461038f575b600080fd5b34801561023657600080fd5b506102826004803603602081101561024d57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506112e3565b60405180821515815260200191505060405180910390f35b3480156102a657600080fd5b506102af61134b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ef5780820151818401526020810190506102d4565b50505050905090810190601f16801561031c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033657600080fd5b506103636004803603602081101561034d57600080fd5b81019080803590602001909291905050506113ed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039b57600080fd5b506103e8600480360360408110156103b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b005b3480156103f657600080fd5b506104b06004803603602081101561040d57600080fd5b810190808035906020019064010000000081111561042a57600080fd5b82018360208201111561043c57600080fd5b8035906020019184600183028401116401000000008311171561045e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115cc565b60405180821515815260200191505060405180910390f35b3480156104d457600080fd5b506104dd611654565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611665565b6040518082815260200191505060405180910390f35b34801561052a57600080fd5b506105976004803603606081101561054157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611672565b005b3480156105a557600080fd5b506105f2600480360360408110156105bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e8565b6040518082815260200191505060405180910390f35b34801561061457600080fd5b506106ce6004803603602081101561062b57600080fd5b810190808035906020019064010000000081111561064857600080fd5b82018360208201111561065a57600080fd5b8035906020019184600183028401116401000000008311171561067c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611743565b005b3480156106dc57600080fd5b506106e5611825565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072557808201518184015260208101905061070a565b50505050905090810190601f1680156107525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561076c57600080fd5b506107756118c7565b005b34801561078357600080fd5b506107f06004803603606081101561079a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119de565b005b3480156107fe57600080fd5b506108076119fe565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561084757808201518184015260208101905061082c565b50505050905090810190601f1680156108745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561088e57600080fd5b506108bb600480360360208110156108a557600080fd5b8101908080359060200190929190505050611a1a565b6040518082815260200191505060405180910390f35b3480156108dd57600080fd5b506108e6611a3d565b6040518082815260200191505060405180910390f35b34801561090857600080fd5b506109356004803603602081101561091f57600080fd5b8101908080359060200190929190505050611a4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b5061099a6004803603602081101561098457600080fd5b8101908080359060200190929190505050611a81565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109da5780820151818401526020810190506109bf565b50505050905090810190601f168015610a075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b36565b6040518082815260200191505060405180910390f35b348015610a8657600080fd5b50610a8f611c0b565b005b348015610a9d57600080fd5b50610aa6611d91565b005b348015610ab457600080fd5b50610abd611efb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b1560048036036020811015610aff57600080fd5b8101908080359060200190929190505050611f24565b005b348015610b2357600080fd5b50610bdd60048036036020811015610b3a57600080fd5b8101908080359060200190640100000000811115610b5757600080fd5b820183602082011115610b6957600080fd5b80359060200191846001830284011164010000000083111715610b8b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612605565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c1d578082015181840152602081019050610c02565b50505050905090810190601f168015610c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6457600080fd5b50610c6d612782565b6040518082815260200191505060405180910390f35b348015610c8f57600080fd5b50610c9861278a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cd8578082015181840152602081019050610cbd565b50505050905090810190601f168015610d055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d1f57600080fd5b50610dd960048036036020811015610d3657600080fd5b8101908080359060200190640100000000811115610d5357600080fd5b820183602082011115610d6557600080fd5b80359060200191846001830284011164010000000083111715610d8757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061282c565b60405180821515815260200191505060405180910390f35b348015610dfd57600080fd5b50610e4c60048036036040811015610e1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b33565b005b348015610e5a57600080fd5b50610e63612ce9565b6040518082815260200191505060405180910390f35b348015610e8557600080fd5b50610f8960048036036080811015610e9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f0357600080fd5b820183602082011115610f1557600080fd5b80359060200191846001830284011164010000000083111715610f3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612cef565b005b348015610f9757600080fd5b50610fc460048036036020811015610fae57600080fd5b8101908080359060200190929190505050612d67565b60405180821515815260200191505060405180910390f35b348015610fe857600080fd5b506110ac60048036036040811015610fff57600080fd5b81019080803590602001909291908035906020019064010000000081111561102657600080fd5b82018360208201111561103857600080fd5b8035906020019184600183028401116401000000008311171561105a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612d91565b005b3480156110ba57600080fd5b506110e7600480360360208110156110d157600080fd5b8101908080359060200190929190505050613367565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561112757808201518184015260208101905061110c565b50505050905090810190601f1680156111545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561116e57600080fd5b50611177613484565b6040518082815260200191505060405180910390f35b34801561119957600080fd5b506111a261348a565b6040518082815260200191505060405180910390f35b3480156111c457600080fd5b50611227600480360360408110156111db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613490565b60405180821515815260200191505060405180910390f35b34801561124b57600080fd5b5061128e6004803603602081101561126257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613524565b005b34801561129c57600080fd5b506112a561372f565b6040518082600260200280838360005b838110156112d05780820151818401526020810190506112b5565b5050505090500191505060405180910390f35b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b5050505050905090565b60006113f882613b33565b61144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806153c5602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061149382611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061543d6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611539613b50565b73ffffffffffffffffffffffffffffffffffffffff161480611568575061156781611562613b50565b613490565b5b6115bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061528e6038913960400191505060405180910390fd5b6115c78383613b58565b505050565b600060096115d983612605565b6040518082805190602001908083835b6020831061160c57805182526020820191506020810190506020830392506115e9565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff169050919050565b60006116606005613c11565b905090565b620e80806360634d9f0181565b61168361167d613b50565b82613c26565b6116d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061545e6031913960400191505060405180910390fd5b6116e3838383613d1a565b505050565b600061173b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f5d90919063ffffffff16565b905092915050565b61174b613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e90805190602001906118219291906150d0565b5050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b6118cf613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119da573d6000803e3d6000fd5b5050565b6119f983838360405180602001604052806000815250612cef565b505050565b6040518060600160405280604081526020016152ef6040913981565b600080611a31836005613f7790919063ffffffff16565b50905080915050919050565b683c3a38e5ab72fc000081565b6000611a7a82604051806060016040528060298152602001615359602991396005613fa39092919063ffffffff16565b9050919050565b6060600860008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061532f602a913960400191505060405180910390fd5b611c04600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613fc2565b9050919050565b611c13613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600060035414611e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b60006002541415611e82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b6104576002544060001c81611e9357fe5b0660038190555060ff611eb160025443613fd790919063ffffffff16565b1115611ed157610457600143034060001c81611ec957fe5b066003819055505b60006003541415611ef957611ef2600160035461402190919063ffffffff16565b6003819055505b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610457611f2f611654565b10611fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b60008111612018576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000081525060200191505060405180910390fd5b6014811115612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c66029913960400191505060405180910390fd5b61045761208f82612081611654565b61402190919063ffffffff16565b1115612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b600061210d61372f565b60016002811061211957fe5b6020020151141561223657346121508261213161372f565b60006002811061213d57fe5b60200201516140a990919063ffffffff16565b146121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b818110156122305760006121d8611654565b9050620e80806360634d9f01421015612218576001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b612222338261412f565b5080806001019150506121c6565b506125c7565b600161224061372f565b60016002811061224c57fe5b602002015114156125c657600034146122cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722073656e7420696e7374656164206f6620736d6f6c00000000000081525060200191505060405180910390fd5b6122f8816122d961372f565b6000600281106122e557fe5b60200201516140a990919063ffffffff16565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561238157600080fd5b505afa158015612395573d6000803e3d6000fd5b505050506040513d60208110156123ab57600080fd5b81019080805190602001909291905050501015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4e6f7420656e6f75676820536d6f6c000000000000000000000000000000000081525060200191505060405180910390fd5b60005b818110156125c4576000612445611654565b9050620e80806360634d9f01421015612485576001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166124ef61372f565b6000600281106124fb57fe5b60200201516040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561257057600080fd5b505af1158015612584573d6000803e3d6000fd5b505050506040513d602081101561259a57600080fd5b8101908080519060200190929190505050506125b6338261412f565b508080600101915050612433565b505b5b60006002541480156125f557506104576125df611654565b14806125f45750620e80806360634d9f014210155b5b1561260257436002819055505b50565b606060008290506000815167ffffffffffffffff8111801561262657600080fd5b506040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b50905060005b825181101561277757604183828151811061267657fe5b602001015160f81c60f81b60f81c60ff16101580156126b25750605a83828151811061269e57fe5b602001015160f81c60f81b60f81c60ff1611155b156127175760208382815181106126c557fe5b602001015160f81c60f81b60f81c0160f81b8282815181106126e357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061276a565b82818151811061272357fe5b602001015160f81c60f81b82828151811061273a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b808060010191505061265f565b508092505050919050565b6360634d9f81565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128225780601f106127f757610100808354040283529160200191612822565b820191906000526020600020905b81548152906001019060200180831161280557829003601f168201915b5050505050905090565b600080829050600181511015612846576000915050612b2e565b60198151111561285a576000915050612b2e565b602060f81b8160008151811061286c57fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156128a9576000915050612b2e565b602060f81b816001835103815181106128be57fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156128fb576000915050612b2e565b60008160008151811061290a57fe5b602001015160f81c60f81b905060005b8251811015612b2657600083828151811061293157fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480156129985750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156129aa576000945050505050612b2e565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a065750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612a6c5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a6a5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612ad15750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612acf5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b035750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612b15576000945050505050612b2e565b80925050808060010191505061291a565b506001925050505b919050565b612b3b613b50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600b6000612be9613b50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c96613b50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61045781565b612d00612cfa613b50565b83613c26565b612d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061545e6031913960400191505060405180910390fd5b612d6184848484614162565b50505050565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000612d9c83611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff16612dbd613b50565b73ffffffffffffffffffffffffffffffffffffffff1614612e46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b60011515612e538361282c565b151514612ec8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420612076616c6964206e6577206e616d6500000000000000000000000081525060200191505060405180910390fd5b6002600860008581526020019081526020016000206040518082805460018160011615610100020316600290048015612f385780601f10612f16576101008083540402835291820191612f38565b820191906000526020600020905b815481529060010190602001808311612f24575b5050915050602060405180830381855afa158015612f5a573d6000803e3d6000fd5b5050506040513d6020811015612f6f57600080fd5b81019080805190602001909291905050506002836040518082805190602001908083835b60208310612fb65780518252602082019150602081019050602083039250612f93565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015612ff8573d6000803e3d6000fd5b5050506040513d602081101561300d57600080fd5b81019080805190602001909291905050501415613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061541a6023913960400191505060405180910390fd5b60001515613082836115cc565b1515146130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e616d6520616c7265616479207265736572766564000000000000000000000081525060200191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33683c3a38e5ab72fc00006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561319357600080fd5b505af11580156131a7573d6000803e3d6000fd5b50505050600060086000858152602001908152602001600020805460018160011615610100020316600290049050111561329257613291600860008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132855780601f1061325a57610100808354040283529160200191613285565b820191906000526020600020905b81548152906001019060200180831161326857829003601f168201915b505050505060006141d4565b5b61329d8260016141d4565b816008600085815260200190815260200160002090805190602001906132c49291906150d0565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561332857808201518184015260208101905061330d565b50505050905090810190601f1680156133555780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b6060613371611825565b61339961045761338c6003548661402190919063ffffffff16565b8161339357fe5b06614261565b6040516020018083805190602001908083835b602083106133cf57805182526020820191506020810190506020830392506133ac565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061342057805182526020820191506020810190506020830392506133fd565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600501925050506040516020818303038152906040529050919050565b60035481565b60025481565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61352c613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151f26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61373761515e565b6360634d9f4210156137b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b6104576137bc611654565b1061382f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b6000613839611654565b9050610448811061386a576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61043481106138995760405180604001604052806709403d2b0f46800081526020016000815250915050613b30565b61040281106138c8576040518060400160405280674563918244f4000081526020016001815250915050613b30565b6103d081106138f75760405180604001604052806707b5884e8cbac00081526020016000815250915050613b30565b61039e8110613926576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61033a811061395557604051806040016040528067062ad3720a2f000081526020016000815250915050613b30565b6103088110613984576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61027281106139b35760405180604001604052806704a01e9587a3400081526020016000815250915050613b30565b61022781106139e2576040518060400160405280674563918244f4000081526020016001815250915050613b30565b6101468110613a1157604051806040016040528067031569b90517800081526020016000815250915050613b30565b60fb8110613a3f576040518060400160405280674563918244f4000081526020016001815250915050613b30565b60018110613a6d57604051806040016040528067018ab4dc828bc00081526020016000815250915050613b30565b613a75611efb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613b15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f67697665617761793a206e6f74206f776e65720000000000000000000000000081525060200191505060405180910390fd5b60405180604001604052806000815260200160008152509150505b90565b6000613b498260056143a890919063ffffffff16565b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613bcb83611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613c1f826000016143c2565b9050919050565b6000613c3182613b33565b613c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615262602c913960400191505060405180910390fd5b6000613c9183611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613d0057508373ffffffffffffffffffffffffffffffffffffffff16613ce8846113ed565b73ffffffffffffffffffffffffffffffffffffffff16145b80613d115750613d108185613490565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613d3a82611a4a565b73ffffffffffffffffffffffffffffffffffffffff1614613da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806153f16029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152186024913960400191505060405180910390fd5b613e378383836143d3565b613e42600082613b58565b613e9381600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143d890919063ffffffff16565b50613ee581600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143f290919063ffffffff16565b50613efc8183600561440c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f6c8360000183614441565b60001c905092915050565b600080600080613f8a86600001866144c4565b915091508160001c8160001c9350935050509250929050565b6000613fb6846000018460001b8461455d565b60001c90509392505050565b6000613fd082600001614653565b9050919050565b600061401983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614664565b905092915050565b60008082840190508381101561409f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808314156140bc5760009050614129565b60008284029050828482816140cd57fe5b0414614124576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806153a46021913960400191505060405180910390fd5b809150505b92915050565b61045761413a611654565b1061414457600080fd5b61415e828260405180602001604052806000815250614724565b5050565b61416d848484613d1a565b614179848484846147aa565b6141ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806151c06032913960400191505060405180910390fd5b50505050565b8060096141e084612605565b6040518082805190602001908083835b6020831061421357805182526020820191506020810190506020830392506141f0565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b606060008214156142a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506143a3565b600082905060005b600082146142d3578080600101915050600a82816142cb57fe5b0491506142b1565b60008167ffffffffffffffff811180156142ec57600080fd5b506040519080825280601f01601f19166020018201604052801561431f5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461439b57600a848161434057fe5b0660300160f81b8282806001900393508151811061435a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161439357fe5b04935061432e565b819450505050505b919050565b60006143ba836000018360001b6149c3565b905092915050565b600081600001805490509050919050565b505050565b60006143ea836000018360001b6149e6565b905092915050565b6000614404836000018360001b614ace565b905092915050565b6000614438846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614b3e565b90509392505050565b6000818360000180549050116144a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061519e6022913960400191505060405180910390fd5b8260000182815481106144b157fe5b9060005260206000200154905092915050565b60008082846000018054905011614526576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153826022913960400191505060405180910390fd5b600084600001848154811061453757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614624576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145e95780820151818401526020810190506145ce565b50505050905090810190601f1680156146165780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061463757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000838311158290614711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156146d65780820151818401526020810190506146bb565b50505050905090810190601f1680156147035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61472e8383614c1a565b610458614739611654565b1061474357600080fd5b61475060008484846147aa565b6147a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806151c06032913960400191505060405180910390fd5b505050565b60006147cb8473ffffffffffffffffffffffffffffffffffffffff16614e0e565b6147d857600190506149bb565b600061494263150b7a0260e01b6147ed613b50565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614871578082015181840152602081019050614856565b50505050905090810190601f16801561489e5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016151c0603291398773ffffffffffffffffffffffffffffffffffffffff16614e219092919063ffffffff16565b9050600081806020019051602081101561495b57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114614ac25760006001820390506000600186600001805490500390506000866000018281548110614a3157fe5b9060005260206000200154905080876000018481548110614a4e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614a8657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614ac8565b60009150505b92915050565b6000614ada8383614e39565b614b33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614b38565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614be557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614c13565b82856000016001830381548110614bf857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614cbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614cc681613b33565b15614d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b614d45600083836143d3565b614d9681600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143f290919063ffffffff16565b50614dad8183600561440c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060614e308484600085614e5c565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061523c6026913960400191505060405180910390fd5b614ec085614e0e565b614f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614f815780518252602082019150602081019050602083039250614f5e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614fe3576040519150601f19603f3d011682016040523d82523d6000602084013e614fe8565b606091505b5091509150614ff8828286615004565b92505050949350505050565b60608315615014578290506150c9565b6000835111156150275782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561508e578082015181840152602081019050615073565b50505050905090810190601f1680156150bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282615106576000855561514d565b82601f1061511f57805160ff191683800117855561514d565b8280016001018555821561514d579182015b8281111561514c578251825591602001919060010190615131565b5b50905061515a9190615180565b5090565b6040518060400160405280600290602082028036833780820191505090505090565b5b80821115615199576000816000905550600101615181565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c596f75206d6179206e6f7420627579206d6f7265207468616e203230204e465473206174206f6e6365636436316630313363363563306535343539616138646566663061383730373966636130646533313066366432616333623961646439393132306364393739654552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a264697066735822122024fc05301b7b18f50c37a9486e45967b2a8ec17ba43d06d4b0e373497d831f0a64736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000074696e67451a48c2ac387b5855981654dc858ec30000000000000000000000002216e873ea4282ebef7a02ac5aea220be6391a7c0000000000000000000000003fa49662b0207686cfbda63a667c62ac0d31a2e40000000000000000000000000000000000000000000000000000000000000010536d6f6c456c6576656e456c6576656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043131313100000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063715018a611610123578063b5077f44116100ab578063cb774d471161006f578063cb774d4714611162578063e36d64981461118d578063e985e9c5146111b8578063f2fde38b1461123f578063fb107a4f1461129057610225565b8063b5077f4414610e4e578063b88d4fde14610e79578063bc28d70214610f8b578063c39cbef114610fdc578063c87b56dd146110ae57610225565b80639416b423116100f25780639416b42314610b17578063946807fd14610c5857806395d89b4114610c835780639ffdb65a14610d13578063a22cb46514610df157610225565b8063715018a614610a7a57806374df39c914610a915780638da5cb5b14610aa85780639264274414610ae957610225565b806330176e13116101b15780634f6ccce7116101755780634f6ccce71461088257806354b6f161146108d15780636352211e146108fc5780636d5224181461096157806370a0823114610a1557610225565b806330176e13146106085780633c130d90146106d05780633ccfd60b1461076057806342842e0e14610777578063499c2c74146107f257610225565b806315b56d10116101f857806315b56d10146103ea57806318160ddd146104c857806318e20a38146104f357806323b872dd1461051e5780632f745c591461059957610225565b806301ffc9a71461022a57806306fdde031461029a578063081812fc1461032a578063095ea7b31461038f575b600080fd5b34801561023657600080fd5b506102826004803603602081101561024d57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506112e3565b60405180821515815260200191505060405180910390f35b3480156102a657600080fd5b506102af61134b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ef5780820151818401526020810190506102d4565b50505050905090810190601f16801561031c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033657600080fd5b506103636004803603602081101561034d57600080fd5b81019080803590602001909291905050506113ed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039b57600080fd5b506103e8600480360360408110156103b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b005b3480156103f657600080fd5b506104b06004803603602081101561040d57600080fd5b810190808035906020019064010000000081111561042a57600080fd5b82018360208201111561043c57600080fd5b8035906020019184600183028401116401000000008311171561045e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115cc565b60405180821515815260200191505060405180910390f35b3480156104d457600080fd5b506104dd611654565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611665565b6040518082815260200191505060405180910390f35b34801561052a57600080fd5b506105976004803603606081101561054157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611672565b005b3480156105a557600080fd5b506105f2600480360360408110156105bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e8565b6040518082815260200191505060405180910390f35b34801561061457600080fd5b506106ce6004803603602081101561062b57600080fd5b810190808035906020019064010000000081111561064857600080fd5b82018360208201111561065a57600080fd5b8035906020019184600183028401116401000000008311171561067c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611743565b005b3480156106dc57600080fd5b506106e5611825565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072557808201518184015260208101905061070a565b50505050905090810190601f1680156107525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561076c57600080fd5b506107756118c7565b005b34801561078357600080fd5b506107f06004803603606081101561079a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119de565b005b3480156107fe57600080fd5b506108076119fe565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561084757808201518184015260208101905061082c565b50505050905090810190601f1680156108745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561088e57600080fd5b506108bb600480360360208110156108a557600080fd5b8101908080359060200190929190505050611a1a565b6040518082815260200191505060405180910390f35b3480156108dd57600080fd5b506108e6611a3d565b6040518082815260200191505060405180910390f35b34801561090857600080fd5b506109356004803603602081101561091f57600080fd5b8101908080359060200190929190505050611a4a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561096d57600080fd5b5061099a6004803603602081101561098457600080fd5b8101908080359060200190929190505050611a81565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109da5780820151818401526020810190506109bf565b50505050905090810190601f168015610a075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b36565b6040518082815260200191505060405180910390f35b348015610a8657600080fd5b50610a8f611c0b565b005b348015610a9d57600080fd5b50610aa6611d91565b005b348015610ab457600080fd5b50610abd611efb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b1560048036036020811015610aff57600080fd5b8101908080359060200190929190505050611f24565b005b348015610b2357600080fd5b50610bdd60048036036020811015610b3a57600080fd5b8101908080359060200190640100000000811115610b5757600080fd5b820183602082011115610b6957600080fd5b80359060200191846001830284011164010000000083111715610b8b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612605565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c1d578082015181840152602081019050610c02565b50505050905090810190601f168015610c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c6457600080fd5b50610c6d612782565b6040518082815260200191505060405180910390f35b348015610c8f57600080fd5b50610c9861278a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cd8578082015181840152602081019050610cbd565b50505050905090810190601f168015610d055780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d1f57600080fd5b50610dd960048036036020811015610d3657600080fd5b8101908080359060200190640100000000811115610d5357600080fd5b820183602082011115610d6557600080fd5b80359060200191846001830284011164010000000083111715610d8757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061282c565b60405180821515815260200191505060405180910390f35b348015610dfd57600080fd5b50610e4c60048036036040811015610e1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b33565b005b348015610e5a57600080fd5b50610e63612ce9565b6040518082815260200191505060405180910390f35b348015610e8557600080fd5b50610f8960048036036080811015610e9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610f0357600080fd5b820183602082011115610f1557600080fd5b80359060200191846001830284011164010000000083111715610f3757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612cef565b005b348015610f9757600080fd5b50610fc460048036036020811015610fae57600080fd5b8101908080359060200190929190505050612d67565b60405180821515815260200191505060405180910390f35b348015610fe857600080fd5b506110ac60048036036040811015610fff57600080fd5b81019080803590602001909291908035906020019064010000000081111561102657600080fd5b82018360208201111561103857600080fd5b8035906020019184600183028401116401000000008311171561105a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612d91565b005b3480156110ba57600080fd5b506110e7600480360360208110156110d157600080fd5b8101908080359060200190929190505050613367565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561112757808201518184015260208101905061110c565b50505050905090810190601f1680156111545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561116e57600080fd5b50611177613484565b6040518082815260200191505060405180910390f35b34801561119957600080fd5b506111a261348a565b6040518082815260200191505060405180910390f35b3480156111c457600080fd5b50611227600480360360408110156111db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613490565b60405180821515815260200191505060405180910390f35b34801561124b57600080fd5b5061128e6004803603602081101561126257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613524565b005b34801561129c57600080fd5b506112a561372f565b6040518082600260200280838360005b838110156112d05780820151818401526020810190506112b5565b5050505090500191505060405180910390f35b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b5050505050905090565b60006113f882613b33565b61144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806153c5602c913960400191505060405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061149382611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061543d6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611539613b50565b73ffffffffffffffffffffffffffffffffffffffff161480611568575061156781611562613b50565b613490565b5b6115bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061528e6038913960400191505060405180910390fd5b6115c78383613b58565b505050565b600060096115d983612605565b6040518082805190602001908083835b6020831061160c57805182526020820191506020810190506020830392506115e9565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff169050919050565b60006116606005613c11565b905090565b620e80806360634d9f0181565b61168361167d613b50565b82613c26565b6116d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061545e6031913960400191505060405180910390fd5b6116e3838383613d1a565b505050565b600061173b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613f5d90919063ffffffff16565b905092915050565b61174b613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461180b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e90805190602001906118219291906150d0565b5050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b6118cf613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119da573d6000803e3d6000fd5b5050565b6119f983838360405180602001604052806000815250612cef565b505050565b6040518060600160405280604081526020016152ef6040913981565b600080611a31836005613f7790919063ffffffff16565b50905080915050919050565b683c3a38e5ab72fc000081565b6000611a7a82604051806060016040528060298152602001615359602991396005613fa39092919063ffffffff16565b9050919050565b6060600860008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061532f602a913960400191505060405180910390fd5b611c04600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613fc2565b9050919050565b611c13613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600060035414611e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b60006002541415611e82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b6104576002544060001c81611e9357fe5b0660038190555060ff611eb160025443613fd790919063ffffffff16565b1115611ed157610457600143034060001c81611ec957fe5b066003819055505b60006003541415611ef957611ef2600160035461402190919063ffffffff16565b6003819055505b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610457611f2f611654565b10611fa2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b60008111612018576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000081525060200191505060405180910390fd5b6014811115612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c66029913960400191505060405180910390fd5b61045761208f82612081611654565b61402190919063ffffffff16565b1115612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b600061210d61372f565b60016002811061211957fe5b6020020151141561223657346121508261213161372f565b60006002811061213d57fe5b60200201516140a990919063ffffffff16565b146121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b818110156122305760006121d8611654565b9050620e80806360634d9f01421015612218576001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b612222338261412f565b5080806001019150506121c6565b506125c7565b600161224061372f565b60016002811061224c57fe5b602002015114156125c657600034146122cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722073656e7420696e7374656164206f6620736d6f6c00000000000081525060200191505060405180910390fd5b6122f8816122d961372f565b6000600281106122e557fe5b60200201516140a990919063ffffffff16565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561238157600080fd5b505afa158015612395573d6000803e3d6000fd5b505050506040513d60208110156123ab57600080fd5b81019080805190602001909291905050501015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4e6f7420656e6f75676820536d6f6c000000000000000000000000000000000081525060200191505060405180910390fd5b60005b818110156125c4576000612445611654565b9050620e80806360634d9f01421015612485576001600a600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166124ef61372f565b6000600281106124fb57fe5b60200201516040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561257057600080fd5b505af1158015612584573d6000803e3d6000fd5b505050506040513d602081101561259a57600080fd5b8101908080519060200190929190505050506125b6338261412f565b508080600101915050612433565b505b5b60006002541480156125f557506104576125df611654565b14806125f45750620e80806360634d9f014210155b5b1561260257436002819055505b50565b606060008290506000815167ffffffffffffffff8111801561262657600080fd5b506040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b50905060005b825181101561277757604183828151811061267657fe5b602001015160f81c60f81b60f81c60ff16101580156126b25750605a83828151811061269e57fe5b602001015160f81c60f81b60f81c60ff1611155b156127175760208382815181106126c557fe5b602001015160f81c60f81b60f81c0160f81b8282815181106126e357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061276a565b82818151811061272357fe5b602001015160f81c60f81b82828151811061273a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b808060010191505061265f565b508092505050919050565b6360634d9f81565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128225780601f106127f757610100808354040283529160200191612822565b820191906000526020600020905b81548152906001019060200180831161280557829003601f168201915b5050505050905090565b600080829050600181511015612846576000915050612b2e565b60198151111561285a576000915050612b2e565b602060f81b8160008151811061286c57fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156128a9576000915050612b2e565b602060f81b816001835103815181106128be57fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156128fb576000915050612b2e565b60008160008151811061290a57fe5b602001015160f81c60f81b905060005b8251811015612b2657600083828151811061293157fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480156129985750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156129aa576000945050505050612b2e565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a065750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015612a6c5750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612a6a5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612ad15750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015612acf5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015612b035750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612b15576000945050505050612b2e565b80925050808060010191505061291a565b506001925050505b919050565b612b3b613b50565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600b6000612be9613b50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612c96613b50565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61045781565b612d00612cfa613b50565b83613c26565b612d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061545e6031913960400191505060405180910390fd5b612d6184848484614162565b50505050565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000612d9c83611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff16612dbd613b50565b73ffffffffffffffffffffffffffffffffffffffff1614612e46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b60011515612e538361282c565b151514612ec8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f7420612076616c6964206e6577206e616d6500000000000000000000000081525060200191505060405180910390fd5b6002600860008581526020019081526020016000206040518082805460018160011615610100020316600290048015612f385780601f10612f16576101008083540402835291820191612f38565b820191906000526020600020905b815481529060010190602001808311612f24575b5050915050602060405180830381855afa158015612f5a573d6000803e3d6000fd5b5050506040513d6020811015612f6f57600080fd5b81019080805190602001909291905050506002836040518082805190602001908083835b60208310612fb65780518252602082019150602081019050602083039250612f93565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015612ff8573d6000803e3d6000fd5b5050506040513d602081101561300d57600080fd5b81019080805190602001909291905050501415613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061541a6023913960400191505060405180910390fd5b60001515613082836115cc565b1515146130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4e616d6520616c7265616479207265736572766564000000000000000000000081525060200191505060405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33683c3a38e5ab72fc00006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561319357600080fd5b505af11580156131a7573d6000803e3d6000fd5b50505050600060086000858152602001908152602001600020805460018160011615610100020316600290049050111561329257613291600860008581526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156132855780601f1061325a57610100808354040283529160200191613285565b820191906000526020600020905b81548152906001019060200180831161326857829003601f168201915b505050505060006141d4565b5b61329d8260016141d4565b816008600085815260200190815260200160002090805190602001906132c49291906150d0565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040518080602001828103825283818151815260200191508051906020019080838360005b8381101561332857808201518184015260208101905061330d565b50505050905090810190601f1680156133555780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050565b6060613371611825565b61339961045761338c6003548661402190919063ffffffff16565b8161339357fe5b06614261565b6040516020018083805190602001908083835b602083106133cf57805182526020820191506020810190506020830392506133ac565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061342057805182526020820191506020810190506020830392506133fd565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600501925050506040516020818303038152906040529050919050565b60035481565b60025481565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61352c613b50565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146135ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151f26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61373761515e565b6360634d9f4210156137b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b6104576137bc611654565b1061382f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b6000613839611654565b9050610448811061386a576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61043481106138995760405180604001604052806709403d2b0f46800081526020016000815250915050613b30565b61040281106138c8576040518060400160405280674563918244f4000081526020016001815250915050613b30565b6103d081106138f75760405180604001604052806707b5884e8cbac00081526020016000815250915050613b30565b61039e8110613926576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61033a811061395557604051806040016040528067062ad3720a2f000081526020016000815250915050613b30565b6103088110613984576040518060400160405280674563918244f4000081526020016001815250915050613b30565b61027281106139b35760405180604001604052806704a01e9587a3400081526020016000815250915050613b30565b61022781106139e2576040518060400160405280674563918244f4000081526020016001815250915050613b30565b6101468110613a1157604051806040016040528067031569b90517800081526020016000815250915050613b30565b60fb8110613a3f576040518060400160405280674563918244f4000081526020016001815250915050613b30565b60018110613a6d57604051806040016040528067018ab4dc828bc00081526020016000815250915050613b30565b613a75611efb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614613b15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f67697665617761793a206e6f74206f776e65720000000000000000000000000081525060200191505060405180910390fd5b60405180604001604052806000815260200160008152509150505b90565b6000613b498260056143a890919063ffffffff16565b9050919050565b600033905090565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613bcb83611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613c1f826000016143c2565b9050919050565b6000613c3182613b33565b613c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615262602c913960400191505060405180910390fd5b6000613c9183611a4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613d0057508373ffffffffffffffffffffffffffffffffffffffff16613ce8846113ed565b73ffffffffffffffffffffffffffffffffffffffff16145b80613d115750613d108185613490565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613d3a82611a4a565b73ffffffffffffffffffffffffffffffffffffffff1614613da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806153f16029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152186024913960400191505060405180910390fd5b613e378383836143d3565b613e42600082613b58565b613e9381600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143d890919063ffffffff16565b50613ee581600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143f290919063ffffffff16565b50613efc8183600561440c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613f6c8360000183614441565b60001c905092915050565b600080600080613f8a86600001866144c4565b915091508160001c8160001c9350935050509250929050565b6000613fb6846000018460001b8461455d565b60001c90509392505050565b6000613fd082600001614653565b9050919050565b600061401983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614664565b905092915050565b60008082840190508381101561409f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808314156140bc5760009050614129565b60008284029050828482816140cd57fe5b0414614124576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806153a46021913960400191505060405180910390fd5b809150505b92915050565b61045761413a611654565b1061414457600080fd5b61415e828260405180602001604052806000815250614724565b5050565b61416d848484613d1a565b614179848484846147aa565b6141ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806151c06032913960400191505060405180910390fd5b50505050565b8060096141e084612605565b6040518082805190602001908083835b6020831061421357805182526020820191506020810190506020830392506141f0565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b606060008214156142a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506143a3565b600082905060005b600082146142d3578080600101915050600a82816142cb57fe5b0491506142b1565b60008167ffffffffffffffff811180156142ec57600080fd5b506040519080825280601f01601f19166020018201604052801561431f5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461439b57600a848161434057fe5b0660300160f81b8282806001900393508151811061435a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161439357fe5b04935061432e565b819450505050505b919050565b60006143ba836000018360001b6149c3565b905092915050565b600081600001805490509050919050565b505050565b60006143ea836000018360001b6149e6565b905092915050565b6000614404836000018360001b614ace565b905092915050565b6000614438846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614b3e565b90509392505050565b6000818360000180549050116144a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061519e6022913960400191505060405180910390fd5b8260000182815481106144b157fe5b9060005260206000200154905092915050565b60008082846000018054905011614526576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153826022913960400191505060405180910390fd5b600084600001848154811061453757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614624576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145e95780820151818401526020810190506145ce565b50505050905090810190601f1680156146165780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061463757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000838311158290614711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156146d65780820151818401526020810190506146bb565b50505050905090810190601f1680156147035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b61472e8383614c1a565b610458614739611654565b1061474357600080fd5b61475060008484846147aa565b6147a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806151c06032913960400191505060405180910390fd5b505050565b60006147cb8473ffffffffffffffffffffffffffffffffffffffff16614e0e565b6147d857600190506149bb565b600061494263150b7a0260e01b6147ed613b50565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614871578082015181840152602081019050614856565b50505050905090810190601f16801561489e5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016151c0603291398773ffffffffffffffffffffffffffffffffffffffff16614e219092919063ffffffff16565b9050600081806020019051602081101561495b57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114614ac25760006001820390506000600186600001805490500390506000866000018281548110614a3157fe5b9060005260206000200154905080876000018481548110614a4e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614a8657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614ac8565b60009150505b92915050565b6000614ada8383614e39565b614b33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614b38565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614be557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614c13565b82856000016001830381548110614bf857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614cbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614cc681613b33565b15614d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b614d45600083836143d3565b614d9681600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206143f290919063ffffffff16565b50614dad8183600561440c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060614e308484600085614e5c565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614eb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061523c6026913960400191505060405180910390fd5b614ec085614e0e565b614f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614f815780518252602082019150602081019050602083039250614f5e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614fe3576040519150601f19603f3d011682016040523d82523d6000602084013e614fe8565b606091505b5091509150614ff8828286615004565b92505050949350505050565b60608315615014578290506150c9565b6000835111156150275782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561508e578082015181840152602081019050615073565b50505050905090810190601f1680156150bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282615106576000855561514d565b82601f1061511f57805160ff191683800117855561514d565b8280016001018555821561514d579182015b8281111561514c578251825591602001919060010190615131565b5b50905061515a9190615180565b5090565b6040518060400160405280600290602082028036833780820191505090505090565b5b80821115615199576000816000905550600101615181565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c596f75206d6179206e6f7420627579206d6f7265207468616e203230204e465473206174206f6e6365636436316630313363363563306535343539616138646566663061383730373966636130646533313066366432616333623961646439393132306364393739654552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4e6577206e616d652069732073616d65206173207468652063757272656e74206f6e654552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a264697066735822122024fc05301b7b18f50c37a9486e45967b2a8ec17ba43d06d4b0e373497d831f0a64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000074696e67451a48c2ac387b5855981654dc858ec30000000000000000000000002216e873ea4282ebef7a02ac5aea220be6391a7c0000000000000000000000003fa49662b0207686cfbda63a667c62ac0d31a2e40000000000000000000000000000000000000000000000000000000000000010536d6f6c456c6576656e456c6576656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043131313100000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): SmolElevenEleven
Arg [1] : symbol (string): 1111
Arg [2] : tingAddress (address): 0x74696e67451a48C2ac387B5855981654dc858Ec3
Arg [3] : smolAddress (address): 0x2216e873ea4282EbEf7A02aC5aeA220bE6391A7C
Arg [4] : treasury (address): 0x3fA49662b0207686cFBda63A667C62AC0D31A2e4
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000074696e67451a48c2ac387b5855981654dc858ec3
Arg [3] : 0000000000000000000000002216e873ea4282ebef7a02ac5aea220be6391a7c
Arg [4] : 0000000000000000000000003fa49662b0207686cfbda63a667c62ac0d31a2e4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 536d6f6c456c6576656e456c6576656e00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 3131313100000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45617:24755:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16737:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50890:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58839:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58383:390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52176:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51461:203;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46235:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59713:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51231:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69298:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69411:94;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58190:131;;;;;;;;;;;;;:::i;:::-;;60089:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45945:111;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51741:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46322:61;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50654:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51978:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50377:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43401:148;;;;;;;;;;;;;:::i;:::-;;56498:691;;;;;;;;;;;;;:::i;:::-;;42759:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54549:1886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69863:506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46065:57;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51051:96;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68368:918;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59124:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46392:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60311:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52407:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57263:835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69577:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46488:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46446:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59490:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43704:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52604:1896;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16737:142;16814:4;16838:20;:33;16859:11;16838:33;;;;;;;;;;;;;;;;;;;;;;;;;;;16831:40;;16737:142;;;:::o;50890:92::-;50936:13;50969:5;50962:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50890:92;:::o;58839:213::-;58907:7;58935:16;58943:7;58935;:16::i;:::-;58927:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59020:15;:24;59036:7;59020:24;;;;;;;;;;;;;;;;;;;;;59013:31;;58839:213;;;:::o;58383:390::-;58464:13;58480:16;58488:7;58480;:16::i;:::-;58464:32;;58521:5;58515:11;;:2;:11;;;;58507:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58601:5;58585:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;58610:37;58627:5;58634:12;:10;:12::i;:::-;58610:16;:37::i;:::-;58585:62;58577:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58744:21;58753:2;58757:7;58744:8;:21::i;:::-;58383:390;;;:::o;52176:137::-;52247:4;52271:13;52285:19;52293:10;52285:7;:19::i;:::-;52271:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52264:41;;52176:137;;;:::o;51461:203::-;51514:7;51635:21;:12;:19;:21::i;:::-;51628:28;;51461:203;:::o;46235:78::-;46302:10;46112;46278:35;46235:78;:::o;59713:305::-;59874:41;59893:12;:10;:12::i;:::-;59907:7;59874:18;:41::i;:::-;59866:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59982:28;59992:4;59998:2;60002:7;59982:9;:28::i;:::-;59713:305;;;:::o;51231:154::-;51320:7;51347:30;51371:5;51347:13;:20;51361:5;51347:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;51340:37;;51231:154;;;;:::o;69298:104::-;42981:12;:10;:12::i;:::-;42971:22;;:6;;;;;;;;;;:22;;;42963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69388:6:::1;69373:12;:21;;;;;;;;;;;;:::i;:::-;;69298:104:::0;:::o;69411:94::-;69452:13;69485:12;69478:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69411:94;:::o;58190:131::-;42981:12;:10;:12::i;:::-;42971:22;;:6;;;;;;;;;;:22;;;42963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58238:12:::1;58253:21;58238:36;;58285:10;:19;;:28;58305:7;58285:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43041:1;58190:131::o:0;60089:151::-;60193:39;60210:4;60216:2;60220:7;60193:39;;;;;;;;;;;;:16;:39::i;:::-;60089:151;;;:::o;45945:111::-;;;;;;;;;;;;;;;;;;;:::o;51741:164::-;51808:7;51829:15;51850:22;51866:5;51850:12;:15;;:22;;;;:::i;:::-;51828:44;;;51890:7;51883:14;;;51741:164;;;:::o;46322:61::-;46366:17;46322:61;:::o;50654:169::-;50718:7;50745:70;50762:7;50745:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;50738:77;;50654:169;;;:::o;51978:120::-;52040:13;52073:10;:17;52084:5;52073:17;;;;;;;;;;;52066:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51978:120;;;:::o;50377:215::-;50441:7;50486:1;50469:19;;:5;:19;;;;50461:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50555:29;:13;:20;50569:5;50555:20;;;;;;;;;;;;;;;:27;:29::i;:::-;50548:36;;50377:215;;;:::o;43401:148::-;42981:12;:10;:12::i;:::-;42971:22;;:6;;;;;;;;;;:22;;;42963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43508:1:::1;43471:40;;43492:6;::::0;::::1;;;;;;;;43471:40;;;;;;;;;;;;43539:1;43522:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;43401:148::o:0;56498:691::-;56574:1;56557:13;;:18;56549:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56650:1;56628:18;;:23;;56620:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46433:4;56740:18;;56730:29;56725:35;;:52;;;;;;56709:13;:68;;;;56952:3;56913:36;56930:18;;56913:12;:16;;:36;;;;:::i;:::-;:42;56909:139;;;46433:4;57016:1;57003:12;:14;56993:25;56988:31;;:48;;;;;;56972:13;:64;;;;56909:139;57116:1;57099:13;;:18;57095:87;;;57150:20;57168:1;57150:13;;:17;;:20;;;;:::i;:::-;57134:13;:36;;;;57095:87;56498:691::o;42759:79::-;42797:7;42824:6;;;;;;;;;;;42817:13;;42759:79;:::o;54549:1886::-;46433:4;54622:13;:11;:13::i;:::-;:30;54614:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54713:1;54698:12;:16;54690:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54778:2;54762:12;:18;;54754:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46433:4;54845:31;54863:12;54845:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:49;;54837:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54989:1;54969:13;:11;:13::i;:::-;54983:1;54969:16;;;;;;;;;;;:21;54965:1133;;;55057:9;55019:34;55040:12;55019:13;:11;:13::i;:::-;55033:1;55019:16;;;;;;;;;;;:20;;:34;;;;:::i;:::-;:47;55011:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55122:6;55117:294;55138:12;55134:1;:16;55117:294;;;55176:14;55193:13;:11;:13::i;:::-;55176:30;;46302:10;46112;46278:35;55229:15;:34;55225:120;;;55321:4;55288:19;:30;55308:9;55288:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;55225:120;55363:32;55373:10;55385:9;55363;:32::i;:::-;55117:294;55152:3;;;;;;;55117:294;;;;54965:1133;;;55498:1;55478:13;:11;:13::i;:::-;55492:1;55478:16;;;;;;;;;;;:21;55474:624;;;55530:1;55517:9;:14;55509:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55631:34;55652:12;55631:13;:11;:13::i;:::-;55645:1;55631:16;;;;;;;;;;;:20;;:34;;;;:::i;:::-;55592:12;;;;;;;;;;;55585:30;;;55616:10;55585:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:80;;55577:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55705:6;55700:387;55721:12;55717:1;:16;55700:387;;;55759:14;55776:13;:11;:13::i;:::-;55759:30;;46302:10;46112;46278:35;55812:15;:34;55808:120;;;55904:4;55871:19;:30;55891:9;55871:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;55808:120;55953:12;;;;;;;;;;;55946:33;;;55980:10;55992:9;;;;;;;;;;;56003:13;:11;:13::i;:::-;56017:1;56003:16;;;;;;;;;;;55946:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56039:32;56049:10;56061:9;56039;:32::i;:::-;55700:387;55735:3;;;;;;;55700:387;;;;55474:624;54965:1133;56289:1;56267:18;;:23;:99;;;;;46433:4;56295:13;:11;:13::i;:::-;:31;:70;;;;46302:10;46112;46278:35;56330:15;:35;;56295:70;56267:99;56263:165;;;56404:12;56383:18;:33;;;;56263:165;54549:1886;:::o;69863:506::-;69920:13;69945:17;69971:3;69945:30;;69986:19;70018:4;:11;70008:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69986:44;;70046:6;70041:289;70062:4;:11;70058:1;:15;70041:289;;;70154:2;70142:4;70147:1;70142:7;;;;;;;;;;;;;;;;70136:14;;:20;;;;70135:48;;;;;70180:2;70168:4;70173:1;70168:7;;;;;;;;;;;;;;;;70162:14;;:20;;;;70135:48;70131:188;;;70240:2;70229:4;70234:1;70229:7;;;;;;;;;;;;;;;;70223:14;;:19;70216:27;;70204:6;70211:1;70204:9;;;;;;;;;;;:39;;;;;;;;;;;70131:188;;;70296:4;70301:1;70296:7;;;;;;;;;;;;;;;;70284:6;70291:1;70284:9;;;;;;;;;;;:19;;;;;;;;;;;70131:188;70075:3;;;;;;;70041:289;;;;70354:6;70340:21;;;;69863:506;;;:::o;46065:57::-;46112:10;46065:57;:::o;51051:96::-;51099:13;51132:7;51125:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51051:96;:::o;68368:918::-;68430:4;68446:14;68469:3;68446:27;;68498:1;68487;:8;:12;68484:29;;;68508:5;68501:12;;;;;68484:29;68538:2;68527:1;:8;:13;68524:30;;;68549:5;68542:12;;;;;68524:30;68615:4;68607:12;;:1;68609;68607:4;;;;;;;;;;;;;;;;:12;;;;68604:29;;;68628:5;68621:12;;;;;68604:29;68684:4;68665:23;;:1;68678;68667;:8;:12;68665:15;;;;;;;;;;;;;;;;:23;;;;68661:41;;;68697:5;68690:12;;;;;68661:41;68733:15;68751:1;68753;68751:4;;;;;;;;;;;;;;;;68733:22;;68772:6;68768:487;68782:1;:8;68780:1;:10;68768:487;;;68811:11;68825:1;68827;68825:4;;;;;;;;;;;;;;;;68811:18;;68858:4;68850:12;;:4;:12;;;;:32;;;;;68878:4;68866:16;;:8;:16;;;;68850:32;68846:50;;;68891:5;68884:12;;;;;;;;68846:50;68979:4;68971:12;;:4;:12;;;;;:28;;;;;68995:4;68987:12;;:4;:12;;;;;68971:28;68969:31;:89;;;;;69037:4;69029:12;;:4;:12;;;;;:28;;;;;69053:4;69045:12;;:4;:12;;;;;69029:28;69027:31;68969:89;:147;;;;;69095:4;69087:12;;:4;:12;;;;;:28;;;;;69111:4;69103:12;;:4;:12;;;;;69087:28;69085:31;68969:147;:189;;;;;69153:4;69145:12;;:4;:12;;;;69143:15;68969:189;68948:263;;;69206:5;69199:12;;;;;;;;68948:263;69239:4;69228:15;;68768:487;68792:3;;;;;;;68768:487;;;;69274:4;69267:11;;;;68368:918;;;;:::o;59124:295::-;59239:12;:10;:12::i;:::-;59227:24;;:8;:24;;;;59219:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59339:8;59294:18;:32;59313:12;:10;:12::i;:::-;59294:32;;;;;;;;;;;;;;;:42;59327:8;59294:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;59392:8;59363:48;;59378:12;:10;:12::i;:::-;59363:48;;;59402:8;59363:48;;;;;;;;;;;;;;;;;;;;59124:295;;:::o;46392:45::-;46433:4;46392:45;:::o;60311:285::-;60443:41;60462:12;:10;:12::i;:::-;60476:7;60443:18;:41::i;:::-;60435:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60549:39;60563:4;60569:2;60573:7;60582:5;60549:13;:39::i;:::-;60311:285;;;;:::o;52407:133::-;52482:4;52506:19;:26;52526:5;52506:26;;;;;;;;;;;;;;;;;;;;;52499:33;;52407:133;;;:::o;57263:835::-;57341:13;57357:16;57365:7;57357;:16::i;:::-;57341:32;;57410:5;57394:21;;:12;:10;:12::i;:::-;:21;;;57386:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57495:4;57470:29;;:21;57483:7;57470:12;:21::i;:::-;:29;;;57462:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57569:34;57582:10;:19;57593:7;57582:19;;;;;;;;;;;57569:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57543:22;57556:7;57543:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:60;;57535:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57689:5;57662:32;;:23;57677:7;57662:14;:23::i;:::-;:32;;;57654:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57740:12;;;;;;;;;;;57733:25;;;57759:10;46366:17;57733:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57889:1;57859:10;:19;57870:7;57859:19;;;;;;;;;;;57853:33;;;;;;;;;;;;;;;;:37;57849:115;;;57907:45;57925:10;:19;57936:7;57925:19;;;;;;;;;;;57907:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57946:5;57907:17;:45::i;:::-;57849:115;57974:32;57992:7;58001:4;57974:17;:32::i;:::-;58039:7;58017:10;:19;58028:7;58017:19;;;;;;;;;;;:29;;;;;;;;;;;;:::i;:::-;;58073:7;58062:28;58082:7;58062:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57263:835;;;:::o;69577:214::-;69642:13;69699:10;:8;:10::i;:::-;69711:61;46433:4;69728:26;69740:13;;69728:7;:11;;:26;;;;:::i;:::-;:43;;;;;;69711:16;:61::i;:::-;69682:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69668:115;;69577:214;;;:::o;46488:28::-;;;;:::o;46446:33::-;;;;:::o;59490:156::-;59579:4;59603:18;:25;59622:5;59603:25;;;;;;;;;;;;;;;:35;59629:8;59603:35;;;;;;;;;;;;;;;;;;;;;;;;;59596:42;;59490:156;;;;:::o;43704:244::-;42981:12;:10;:12::i;:::-;42971:22;;:6;;;;;;;;;;:22;;;42963:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43813:1:::1;43793:22;;:8;:22;;;;43785:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43903:8;43874:38;;43895:6;::::0;::::1;;;;;;;;43874:38;;;;;;;;;;;;43932:8;43923:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;43704:244:::0;:::o;52604:1896::-;52648:17;;:::i;:::-;46112:10;52686:15;:39;;52678:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46433:4;52769:13;:11;:13::i;:::-;:30;52761:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52839:21;52863:13;:11;:13::i;:::-;52839:37;;52910:4;52893:13;:21;52889:1604;;52931:39;;;;;;;;52947:19;52931:39;;;;52968:1;52931:39;;;;;;;;52889:1604;53031:4;53014:13;:21;53010:1483;;53052:38;;;;;;;;53068:18;53052:38;;;;53088:1;53052:38;;;;;;;;53010:1483;53153:4;53136:13;:21;53132:1361;;53174:39;;;;;;;;53190:19;53174:39;;;;53211:1;53174:39;;;;;;;;53132:1361;53274:3;53257:13;:20;53253:1240;;53294:38;;;;;;;;53310:18;53294:38;;;;53330:1;53294:38;;;;;;;;53253:1240;53394:3;53377:13;:20;53373:1120;;53414:39;;;;;;;;53430:19;53414:39;;;;53451:1;53414:39;;;;;;;;53373:1120;53512:3;53495:13;:20;53491:1002;;53532:38;;;;;;;;53548:18;53532:38;;;;53568:1;53532:38;;;;;;;;53491:1002;53631:3;53614:13;:20;53610:883;;53651:39;;;;;;;;53667:19;53651:39;;;;53688:1;53651:39;;;;;;;;53610:883;53749:3;53732:13;:20;53728:765;;53769:38;;;;;;;;53785:18;53769:38;;;;53805:1;53769:38;;;;;;;;53728:765;53868:3;53851:13;:20;53847:646;;53888:39;;;;;;;;53904:19;53888:39;;;;53925:1;53888:39;;;;;;;;53847:646;53986:3;53969:13;:20;53965:528;;54006:38;;;;;;;;54022:18;54006:38;;;;54042:1;54006:38;;;;;;;;53965:528;54105:3;54088:13;:20;54084:409;;54125:39;;;;;;;;54141:19;54125:39;;;;54162:1;54125:39;;;;;;;;54084:409;54223:1;54206:13;:18;54202:291;;54242:38;;;;;;;;54258:18;54242:38;;;;54278:1;54242:38;;;;;;;;54202:291;54356:7;:5;:7::i;:::-;54342:21;;:10;:21;;;54334:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54402:21;;;;;;;;54418:1;54402:21;;;;54421:1;54402:21;;;;;;52604:1896;;:::o;62063:119::-;62120:4;62144:30;62166:7;62144:12;:21;;:30;;;;:::i;:::-;62137:37;;62063:119;;;:::o;5905:106::-;5958:15;5993:10;5986:17;;5905:106;:::o;67128:158::-;67221:2;67194:15;:24;67210:7;67194:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;67270:7;67266:2;67239:39;;67248:16;67256:7;67248;:16::i;:::-;67239:39;;;;;;;;;;;;67128:158;;:::o;32962:123::-;33031:7;33058:19;33066:3;:10;;33058:7;:19::i;:::-;33051:26;;32962:123;;;:::o;62349:333::-;62434:4;62459:16;62467:7;62459;:16::i;:::-;62451:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62535:13;62551:16;62559:7;62551;:16::i;:::-;62535:32;;62597:5;62586:16;;:7;:16;;;:51;;;;62630:7;62606:31;;:20;62618:7;62606:11;:20::i;:::-;:31;;;62586:51;:87;;;;62641:32;62658:5;62665:7;62641:16;:32::i;:::-;62586:87;62578:96;;;62349:333;;;;:::o;65375:574::-;65493:4;65473:24;;:16;65481:7;65473;:16::i;:::-;:24;;;65465:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65576:1;65562:16;;:2;:16;;;;65554:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65632:39;65653:4;65659:2;65663:7;65632:20;:39::i;:::-;65736:29;65753:1;65757:7;65736:8;:29::i;:::-;65778:35;65805:7;65778:13;:19;65792:4;65778:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;65824:30;65846:7;65824:13;:17;65838:2;65824:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;65867:29;65884:7;65893:2;65867:12;:16;;:29;;;;;:::i;:::-;;65933:7;65929:2;65914:27;;65923:4;65914:27;;;;;;;;;;;;65375:574;;;:::o;42123:137::-;42194:7;42229:22;42233:3;:10;;42245:5;42229:3;:22::i;:::-;42221:31;;42214:38;;42123:137;;;;:::o;33424:227::-;33504:7;33513;33534:11;33547:13;33564:22;33568:3;:10;;33580:5;33564:3;:22::i;:::-;33533:53;;;;33613:3;33605:12;;33635:5;33627:14;;33597:46;;;;;;33424:227;;;;;:::o;34086:204::-;34193:7;34236:44;34241:3;:10;;34261:3;34253:12;;34267;34236:4;:44::i;:::-;34228:53;;34213:69;;34086:204;;;;;:::o;41665:114::-;41725:7;41752:19;41760:3;:10;;41752:7;:19::i;:::-;41745:26;;41665:114;;;:::o;1366:136::-;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1444:50;;1366:136;;;;:::o;902:181::-;960:7;980:9;996:1;992;:5;980:17;;1021:1;1016;:6;;1008:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;1067:8;;;902:181;;;;:::o;2256:471::-;2314:7;2564:1;2559;:6;2555:47;;;2589:1;2582:8;;;;2555:47;2614:9;2630:1;2626;:5;2614:17;;2659:1;2654;2650;:5;;;;;;:10;2642:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2718:1;2711:8;;;2256:471;;;;;:::o;63025:152::-;63125:4;63109:13;:11;:13::i;:::-;:20;63101:29;;;;;;63141:26;63151:2;63155:7;63141:26;;;;;;;;;;;;:9;:26::i;:::-;63025:152;;:::o;61478:272::-;61592:28;61602:4;61608:2;61612:7;61592:9;:28::i;:::-;61639:48;61662:4;61668:2;61672:7;61681:5;61639:22;:48::i;:::-;61631:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61478:272;;;;:::o;68106:129::-;68218:9;68188:13;68202:12;68210:3;68202:7;:12::i;:::-;68188:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;68106:129;;:::o;6410:744::-;6466:13;6696:1;6687:5;:10;6683:53;;;6714:10;;;;;;;;;;;;;;;;;;;;;6683:53;6746:12;6761:5;6746:20;;6777:14;6802:78;6817:1;6809:4;:9;6802:78;;6835:8;;;;;;;6866:2;6858:10;;;;;;;;;6802:78;;;6890:19;6922:6;6912:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6890:39;;6940:13;6965:1;6956:6;:10;6940:26;;6984:5;6977:12;;7000:115;7015:1;7007:4;:9;7000:115;;7074:2;7067:4;:9;;;;;;7062:2;:14;7051:27;;7033:6;7040:7;;;;;;;7033:15;;;;;;;;;;;:45;;;;;;;;;;;7101:2;7093:10;;;;;;;;;7000:115;;;7139:6;7125:21;;;;;;6410:744;;;;:::o;32723:151::-;32807:4;32831:35;32841:3;:10;;32861:3;32853:12;;32831:9;:35::i;:::-;32824:42;;32723:151;;;;:::o;30345:110::-;30401:7;30428:3;:12;;:19;;;;30421:26;;30345:110;;;:::o;67899:93::-;;;;:::o;41210:137::-;41280:4;41304:35;41312:3;:10;;41332:5;41324:14;;41304:7;:35::i;:::-;41297:42;;41210:137;;;;:::o;40903:131::-;40970:4;40994:32;40999:3;:10;;41019:5;41011:14;;40994:4;:32::i;:::-;40987:39;;40903:131;;;;:::o;32155:176::-;32244:4;32268:55;32273:3;:10;;32293:3;32285:12;;32315:5;32307:14;;32299:23;;32268:4;:55::i;:::-;32261:62;;32155:176;;;;;:::o;38787:204::-;38854:7;38903:5;38882:3;:11;;:18;;;;:26;38874:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38965:3;:11;;38977:5;38965:18;;;;;;;;;;;;;;;;38958:25;;38787:204;;;;:::o;30810:279::-;30877:7;30886;30936:5;30914:3;:12;;:19;;;;:27;30906:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30993:22;31018:3;:12;;31031:5;31018:19;;;;;;;;;;;;;;;;;;30993:44;;31056:5;:10;;;31068:5;:12;;;31048:33;;;;;30810:279;;;;;:::o;31512:319::-;31606:7;31626:16;31645:3;:12;;:17;31658:3;31645:17;;;;;;;;;;;;31626:36;;31693:1;31681:8;:13;;31696:12;31673:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31763:3;:12;;31787:1;31776:8;:12;31763:26;;;;;;;;;;;;;;;;;;:33;;;31756:40;;;31512:319;;;;;:::o;38334:109::-;38390:7;38417:3;:11;;:18;;;;38410:25;;38334:109;;;:::o;1805:192::-;1891:7;1924:1;1919;:6;;1927:12;1911:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951:9;1967:1;1963;:5;1951:17;;1988:1;1981:8;;;1805:192;;;;;:::o;63404:290::-;63500:18;63506:2;63510:7;63500:5;:18::i;:::-;63553:4;63537:13;:11;:13::i;:::-;:20;63529:29;;;;;;63577:54;63608:1;63612:2;63616:7;63625:5;63577:22;:54::i;:::-;63569:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63404:290;;;:::o;66516:604::-;66637:4;66664:15;:2;:13;;;:15::i;:::-;66659:60;;66703:4;66696:11;;;;66659:60;66729:23;66755:252;66808:45;;;66868:12;:10;:12::i;:::-;66895:4;66914:7;66936:5;66771:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66755:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;66729:278;;67018:13;67045:10;67034:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67018:48;;46742:10;67095:16;;67085:26;;;:6;:26;;;;67077:35;;;;66516:604;;;;;;;:::o;30125:125::-;30196:4;30241:1;30220:3;:12;;:17;30233:3;30220:17;;;;;;;;;;;;:22;;30213:29;;30125:125;;;;:::o;36489:1544::-;36555:4;36673:18;36694:3;:12;;:19;36707:5;36694:19;;;;;;;;;;;;36673:40;;36744:1;36730:10;:15;36726:1300;;37092:21;37129:1;37116:10;:14;37092:38;;37145:17;37186:1;37165:3;:11;;:18;;;;:22;37145:42;;37432:17;37452:3;:11;;37464:9;37452:22;;;;;;;;;;;;;;;;37432:42;;37598:9;37569:3;:11;;37581:13;37569:26;;;;;;;;;;;;;;;:38;;;;37717:1;37701:13;:17;37675:3;:12;;:23;37688:9;37675:23;;;;;;;;;;;:43;;;;37827:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;37922:3;:12;;:19;37935:5;37922:19;;;;;;;;;;;37915:26;;;37965:4;37958:11;;;;;;;;36726:1300;38009:5;38002:12;;;36489:1544;;;;;:::o;35899:414::-;35962:4;35984:21;35994:3;35999:5;35984:9;:21::i;:::-;35979:327;;36022:3;:11;;36039:5;36022:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36205:3;:11;;:18;;;;36183:3;:12;;:19;36196:5;36183:19;;;;;;;;;;;:40;;;;36245:4;36238:11;;;;35979:327;36289:5;36282:12;;35899:414;;;;;:::o;27625:692::-;27701:4;27817:16;27836:3;:12;;:17;27849:3;27836:17;;;;;;;;;;;;27817:36;;27882:1;27870:8;:13;27866:444;;;27937:3;:12;;27955:38;;;;;;;;27972:3;27955:38;;;;27985:5;27955:38;;;27937:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28152:3;:12;;:19;;;;28132:3;:12;;:17;28145:3;28132:17;;;;;;;;;;;:39;;;;28193:4;28186:11;;;;;27866:444;28266:5;28230:3;:12;;28254:1;28243:8;:12;28230:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;28293:5;28286:12;;;27625:692;;;;;;:::o;64030:404::-;64124:1;64110:16;;:2;:16;;;;64102:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64183:16;64191:7;64183;:16::i;:::-;64182:17;64174:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64245:45;64274:1;64278:2;64282:7;64245:20;:45::i;:::-;64303:30;64325:7;64303:13;:17;64317:2;64303:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;64346:29;64363:7;64372:2;64346:12;:16;;:29;;;;;:::i;:::-;;64418:7;64414:2;64393:33;;64410:1;64393:33;;;;;;;;;;;;64030:404;;:::o;7844:422::-;7904:4;8112:12;8223:7;8211:20;8203:28;;8257:1;8250:4;:8;8243:15;;;7844:422;;;:::o;10762:195::-;10865:12;10897:52;10919:6;10927:4;10933:1;10936:12;10897:21;:52::i;:::-;10890:59;;10762:195;;;;;:::o;38119:129::-;38192:4;38239:1;38216:3;:12;;:19;38229:5;38216:19;;;;;;;;;;;;:24;;38209:31;;38119:129;;;;:::o;11814:530::-;11941:12;11999:5;11974:21;:30;;11966:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12066:18;12077:6;12066:10;:18::i;:::-;12058:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12192:12;12206:23;12233:6;:11;;12253:5;12261:4;12233:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12191:75;;;;12284:52;12302:7;12311:10;12323:12;12284:17;:52::i;:::-;12277:59;;;;11814:530;;;;;;:::o;14354:742::-;14469:12;14498:7;14494:595;;;14529:10;14522:17;;;;14494:595;14663:1;14643:10;:17;:21;14639:439;;;14906:10;14900:17;14967:15;14954:10;14950:2;14946:19;14939:44;14854:148;15049:12;15042:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14354:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://24fc05301b7b18f50c37a9486e45967b2a8ec17ba43d06d4b0e373497d831f0a
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.